@mittwald/api-client 4.329.0 → 4.330.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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.328.0';
1
+ export const MittwaldAPIClientVersion = '4.329.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
- interface ConversationStatusUpdate {
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,6 +5819,7 @@ 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";
5822
+ type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
5831
5823
  interface MembershipInviteInformation {
5832
5824
  /**
5833
5825
  * Token for authentication purposes.
@@ -5838,6 +5830,7 @@ export declare namespace MittwaldAPIV2 {
5838
5830
  */
5839
5831
  invitedBy: string;
5840
5832
  }
5833
+ type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
5841
5834
  type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
5842
5835
  interface MembershipProjectMembership {
5843
5836
  /**
@@ -5890,7 +5883,38 @@ export declare namespace MittwaldAPIV2 {
5890
5883
  */
5891
5884
  userId: string;
5892
5885
  }
5893
- type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
5886
+ interface MembershipProjectInvite {
5887
+ /**
5888
+ * Reference to the Project's avatar.
5889
+ */
5890
+ avatarRefId?: string;
5891
+ /**
5892
+ * ID of the ProjectInvite.
5893
+ */
5894
+ id: string;
5895
+ information: MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
5896
+ /**
5897
+ * Mail-address of the user the ProjectInvite is for.
5898
+ */
5899
+ mailAddress: string;
5900
+ /**
5901
+ * Time the ProjectMembership should expire at.
5902
+ */
5903
+ membershipExpiresAt?: string;
5904
+ /**
5905
+ * Message contained in the ProjectInvite.
5906
+ */
5907
+ message?: string;
5908
+ /**
5909
+ * Description of the Project the invite is created for.
5910
+ */
5911
+ projectDescription: string;
5912
+ /**
5913
+ * ID of the Project the invitation is for.
5914
+ */
5915
+ projectId: string;
5916
+ role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
5917
+ }
5894
5918
  interface MembershipCustomerInvite {
5895
5919
  /**
5896
5920
  * Reference to the Customer's avatar.
@@ -5923,7 +5947,6 @@ export declare namespace MittwaldAPIV2 {
5923
5947
  message?: string;
5924
5948
  role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
5925
5949
  }
5926
- type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
5927
5950
  interface MembershipCustomerMembership {
5928
5951
  /**
5929
5952
  * Avatar file reference id of the user.
@@ -5971,37 +5994,29 @@ export declare namespace MittwaldAPIV2 {
5971
5994
  */
5972
5995
  userId: string;
5973
5996
  }
5974
- interface MembershipProjectInvite {
5975
- /**
5976
- * Reference to the Project's avatar.
5977
- */
5978
- avatarRefId?: string;
5979
- /**
5980
- * ID of the ProjectInvite.
5981
- */
5982
- id: string;
5983
- information: MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
5984
- /**
5985
- * Mail-address of the user the ProjectInvite is for.
5986
- */
5987
- mailAddress: string;
5988
- /**
5989
- * Time the ProjectMembership should expire at.
5990
- */
5991
- membershipExpiresAt?: string;
5992
- /**
5993
- * Message contained in the ProjectInvite.
5994
- */
5995
- message?: string;
5996
- /**
5997
- * Description of the Project the invite is created for.
5998
- */
5999
- projectDescription: string;
6000
- /**
6001
- * ID of the Project the invitation is for.
6002
- */
6003
- projectId: string;
6004
- role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
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";
6005
6020
  }
6006
6021
  interface CommonsAddress {
6007
6022
  street: string;
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.328.0';
1
+ export declare const MittwaldAPIClientVersion = '4.329.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.329.0",
3
+ "version": "4.330.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.329.0",
49
+ "@mittwald/api-client-commons": "^4.330.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.329.0",
53
+ "@mittwald/api-code-generator": "^4.330.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": "8a967e977ddf996ce0d0c664566db6b7d74392c3"
83
+ "gitHead": "a8497301b71e0b2f48d84cd2b18ab94361274af0"
84
84
  }