@mittwald/api-client 4.333.0 → 4.335.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 +30 -24
- package/dist/esm/generated/v2/client.js +62 -54
- package/dist/esm/generated/v2/descriptors.js +198 -174
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +231 -200
- package/dist/types/generated/v2/client.d.ts +1853 -1626
- package/dist/types/generated/v2/descriptors.d.ts +68 -60
- package/dist/types/generated/v2/types.d.ts +5371 -5060
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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",
|
|
@@ -832,6 +838,24 @@ export const cronjobReplaceCronjobAppInstallationId = {
|
|
|
832
838
|
method: "PUT",
|
|
833
839
|
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
834
840
|
};
|
|
841
|
+
/** Accept a CustomerInvite. */
|
|
842
|
+
export const customerAcceptCustomerInvite = {
|
|
843
|
+
path: "/v2/customer-invites/{customerInviteId}/actions/accept",
|
|
844
|
+
method: "POST",
|
|
845
|
+
operationId: "customer-accept-customer-invite",
|
|
846
|
+
};
|
|
847
|
+
/** List Invites belonging to a Customer. */
|
|
848
|
+
export const customerListInvitesForCustomer = {
|
|
849
|
+
path: "/v2/customers/{customerId}/invites",
|
|
850
|
+
method: "GET",
|
|
851
|
+
operationId: "customer-list-invites-for-customer",
|
|
852
|
+
};
|
|
853
|
+
/** Create a CustomerInvite. */
|
|
854
|
+
export const customerCreateCustomerInvite = {
|
|
855
|
+
path: "/v2/customers/{customerId}/invites",
|
|
856
|
+
method: "POST",
|
|
857
|
+
operationId: "customer-create-customer-invite",
|
|
858
|
+
};
|
|
835
859
|
/** Get all customer profiles the authenticated user has access to. */
|
|
836
860
|
export const customerListCustomers = {
|
|
837
861
|
path: "/v2/customers",
|
|
@@ -862,6 +886,42 @@ export const customerCreateWallet = {
|
|
|
862
886
|
method: "POST",
|
|
863
887
|
operationId: "customer-create-wallet",
|
|
864
888
|
};
|
|
889
|
+
/** Decline a CustomerInvite. */
|
|
890
|
+
export const customerDeclineCustomerInvite = {
|
|
891
|
+
path: "/v2/customer-invites/{customerInviteId}/actions/decline",
|
|
892
|
+
method: "POST",
|
|
893
|
+
operationId: "customer-decline-customer-invite",
|
|
894
|
+
};
|
|
895
|
+
/** Get a CustomerInvite. */
|
|
896
|
+
export const customerGetCustomerInvite = {
|
|
897
|
+
path: "/v2/customer-invites/{customerInviteId}",
|
|
898
|
+
method: "GET",
|
|
899
|
+
operationId: "customer-get-customer-invite",
|
|
900
|
+
};
|
|
901
|
+
/** Delete a CustomerInvite. */
|
|
902
|
+
export const customerDeleteCustomerInvite = {
|
|
903
|
+
path: "/v2/customer-invites/{customerInviteId}",
|
|
904
|
+
method: "DELETE",
|
|
905
|
+
operationId: "customer-delete-customer-invite",
|
|
906
|
+
};
|
|
907
|
+
/** Get a CustomerMembership. */
|
|
908
|
+
export const customerGetCustomerMembership = {
|
|
909
|
+
path: "/v2/customer-memberships/{customerMembershipId}",
|
|
910
|
+
method: "GET",
|
|
911
|
+
operationId: "customer-get-customer-membership",
|
|
912
|
+
};
|
|
913
|
+
/** Delete a CustomerMembership. */
|
|
914
|
+
export const customerDeleteCustomerMembership = {
|
|
915
|
+
path: "/v2/customer-memberships/{customerMembershipId}",
|
|
916
|
+
method: "DELETE",
|
|
917
|
+
operationId: "customer-delete-customer-membership",
|
|
918
|
+
};
|
|
919
|
+
/** Update a CustomerMembership. */
|
|
920
|
+
export const customerUpdateCustomerMembership = {
|
|
921
|
+
path: "/v2/customer-memberships/{customerMembershipId}",
|
|
922
|
+
method: "PATCH",
|
|
923
|
+
operationId: "customer-update-customer-membership",
|
|
924
|
+
};
|
|
865
925
|
/** Get a customer profile. */
|
|
866
926
|
export const customerGetCustomer = {
|
|
867
927
|
path: "/v2/customers/{customerId}",
|
|
@@ -880,12 +940,36 @@ export const customerDeleteCustomer = {
|
|
|
880
940
|
method: "DELETE",
|
|
881
941
|
operationId: "customer-delete-customer",
|
|
882
942
|
};
|
|
943
|
+
/** Get a CustomerInvite by token. */
|
|
944
|
+
export const customerGetCustomerTokenInvite = {
|
|
945
|
+
path: "/v2/customer-token-invite",
|
|
946
|
+
method: "GET",
|
|
947
|
+
operationId: "customer-get-customer-token-invite",
|
|
948
|
+
};
|
|
883
949
|
/** Check if the customer profile has a valid contract partner configured. */
|
|
884
950
|
export const customerIsCustomerLegallyCompetent = {
|
|
885
951
|
path: "/v2/customers/{customerId}/legally-competent",
|
|
886
952
|
method: "GET",
|
|
887
953
|
operationId: "customer-is-customer-legally-competent",
|
|
888
954
|
};
|
|
955
|
+
/** List CustomerInvites belonging to the executing user. */
|
|
956
|
+
export const customerListCustomerInvites = {
|
|
957
|
+
path: "/v2/customer-invites",
|
|
958
|
+
method: "GET",
|
|
959
|
+
operationId: "customer-list-customer-invites",
|
|
960
|
+
};
|
|
961
|
+
/** List CustomerMemberships belonging to the executing user. */
|
|
962
|
+
export const customerListCustomerMemberships = {
|
|
963
|
+
path: "/v2/customer-memberships",
|
|
964
|
+
method: "GET",
|
|
965
|
+
operationId: "customer-list-customer-memberships",
|
|
966
|
+
};
|
|
967
|
+
/** List Memberships belonging to a Customer. */
|
|
968
|
+
export const customerListMembershipsForCustomer = {
|
|
969
|
+
path: "/v2/customers/{customerId}/memberships",
|
|
970
|
+
method: "GET",
|
|
971
|
+
operationId: "customer-list-memberships-for-customer",
|
|
972
|
+
};
|
|
889
973
|
/** Request a new avatar upload for the customer profile. */
|
|
890
974
|
export const customerRequestAvatarUpload = {
|
|
891
975
|
path: "/v2/customers/{customerId}/avatar",
|
|
@@ -898,6 +982,12 @@ export const customerRemoveAvatar = {
|
|
|
898
982
|
method: "DELETE",
|
|
899
983
|
operationId: "customer-remove-avatar",
|
|
900
984
|
};
|
|
985
|
+
/** Resend the mail for a CustomerInvite. */
|
|
986
|
+
export const customerResendCustomerInviteMail = {
|
|
987
|
+
path: "/v2/customer-invites/{customerInviteId}/actions/resend",
|
|
988
|
+
method: "POST",
|
|
989
|
+
operationId: "customer-resend-customer-invite-mail",
|
|
990
|
+
};
|
|
901
991
|
/** Copy a MySQLDatabase with a MySQLUser. */
|
|
902
992
|
export const databaseCopyMysqlDatabase = {
|
|
903
993
|
path: "/v2/mysql-databases/{mysqlDatabaseId}/actions/copy",
|
|
@@ -1978,12 +2068,36 @@ export const passwordValidationGetPasswordPolicy = {
|
|
|
1978
2068
|
method: "GET",
|
|
1979
2069
|
operationId: "password-validation-get-password-policy",
|
|
1980
2070
|
};
|
|
2071
|
+
/** Accept a ProjectInvite. */
|
|
2072
|
+
export const projectAcceptProjectInvite = {
|
|
2073
|
+
path: "/v2/project-invites/{projectInviteId}/actions/accept",
|
|
2074
|
+
method: "POST",
|
|
2075
|
+
operationId: "project-accept-project-invite",
|
|
2076
|
+
};
|
|
2077
|
+
/** List Invites belonging to a Project. */
|
|
2078
|
+
export const projectListInvitesForProject = {
|
|
2079
|
+
path: "/v2/projects/{projectId}/invites",
|
|
2080
|
+
method: "GET",
|
|
2081
|
+
operationId: "project-list-invites-for-project",
|
|
2082
|
+
};
|
|
2083
|
+
/** Create a ProjectInvite. */
|
|
2084
|
+
export const projectCreateProjectInvite = {
|
|
2085
|
+
path: "/v2/projects/{projectId}/invites",
|
|
2086
|
+
method: "POST",
|
|
2087
|
+
operationId: "project-create-project-invite",
|
|
2088
|
+
};
|
|
1981
2089
|
/** Create a Project belonging to a Server. */
|
|
1982
2090
|
export const projectCreateProject = {
|
|
1983
2091
|
path: "/v2/servers/{serverId}/projects",
|
|
1984
2092
|
method: "POST",
|
|
1985
2093
|
operationId: "project-create-project",
|
|
1986
2094
|
};
|
|
2095
|
+
/** Decline a ProjectInvite. */
|
|
2096
|
+
export const projectDeclineProjectInvite = {
|
|
2097
|
+
path: "/v2/project-invites/{projectInviteId}/actions/decline",
|
|
2098
|
+
method: "POST",
|
|
2099
|
+
operationId: "project-decline-project-invite",
|
|
2100
|
+
};
|
|
1987
2101
|
/** Request a Project avatar upload. */
|
|
1988
2102
|
export const projectRequestProjectAvatarUpload = {
|
|
1989
2103
|
path: "/v2/projects/{projectId}/avatar",
|
|
@@ -1996,6 +2110,36 @@ export const projectDeleteProjectAvatar = {
|
|
|
1996
2110
|
method: "DELETE",
|
|
1997
2111
|
operationId: "project-delete-project-avatar",
|
|
1998
2112
|
};
|
|
2113
|
+
/** Get a ProjectInvite. */
|
|
2114
|
+
export const projectGetProjectInvite = {
|
|
2115
|
+
path: "/v2/project-invites/{projectInviteId}",
|
|
2116
|
+
method: "GET",
|
|
2117
|
+
operationId: "project-get-project-invite",
|
|
2118
|
+
};
|
|
2119
|
+
/** Delete a ProjectInvite. */
|
|
2120
|
+
export const projectDeleteProjectInvite = {
|
|
2121
|
+
path: "/v2/project-invites/{projectInviteId}",
|
|
2122
|
+
method: "DELETE",
|
|
2123
|
+
operationId: "project-delete-project-invite",
|
|
2124
|
+
};
|
|
2125
|
+
/** Get a ProjectMembership */
|
|
2126
|
+
export const projectGetProjectMembership = {
|
|
2127
|
+
path: "/v2/project-memberships/{projectMembershipId}",
|
|
2128
|
+
method: "GET",
|
|
2129
|
+
operationId: "project-get-project-membership",
|
|
2130
|
+
};
|
|
2131
|
+
/** Delete a ProjectMembership. */
|
|
2132
|
+
export const projectDeleteProjectMembership = {
|
|
2133
|
+
path: "/v2/project-memberships/{projectMembershipId}",
|
|
2134
|
+
method: "DELETE",
|
|
2135
|
+
operationId: "project-delete-project-membership",
|
|
2136
|
+
};
|
|
2137
|
+
/** Update a ProjectMembership. */
|
|
2138
|
+
export const projectUpdateProjectMembership = {
|
|
2139
|
+
path: "/v2/project-memberships/{projectMembershipId}",
|
|
2140
|
+
method: "PATCH",
|
|
2141
|
+
operationId: "project-update-project-membership",
|
|
2142
|
+
};
|
|
1999
2143
|
/** Get a Project. */
|
|
2000
2144
|
export const projectGetProject = {
|
|
2001
2145
|
path: "/v2/projects/{projectId}",
|
|
@@ -2050,12 +2194,42 @@ export const projectFileSystemListFiles = {
|
|
|
2050
2194
|
method: "GET",
|
|
2051
2195
|
operationId: "project-file-system-list-files",
|
|
2052
2196
|
};
|
|
2197
|
+
/** Get a ProjectInvite by token. */
|
|
2198
|
+
export const projectGetProjectTokenInvite = {
|
|
2199
|
+
path: "/v2/project-token-invite",
|
|
2200
|
+
method: "GET",
|
|
2201
|
+
operationId: "project-get-project-token-invite",
|
|
2202
|
+
};
|
|
2203
|
+
/** Get the executing user's membership in a Project. */
|
|
2204
|
+
export const projectGetSelfMembershipForProject = {
|
|
2205
|
+
path: "/v2/projects/{projectId}/memberships/self",
|
|
2206
|
+
method: "GET",
|
|
2207
|
+
operationId: "project-get-self-membership-for-project",
|
|
2208
|
+
};
|
|
2053
2209
|
/** Get a Server. */
|
|
2054
2210
|
export const projectGetServer = {
|
|
2055
2211
|
path: "/v2/servers/{serverId}",
|
|
2056
2212
|
method: "GET",
|
|
2057
2213
|
operationId: "project-get-server",
|
|
2058
2214
|
};
|
|
2215
|
+
/** List Memberships belonging to a Project. */
|
|
2216
|
+
export const projectListMembershipsForProject = {
|
|
2217
|
+
path: "/v2/projects/{projectId}/memberships",
|
|
2218
|
+
method: "GET",
|
|
2219
|
+
operationId: "project-list-memberships-for-project",
|
|
2220
|
+
};
|
|
2221
|
+
/** List ProjectInvites belonging to the executing user. */
|
|
2222
|
+
export const projectListProjectInvites = {
|
|
2223
|
+
path: "/v2/project-invites",
|
|
2224
|
+
method: "GET",
|
|
2225
|
+
operationId: "project-list-project-invites",
|
|
2226
|
+
};
|
|
2227
|
+
/** List ProjectMemberships belonging to the executing user. */
|
|
2228
|
+
export const projectListProjectMemberships = {
|
|
2229
|
+
path: "/v2/project-memberships",
|
|
2230
|
+
method: "GET",
|
|
2231
|
+
operationId: "project-list-project-memberships",
|
|
2232
|
+
};
|
|
2059
2233
|
/** List Projects belonging to the executing user. */
|
|
2060
2234
|
export const projectListProjects = {
|
|
2061
2235
|
path: "/v2/projects",
|
|
@@ -2068,6 +2242,12 @@ export const projectListServers = {
|
|
|
2068
2242
|
method: "GET",
|
|
2069
2243
|
operationId: "project-list-servers",
|
|
2070
2244
|
};
|
|
2245
|
+
/** Resend the mail for a ProjectInvite. */
|
|
2246
|
+
export const projectResendProjectInviteMail = {
|
|
2247
|
+
path: "/v2/project-invites/{projectInviteId}/actions/resend",
|
|
2248
|
+
method: "POST",
|
|
2249
|
+
operationId: "project-resend-project-invite-mail",
|
|
2250
|
+
};
|
|
2071
2251
|
/** Update a Project's description. */
|
|
2072
2252
|
export const projectUpdateProjectDescription = {
|
|
2073
2253
|
path: "/v2/projects/{projectId}/description",
|
|
@@ -2566,177 +2746,21 @@ export const verificationVerifyCompany = {
|
|
|
2566
2746
|
method: "POST",
|
|
2567
2747
|
operationId: "verification-verify-company",
|
|
2568
2748
|
};
|
|
2569
|
-
/** Get a
|
|
2570
|
-
export const
|
|
2571
|
-
path: "/v2/
|
|
2572
|
-
method: "GET",
|
|
2573
|
-
operationId: "customer-get-customer-invite",
|
|
2574
|
-
};
|
|
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}",
|
|
2584
|
-
method: "GET",
|
|
2585
|
-
operationId: "customer-get-customer-membership",
|
|
2586
|
-
};
|
|
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",
|
|
2602
|
-
method: "POST",
|
|
2603
|
-
operationId: "project-resend-project-invite-mail",
|
|
2604
|
-
};
|
|
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",
|
|
2626
|
-
method: "POST",
|
|
2627
|
-
operationId: "customer-create-customer-invite",
|
|
2628
|
-
};
|
|
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",
|
|
2634
|
-
};
|
|
2635
|
-
/** Get a CustomerInvite by token. */
|
|
2636
|
-
export const customerGetCustomerTokenInvite = {
|
|
2637
|
-
path: "/v2/customer-token-invite",
|
|
2638
|
-
method: "GET",
|
|
2639
|
-
operationId: "customer-get-customer-token-invite",
|
|
2640
|
-
};
|
|
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",
|
|
2749
|
+
/** Get a list of currently active models. */
|
|
2750
|
+
export const aiHostingCustomerGetDetailedModels = {
|
|
2751
|
+
path: "/v2/customers/{customerId}/ai-hosting-models",
|
|
2722
2752
|
method: "GET",
|
|
2723
|
-
operationId: "
|
|
2753
|
+
operationId: "ai-hosting-customer-get-detailed-models",
|
|
2724
2754
|
};
|
|
2725
|
-
/**
|
|
2726
|
-
export const
|
|
2727
|
-
path: "/v2/
|
|
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",
|
|
2755
|
+
/** Get a list of currently active models. */
|
|
2756
|
+
export const aiHostingProjectGetDetailedModels = {
|
|
2757
|
+
path: "/v2/projects/{projectId}/ai-hosting-models",
|
|
2734
2758
|
method: "GET",
|
|
2735
|
-
operationId: "project-
|
|
2759
|
+
operationId: "ai-hosting-project-get-detailed-models",
|
|
2736
2760
|
};
|
|
2737
|
-
/**
|
|
2738
|
-
export const
|
|
2739
|
-
path: "/v2/
|
|
2761
|
+
/** Accepts the model terms for a customer. */
|
|
2762
|
+
export const aiHostingCustomerAcceptModelTerms = {
|
|
2763
|
+
path: "/v2/customers/{customerId}/ai-hosting-models/actions/accept-terms",
|
|
2740
2764
|
method: "POST",
|
|
2741
|
-
operationId: "
|
|
2765
|
+
operationId: "ai-hosting-customer-accept-model-terms",
|
|
2742
2766
|
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.334.0';
|