@mittwald/api-client 4.329.0 → 4.331.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.330.0';
|
|
@@ -3015,16 +3015,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3015
3015
|
id: string;
|
|
3016
3016
|
};
|
|
3017
3017
|
type ConversationStatus = "open" | "closed" | "answered" | "inProgress" | "waiting";
|
|
3018
|
-
|
|
3019
|
-
conversationId: string;
|
|
3020
|
-
createdAt: string;
|
|
3021
|
-
internal?: boolean;
|
|
3022
|
-
messageContent: string;
|
|
3023
|
-
meta?: {
|
|
3024
|
-
user?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3025
|
-
};
|
|
3026
|
-
type: "STATUS_UPDATE";
|
|
3027
|
-
}
|
|
3018
|
+
type ConversationStatusUpdate = MittwaldAPIV2.Components.Schemas.ConversationResubmissionStatusUpdate | MittwaldAPIV2.Components.Schemas.ConversationGenericStatusUpdate;
|
|
3028
3019
|
interface ConversationUser {
|
|
3029
3020
|
active?: boolean;
|
|
3030
3021
|
atlasGroup?: MittwaldAPIV2.Components.Schemas.ConversationGroup;
|
|
@@ -5828,17 +5819,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5828
5819
|
}
|
|
5829
5820
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5830
5821
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5831
|
-
interface MembershipInviteInformation {
|
|
5832
|
-
/**
|
|
5833
|
-
* Token for authentication purposes.
|
|
5834
|
-
*/
|
|
5835
|
-
invitationToken?: string;
|
|
5836
|
-
/**
|
|
5837
|
-
* ID of the user that created the invite.
|
|
5838
|
-
*/
|
|
5839
|
-
invitedBy: string;
|
|
5840
|
-
}
|
|
5841
|
-
type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
|
|
5842
5822
|
interface MembershipProjectMembership {
|
|
5843
5823
|
/**
|
|
5844
5824
|
* Avatar file reference id of the user.
|
|
@@ -5890,6 +5870,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5890
5870
|
*/
|
|
5891
5871
|
userId: string;
|
|
5892
5872
|
}
|
|
5873
|
+
interface MembershipInviteInformation {
|
|
5874
|
+
/**
|
|
5875
|
+
* Token for authentication purposes.
|
|
5876
|
+
*/
|
|
5877
|
+
invitationToken?: string;
|
|
5878
|
+
/**
|
|
5879
|
+
* ID of the user that created the invite.
|
|
5880
|
+
*/
|
|
5881
|
+
invitedBy: string;
|
|
5882
|
+
}
|
|
5893
5883
|
type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
|
|
5894
5884
|
interface MembershipCustomerInvite {
|
|
5895
5885
|
/**
|
|
@@ -5923,7 +5913,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5923
5913
|
message?: string;
|
|
5924
5914
|
role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
5925
5915
|
}
|
|
5926
|
-
type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
|
|
5927
5916
|
interface MembershipCustomerMembership {
|
|
5928
5917
|
/**
|
|
5929
5918
|
* Avatar file reference id of the user.
|
|
@@ -6003,6 +5992,32 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6003
5992
|
projectId: string;
|
|
6004
5993
|
role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
6005
5994
|
}
|
|
5995
|
+
type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
|
|
5996
|
+
type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
|
|
5997
|
+
interface ConversationGenericStatusUpdate {
|
|
5998
|
+
conversationId: string;
|
|
5999
|
+
createdAt: string;
|
|
6000
|
+
internal?: boolean;
|
|
6001
|
+
messageContent: string;
|
|
6002
|
+
meta?: {
|
|
6003
|
+
user?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
6004
|
+
};
|
|
6005
|
+
type: "STATUS_UPDATE";
|
|
6006
|
+
}
|
|
6007
|
+
interface ConversationResubmissionStatusUpdate {
|
|
6008
|
+
conversationId: string;
|
|
6009
|
+
createdAt: string;
|
|
6010
|
+
internal?: boolean;
|
|
6011
|
+
messageContent: "RESUBMISSION_CREATED" | "RESUBMISSION_RESUBMIT_AT_CHANGED";
|
|
6012
|
+
meta?: {
|
|
6013
|
+
groupAcronym: string;
|
|
6014
|
+
groupId: string;
|
|
6015
|
+
groupName: string;
|
|
6016
|
+
resubmitAt: string;
|
|
6017
|
+
user?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
6018
|
+
};
|
|
6019
|
+
type: "STATUS_UPDATE";
|
|
6020
|
+
}
|
|
6006
6021
|
interface CommonsAddress {
|
|
6007
6022
|
street: string;
|
|
6008
6023
|
houseNumber: string;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.330.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.331.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.331.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.331.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": "8926e51494b516ed0e84340cae183ec2898672e2"
|
|
84
84
|
}
|