@mittwald/api-client 4.331.0 → 4.333.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/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.332.0';
|
|
@@ -5819,57 +5819,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5819
5819
|
}
|
|
5820
5820
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5821
5821
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
* Avatar file reference id of the user.
|
|
5825
|
-
*/
|
|
5826
|
-
avatarRef?: string;
|
|
5827
|
-
/**
|
|
5828
|
-
* Email used by the invited user.
|
|
5829
|
-
*/
|
|
5830
|
-
email: string;
|
|
5831
|
-
/**
|
|
5832
|
-
* Time the ProjectMembership should expire at.
|
|
5833
|
-
*/
|
|
5834
|
-
expiresAt?: string;
|
|
5835
|
-
/**
|
|
5836
|
-
* First name of the user.
|
|
5837
|
-
*/
|
|
5838
|
-
firstName: string;
|
|
5839
|
-
/**
|
|
5840
|
-
* ID of the ProjectMembership.
|
|
5841
|
-
*/
|
|
5842
|
-
id: string;
|
|
5843
|
-
/**
|
|
5844
|
-
* Whether the ProjectMembership was inherited from a CustomerMembership.
|
|
5845
|
-
*/
|
|
5846
|
-
inherited: boolean;
|
|
5847
|
-
/**
|
|
5848
|
-
* ID of the ProjectInvite the membership was created from.
|
|
5849
|
-
*/
|
|
5850
|
-
inviteId?: string;
|
|
5851
|
-
/**
|
|
5852
|
-
* Last name of the user.
|
|
5853
|
-
*/
|
|
5854
|
-
lastName: string;
|
|
5855
|
-
/**
|
|
5856
|
-
* Date the projectMembership was created at.
|
|
5857
|
-
*/
|
|
5858
|
-
memberSince?: string;
|
|
5859
|
-
/**
|
|
5860
|
-
* MFA activated by the user.
|
|
5861
|
-
*/
|
|
5862
|
-
mfa: boolean;
|
|
5863
|
-
/**
|
|
5864
|
-
* ID of the Project the membership is for.
|
|
5865
|
-
*/
|
|
5866
|
-
projectId: string;
|
|
5867
|
-
role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
5868
|
-
/**
|
|
5869
|
-
* ID of the user the ProjectMembership is for.
|
|
5870
|
-
*/
|
|
5871
|
-
userId: string;
|
|
5872
|
-
}
|
|
5822
|
+
type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
|
|
5823
|
+
type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
|
|
5873
5824
|
interface MembershipInviteInformation {
|
|
5874
5825
|
/**
|
|
5875
5826
|
* Token for authentication purposes.
|
|
@@ -5880,7 +5831,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5880
5831
|
*/
|
|
5881
5832
|
invitedBy: string;
|
|
5882
5833
|
}
|
|
5883
|
-
type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
|
|
5884
5834
|
interface MembershipCustomerInvite {
|
|
5885
5835
|
/**
|
|
5886
5836
|
* Reference to the Customer's avatar.
|
|
@@ -5913,6 +5863,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5913
5863
|
message?: string;
|
|
5914
5864
|
role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
5915
5865
|
}
|
|
5866
|
+
type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
|
|
5916
5867
|
interface MembershipCustomerMembership {
|
|
5917
5868
|
/**
|
|
5918
5869
|
* Avatar file reference id of the user.
|
|
@@ -5960,6 +5911,57 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5960
5911
|
*/
|
|
5961
5912
|
userId: string;
|
|
5962
5913
|
}
|
|
5914
|
+
interface MembershipProjectMembership {
|
|
5915
|
+
/**
|
|
5916
|
+
* Avatar file reference id of the user.
|
|
5917
|
+
*/
|
|
5918
|
+
avatarRef?: string;
|
|
5919
|
+
/**
|
|
5920
|
+
* Email used by the invited user.
|
|
5921
|
+
*/
|
|
5922
|
+
email: string;
|
|
5923
|
+
/**
|
|
5924
|
+
* Time the ProjectMembership should expire at.
|
|
5925
|
+
*/
|
|
5926
|
+
expiresAt?: string;
|
|
5927
|
+
/**
|
|
5928
|
+
* First name of the user.
|
|
5929
|
+
*/
|
|
5930
|
+
firstName: string;
|
|
5931
|
+
/**
|
|
5932
|
+
* ID of the ProjectMembership.
|
|
5933
|
+
*/
|
|
5934
|
+
id: string;
|
|
5935
|
+
/**
|
|
5936
|
+
* Whether the ProjectMembership was inherited from a CustomerMembership.
|
|
5937
|
+
*/
|
|
5938
|
+
inherited: boolean;
|
|
5939
|
+
/**
|
|
5940
|
+
* ID of the ProjectInvite the membership was created from.
|
|
5941
|
+
*/
|
|
5942
|
+
inviteId?: string;
|
|
5943
|
+
/**
|
|
5944
|
+
* Last name of the user.
|
|
5945
|
+
*/
|
|
5946
|
+
lastName: string;
|
|
5947
|
+
/**
|
|
5948
|
+
* Date the projectMembership was created at.
|
|
5949
|
+
*/
|
|
5950
|
+
memberSince?: string;
|
|
5951
|
+
/**
|
|
5952
|
+
* MFA activated by the user.
|
|
5953
|
+
*/
|
|
5954
|
+
mfa: boolean;
|
|
5955
|
+
/**
|
|
5956
|
+
* ID of the Project the membership is for.
|
|
5957
|
+
*/
|
|
5958
|
+
projectId: string;
|
|
5959
|
+
role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
5960
|
+
/**
|
|
5961
|
+
* ID of the user the ProjectMembership is for.
|
|
5962
|
+
*/
|
|
5963
|
+
userId: string;
|
|
5964
|
+
}
|
|
5963
5965
|
interface MembershipProjectInvite {
|
|
5964
5966
|
/**
|
|
5965
5967
|
* Reference to the Project's avatar.
|
|
@@ -5992,8 +5994,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5992
5994
|
projectId: string;
|
|
5993
5995
|
role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
5994
5996
|
}
|
|
5995
|
-
type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
|
|
5996
|
-
type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
|
|
5997
5997
|
interface ConversationGenericStatusUpdate {
|
|
5998
5998
|
conversationId: string;
|
|
5999
5999
|
createdAt: string;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.332.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.333.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.333.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.333.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "98cb6f8c8cc470d6a8d2260fcece539f43ea0555"
|
|
84
84
|
}
|