@mittwald/api-client 4.327.0 → 4.329.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.
@@ -310,6 +310,12 @@ export const backupGetProjectBackupDirectories = {
310
310
  method: "GET",
311
311
  operationId: "backup-get-project-backup-directories",
312
312
  };
313
+ /** Update a Backup's expiration time. */
314
+ export const backupReplaceProjectBackupExpirationTime = {
315
+ path: "/v2/project-backups/{projectBackupId}/expiration-time",
316
+ method: "PUT",
317
+ operationId: "backup-replace-project-backup-expiration-time",
318
+ };
313
319
  /** Restore a ProjectBackup. */
314
320
  export const backupRequestProjectBackupRestoreV2Experimental = {
315
321
  path: "/v2/project-backups/{projectBackupId}/restore",
@@ -400,6 +406,12 @@ export const containerGetService = {
400
406
  method: "GET",
401
407
  operationId: "container-get-service",
402
408
  };
409
+ /** List Stacks belonging to the executing user. */
410
+ export const containerListSelfStacks = {
411
+ path: "/v2/stacks",
412
+ method: "GET",
413
+ operationId: "container-list-self-stacks",
414
+ };
403
415
  /** List Services belonging to a Project. */
404
416
  export const containerListServices = {
405
417
  path: "/v2/projects/{projectId}/services",
@@ -442,6 +454,12 @@ export const containerRestartService = {
442
454
  method: "POST",
443
455
  operationId: "container-restart-service",
444
456
  };
457
+ /** Set an update schedule for a Stack. */
458
+ export const containerSetStackUpdateSchedule = {
459
+ path: "/v2/stacks/{stackId}/update-schedule",
460
+ method: "PUT",
461
+ operationId: "container-set-stack-update-schedule",
462
+ };
445
463
  /** Start a stopped Service. */
446
464
  export const containerStartService = {
447
465
  path: "/v2/stacks/{stackId}/services/{serviceId}/actions/start",
@@ -814,24 +832,6 @@ export const cronjobReplaceCronjobAppInstallationId = {
814
832
  method: "PUT",
815
833
  operationId: "cronjob-replace-cronjob-app-installation-id",
816
834
  };
817
- /** Accept a CustomerInvite. */
818
- export const customerAcceptCustomerInvite = {
819
- path: "/v2/customer-invites/{customerInviteId}/actions/accept",
820
- method: "POST",
821
- operationId: "customer-accept-customer-invite",
822
- };
823
- /** List Invites belonging to a Customer. */
824
- export const customerListInvitesForCustomer = {
825
- path: "/v2/customers/{customerId}/invites",
826
- method: "GET",
827
- operationId: "customer-list-invites-for-customer",
828
- };
829
- /** Create a CustomerInvite. */
830
- export const customerCreateCustomerInvite = {
831
- path: "/v2/customers/{customerId}/invites",
832
- method: "POST",
833
- operationId: "customer-create-customer-invite",
834
- };
835
835
  /** Get all customer profiles the authenticated user has access to. */
836
836
  export const customerListCustomers = {
837
837
  path: "/v2/customers",
@@ -862,42 +862,6 @@ export const customerCreateWallet = {
862
862
  method: "POST",
863
863
  operationId: "customer-create-wallet",
864
864
  };
865
- /** Decline a CustomerInvite. */
866
- export const customerDeclineCustomerInvite = {
867
- path: "/v2/customer-invites/{customerInviteId}/actions/decline",
868
- method: "POST",
869
- operationId: "customer-decline-customer-invite",
870
- };
871
- /** Get a CustomerInvite. */
872
- export const customerGetCustomerInvite = {
873
- path: "/v2/customer-invites/{customerInviteId}",
874
- method: "GET",
875
- operationId: "customer-get-customer-invite",
876
- };
877
- /** Delete a CustomerInvite. */
878
- export const customerDeleteCustomerInvite = {
879
- path: "/v2/customer-invites/{customerInviteId}",
880
- method: "DELETE",
881
- operationId: "customer-delete-customer-invite",
882
- };
883
- /** Get a CustomerMembership. */
884
- export const customerGetCustomerMembership = {
885
- path: "/v2/customer-memberships/{customerMembershipId}",
886
- method: "GET",
887
- operationId: "customer-get-customer-membership",
888
- };
889
- /** Delete a CustomerMembership. */
890
- export const customerDeleteCustomerMembership = {
891
- path: "/v2/customer-memberships/{customerMembershipId}",
892
- method: "DELETE",
893
- operationId: "customer-delete-customer-membership",
894
- };
895
- /** Update a CustomerMembership. */
896
- export const customerUpdateCustomerMembership = {
897
- path: "/v2/customer-memberships/{customerMembershipId}",
898
- method: "PATCH",
899
- operationId: "customer-update-customer-membership",
900
- };
901
865
  /** Get a customer profile. */
902
866
  export const customerGetCustomer = {
903
867
  path: "/v2/customers/{customerId}",
@@ -916,36 +880,12 @@ export const customerDeleteCustomer = {
916
880
  method: "DELETE",
917
881
  operationId: "customer-delete-customer",
918
882
  };
919
- /** Get a CustomerInvite by token. */
920
- export const customerGetCustomerTokenInvite = {
921
- path: "/v2/customer-token-invite",
922
- method: "GET",
923
- operationId: "customer-get-customer-token-invite",
924
- };
925
883
  /** Check if the customer profile has a valid contract partner configured. */
926
884
  export const customerIsCustomerLegallyCompetent = {
927
885
  path: "/v2/customers/{customerId}/legally-competent",
928
886
  method: "GET",
929
887
  operationId: "customer-is-customer-legally-competent",
930
888
  };
931
- /** List CustomerInvites belonging to the executing user. */
932
- export const customerListCustomerInvites = {
933
- path: "/v2/customer-invites",
934
- method: "GET",
935
- operationId: "customer-list-customer-invites",
936
- };
937
- /** List CustomerMemberships belonging to the executing user. */
938
- export const customerListCustomerMemberships = {
939
- path: "/v2/customer-memberships",
940
- method: "GET",
941
- operationId: "customer-list-customer-memberships",
942
- };
943
- /** List Memberships belonging to a Customer. */
944
- export const customerListMembershipsForCustomer = {
945
- path: "/v2/customers/{customerId}/memberships",
946
- method: "GET",
947
- operationId: "customer-list-memberships-for-customer",
948
- };
949
889
  /** Request a new avatar upload for the customer profile. */
950
890
  export const customerRequestAvatarUpload = {
951
891
  path: "/v2/customers/{customerId}/avatar",
@@ -958,12 +898,6 @@ export const customerRemoveAvatar = {
958
898
  method: "DELETE",
959
899
  operationId: "customer-remove-avatar",
960
900
  };
961
- /** Resend the mail for a CustomerInvite. */
962
- export const customerResendCustomerInviteMail = {
963
- path: "/v2/customer-invites/{customerInviteId}/actions/resend",
964
- method: "POST",
965
- operationId: "customer-resend-customer-invite-mail",
966
- };
967
901
  /** Copy a MySQLDatabase with a MySQLUser. */
968
902
  export const databaseCopyMysqlDatabase = {
969
903
  path: "/v2/mysql-databases/{mysqlDatabaseId}/actions/copy",
@@ -1786,6 +1720,30 @@ export const leadfyndrRemoveUnlockedLeadReservation = {
1786
1720
  method: "DELETE",
1787
1721
  operationId: "leadfyndr-remove-unlocked-lead-reservation",
1788
1722
  };
1723
+ /** Get a license. */
1724
+ export const licenseGetLicense = {
1725
+ path: "/v2/licenses/{licenseId}",
1726
+ method: "GET",
1727
+ operationId: "license-get-license",
1728
+ };
1729
+ /** List Licenses belonging to a Project. */
1730
+ export const licenseListLicensesForProject = {
1731
+ path: "/v2/projects/{projectId}/licenses",
1732
+ method: "GET",
1733
+ operationId: "license-list-licenses-for-project",
1734
+ };
1735
+ /** rotate a License's key, i.e. revoke the old and generate a new one. */
1736
+ export const licenseRotateLicenseKey = {
1737
+ path: "/v2/licenses/{licenseId}/actions/rotate-key",
1738
+ method: "POST",
1739
+ operationId: "license-rotate-license-key",
1740
+ };
1741
+ /** Validate a License's key for a project. */
1742
+ export const licenseValidateLicenseKeyForProject = {
1743
+ path: "/v2/projects/{projectId}/actions/validate-license-key",
1744
+ method: "POST",
1745
+ operationId: "license-validate-license-key-for-project",
1746
+ };
1789
1747
  /** List DeliveryBoxes belonging to a Project. */
1790
1748
  export const mailListDeliveryBoxes = {
1791
1749
  path: "/v2/projects/{projectId}/delivery-boxes",
@@ -2020,36 +1978,12 @@ export const passwordValidationGetPasswordPolicy = {
2020
1978
  method: "GET",
2021
1979
  operationId: "password-validation-get-password-policy",
2022
1980
  };
2023
- /** Accept a ProjectInvite. */
2024
- export const projectAcceptProjectInvite = {
2025
- path: "/v2/project-invites/{projectInviteId}/actions/accept",
2026
- method: "POST",
2027
- operationId: "project-accept-project-invite",
2028
- };
2029
- /** List Invites belonging to a Project. */
2030
- export const projectListInvitesForProject = {
2031
- path: "/v2/projects/{projectId}/invites",
2032
- method: "GET",
2033
- operationId: "project-list-invites-for-project",
2034
- };
2035
- /** Create a ProjectInvite. */
2036
- export const projectCreateProjectInvite = {
2037
- path: "/v2/projects/{projectId}/invites",
2038
- method: "POST",
2039
- operationId: "project-create-project-invite",
2040
- };
2041
1981
  /** Create a Project belonging to a Server. */
2042
1982
  export const projectCreateProject = {
2043
1983
  path: "/v2/servers/{serverId}/projects",
2044
1984
  method: "POST",
2045
1985
  operationId: "project-create-project",
2046
1986
  };
2047
- /** Decline a ProjectInvite. */
2048
- export const projectDeclineProjectInvite = {
2049
- path: "/v2/project-invites/{projectInviteId}/actions/decline",
2050
- method: "POST",
2051
- operationId: "project-decline-project-invite",
2052
- };
2053
1987
  /** Request a Project avatar upload. */
2054
1988
  export const projectRequestProjectAvatarUpload = {
2055
1989
  path: "/v2/projects/{projectId}/avatar",
@@ -2062,36 +1996,6 @@ export const projectDeleteProjectAvatar = {
2062
1996
  method: "DELETE",
2063
1997
  operationId: "project-delete-project-avatar",
2064
1998
  };
2065
- /** Get a ProjectInvite. */
2066
- export const projectGetProjectInvite = {
2067
- path: "/v2/project-invites/{projectInviteId}",
2068
- method: "GET",
2069
- operationId: "project-get-project-invite",
2070
- };
2071
- /** Delete a ProjectInvite. */
2072
- export const projectDeleteProjectInvite = {
2073
- path: "/v2/project-invites/{projectInviteId}",
2074
- method: "DELETE",
2075
- operationId: "project-delete-project-invite",
2076
- };
2077
- /** Get a ProjectMembership */
2078
- export const projectGetProjectMembership = {
2079
- path: "/v2/project-memberships/{projectMembershipId}",
2080
- method: "GET",
2081
- operationId: "project-get-project-membership",
2082
- };
2083
- /** Delete a ProjectMembership. */
2084
- export const projectDeleteProjectMembership = {
2085
- path: "/v2/project-memberships/{projectMembershipId}",
2086
- method: "DELETE",
2087
- operationId: "project-delete-project-membership",
2088
- };
2089
- /** Update a ProjectMembership. */
2090
- export const projectUpdateProjectMembership = {
2091
- path: "/v2/project-memberships/{projectMembershipId}",
2092
- method: "PATCH",
2093
- operationId: "project-update-project-membership",
2094
- };
2095
1999
  /** Get a Project. */
2096
2000
  export const projectGetProject = {
2097
2001
  path: "/v2/projects/{projectId}",
@@ -2146,42 +2050,12 @@ export const projectFileSystemListFiles = {
2146
2050
  method: "GET",
2147
2051
  operationId: "project-file-system-list-files",
2148
2052
  };
2149
- /** Get a ProjectInvite by token. */
2150
- export const projectGetProjectTokenInvite = {
2151
- path: "/v2/project-token-invite",
2152
- method: "GET",
2153
- operationId: "project-get-project-token-invite",
2154
- };
2155
- /** Get the executing user's membership in a Project. */
2156
- export const projectGetSelfMembershipForProject = {
2157
- path: "/v2/projects/{projectId}/memberships/self",
2158
- method: "GET",
2159
- operationId: "project-get-self-membership-for-project",
2160
- };
2161
2053
  /** Get a Server. */
2162
2054
  export const projectGetServer = {
2163
2055
  path: "/v2/servers/{serverId}",
2164
2056
  method: "GET",
2165
2057
  operationId: "project-get-server",
2166
2058
  };
2167
- /** List Memberships belonging to a Project. */
2168
- export const projectListMembershipsForProject = {
2169
- path: "/v2/projects/{projectId}/memberships",
2170
- method: "GET",
2171
- operationId: "project-list-memberships-for-project",
2172
- };
2173
- /** List ProjectInvites belonging to the executing user. */
2174
- export const projectListProjectInvites = {
2175
- path: "/v2/project-invites",
2176
- method: "GET",
2177
- operationId: "project-list-project-invites",
2178
- };
2179
- /** List ProjectMemberships belonging to the executing user. */
2180
- export const projectListProjectMemberships = {
2181
- path: "/v2/project-memberships",
2182
- method: "GET",
2183
- operationId: "project-list-project-memberships",
2184
- };
2185
2059
  /** List Projects belonging to the executing user. */
2186
2060
  export const projectListProjects = {
2187
2061
  path: "/v2/projects",
@@ -2194,12 +2068,6 @@ export const projectListServers = {
2194
2068
  method: "GET",
2195
2069
  operationId: "project-list-servers",
2196
2070
  };
2197
- /** Resend the mail for a ProjectInvite. */
2198
- export const projectResendProjectInviteMail = {
2199
- path: "/v2/project-invites/{projectInviteId}/actions/resend",
2200
- method: "POST",
2201
- operationId: "project-resend-project-invite-mail",
2202
- };
2203
2071
  /** Update a Project's description. */
2204
2072
  export const projectUpdateProjectDescription = {
2205
2073
  path: "/v2/projects/{projectId}/description",
@@ -2698,45 +2566,177 @@ export const verificationVerifyCompany = {
2698
2566
  method: "POST",
2699
2567
  operationId: "verification-verify-company",
2700
2568
  };
2701
- /** Get a license. */
2702
- export const licenseGetLicense = {
2703
- path: "/v2/licenses/{licenseId}",
2569
+ /** Get a CustomerInvite. */
2570
+ export const customerGetCustomerInvite = {
2571
+ path: "/v2/customer-invites/{customerInviteId}",
2704
2572
  method: "GET",
2705
- operationId: "license-get-license",
2573
+ operationId: "customer-get-customer-invite",
2706
2574
  };
2707
- /** List Licenses belonging to a Project. */
2708
- export const licenseListLicensesForProject = {
2709
- path: "/v2/projects/{projectId}/licenses",
2575
+ /** Delete a CustomerInvite. */
2576
+ export const customerDeleteCustomerInvite = {
2577
+ path: "/v2/customer-invites/{customerInviteId}",
2578
+ method: "DELETE",
2579
+ operationId: "customer-delete-customer-invite",
2580
+ };
2581
+ /** Get a CustomerMembership. */
2582
+ export const customerGetCustomerMembership = {
2583
+ path: "/v2/customer-memberships/{customerMembershipId}",
2710
2584
  method: "GET",
2711
- operationId: "license-list-licenses-for-project",
2585
+ operationId: "customer-get-customer-membership",
2712
2586
  };
2713
- /** rotate a License's key, i.e. revoke the old and generate a new one. */
2714
- export const licenseRotateLicenseKey = {
2715
- path: "/v2/licenses/{licenseId}/actions/rotate-key",
2587
+ /** Delete a CustomerMembership. */
2588
+ export const customerDeleteCustomerMembership = {
2589
+ path: "/v2/customer-memberships/{customerMembershipId}",
2590
+ method: "DELETE",
2591
+ operationId: "customer-delete-customer-membership",
2592
+ };
2593
+ /** Update a CustomerMembership. */
2594
+ export const customerUpdateCustomerMembership = {
2595
+ path: "/v2/customer-memberships/{customerMembershipId}",
2596
+ method: "PATCH",
2597
+ operationId: "customer-update-customer-membership",
2598
+ };
2599
+ /** Resend the mail for a ProjectInvite. */
2600
+ export const projectResendProjectInviteMail = {
2601
+ path: "/v2/project-invites/{projectInviteId}/actions/resend",
2716
2602
  method: "POST",
2717
- operationId: "license-rotate-license-key",
2603
+ operationId: "project-resend-project-invite-mail",
2718
2604
  };
2719
- /** Validate a License's key for a project. */
2720
- export const licenseValidateLicenseKeyForProject = {
2721
- path: "/v2/projects/{projectId}/actions/validate-license-key",
2605
+ /** Get a ProjectInvite. */
2606
+ export const projectGetProjectInvite = {
2607
+ path: "/v2/project-invites/{projectInviteId}",
2608
+ method: "GET",
2609
+ operationId: "project-get-project-invite",
2610
+ };
2611
+ /** Delete a ProjectInvite. */
2612
+ export const projectDeleteProjectInvite = {
2613
+ path: "/v2/project-invites/{projectInviteId}",
2614
+ method: "DELETE",
2615
+ operationId: "project-delete-project-invite",
2616
+ };
2617
+ /** List Invites belonging to a Customer. */
2618
+ export const customerListInvitesForCustomer = {
2619
+ path: "/v2/customers/{customerId}/invites",
2620
+ method: "GET",
2621
+ operationId: "customer-list-invites-for-customer",
2622
+ };
2623
+ /** Create a CustomerInvite. */
2624
+ export const customerCreateCustomerInvite = {
2625
+ path: "/v2/customers/{customerId}/invites",
2722
2626
  method: "POST",
2723
- operationId: "license-validate-license-key-for-project",
2627
+ operationId: "customer-create-customer-invite",
2724
2628
  };
2725
- /** Set an update schedule for a Stack. */
2726
- export const containerSetStackUpdateSchedule = {
2727
- path: "/v2/stacks/{stackId}/update-schedule",
2728
- method: "PUT",
2729
- operationId: "container-set-stack-update-schedule",
2629
+ /** Accept a CustomerInvite. */
2630
+ export const customerAcceptCustomerInvite = {
2631
+ path: "/v2/customer-invites/{customerInviteId}/actions/accept",
2632
+ method: "POST",
2633
+ operationId: "customer-accept-customer-invite",
2730
2634
  };
2731
- /** List Stacks belonging to the executing user. */
2732
- export const containerListSelfStacks = {
2733
- path: "/v2/stacks",
2635
+ /** Get a CustomerInvite by token. */
2636
+ export const customerGetCustomerTokenInvite = {
2637
+ path: "/v2/customer-token-invite",
2734
2638
  method: "GET",
2735
- operationId: "container-list-self-stacks",
2639
+ operationId: "customer-get-customer-token-invite",
2736
2640
  };
2737
- /** Update a Backup's expiration time. */
2738
- export const backupReplaceProjectBackupExpirationTime = {
2739
- path: "/v2/project-backups/{projectBackupId}/expiration-time",
2740
- method: "PUT",
2741
- operationId: "backup-replace-project-backup-expiration-time",
2641
+ /** Decline a CustomerInvite. */
2642
+ export const customerDeclineCustomerInvite = {
2643
+ path: "/v2/customer-invites/{customerInviteId}/actions/decline",
2644
+ method: "POST",
2645
+ operationId: "customer-decline-customer-invite",
2646
+ };
2647
+ /** Decline a ProjectInvite. */
2648
+ export const projectDeclineProjectInvite = {
2649
+ path: "/v2/project-invites/{projectInviteId}/actions/decline",
2650
+ method: "POST",
2651
+ operationId: "project-decline-project-invite",
2652
+ };
2653
+ /** List CustomerMemberships belonging to the executing user. */
2654
+ export const customerListCustomerMemberships = {
2655
+ path: "/v2/customer-memberships",
2656
+ method: "GET",
2657
+ operationId: "customer-list-customer-memberships",
2658
+ };
2659
+ /** Get the executing user's membership in a Project. */
2660
+ export const projectGetSelfMembershipForProject = {
2661
+ path: "/v2/projects/{projectId}/memberships/self",
2662
+ method: "GET",
2663
+ operationId: "project-get-self-membership-for-project",
2664
+ };
2665
+ /** Accept a ProjectInvite. */
2666
+ export const projectAcceptProjectInvite = {
2667
+ path: "/v2/project-invites/{projectInviteId}/actions/accept",
2668
+ method: "POST",
2669
+ operationId: "project-accept-project-invite",
2670
+ };
2671
+ /** Get a ProjectMembership */
2672
+ export const projectGetProjectMembership = {
2673
+ path: "/v2/project-memberships/{projectMembershipId}",
2674
+ method: "GET",
2675
+ operationId: "project-get-project-membership",
2676
+ };
2677
+ /** Delete a ProjectMembership. */
2678
+ export const projectDeleteProjectMembership = {
2679
+ path: "/v2/project-memberships/{projectMembershipId}",
2680
+ method: "DELETE",
2681
+ operationId: "project-delete-project-membership",
2682
+ };
2683
+ /** Update a ProjectMembership. */
2684
+ export const projectUpdateProjectMembership = {
2685
+ path: "/v2/project-memberships/{projectMembershipId}",
2686
+ method: "PATCH",
2687
+ operationId: "project-update-project-membership",
2688
+ };
2689
+ /** List Memberships belonging to a Customer. */
2690
+ export const customerListMembershipsForCustomer = {
2691
+ path: "/v2/customers/{customerId}/memberships",
2692
+ method: "GET",
2693
+ operationId: "customer-list-memberships-for-customer",
2694
+ };
2695
+ /** List CustomerInvites belonging to the executing user. */
2696
+ export const customerListCustomerInvites = {
2697
+ path: "/v2/customer-invites",
2698
+ method: "GET",
2699
+ operationId: "customer-list-customer-invites",
2700
+ };
2701
+ /** List Invites belonging to a Project. */
2702
+ export const projectListInvitesForProject = {
2703
+ path: "/v2/projects/{projectId}/invites",
2704
+ method: "GET",
2705
+ operationId: "project-list-invites-for-project",
2706
+ };
2707
+ /** Create a ProjectInvite. */
2708
+ export const projectCreateProjectInvite = {
2709
+ path: "/v2/projects/{projectId}/invites",
2710
+ method: "POST",
2711
+ operationId: "project-create-project-invite",
2712
+ };
2713
+ /** Get a ProjectInvite by token. */
2714
+ export const projectGetProjectTokenInvite = {
2715
+ path: "/v2/project-token-invite",
2716
+ method: "GET",
2717
+ operationId: "project-get-project-token-invite",
2718
+ };
2719
+ /** List ProjectMemberships belonging to the executing user. */
2720
+ export const projectListProjectMemberships = {
2721
+ path: "/v2/project-memberships",
2722
+ method: "GET",
2723
+ operationId: "project-list-project-memberships",
2724
+ };
2725
+ /** List ProjectInvites belonging to the executing user. */
2726
+ export const projectListProjectInvites = {
2727
+ path: "/v2/project-invites",
2728
+ method: "GET",
2729
+ operationId: "project-list-project-invites",
2730
+ };
2731
+ /** List Memberships belonging to a Project. */
2732
+ export const projectListMembershipsForProject = {
2733
+ path: "/v2/projects/{projectId}/memberships",
2734
+ method: "GET",
2735
+ operationId: "project-list-memberships-for-project",
2736
+ };
2737
+ /** Resend the mail for a CustomerInvite. */
2738
+ export const customerResendCustomerInviteMail = {
2739
+ path: "/v2/customer-invites/{customerInviteId}/actions/resend",
2740
+ method: "POST",
2741
+ operationId: "customer-resend-customer-invite-mail",
2742
2742
  };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.326.0';
1
+ export const MittwaldAPIClientVersion = '4.328.0';