@mittwald/api-client 4.330.0 → 4.332.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.329.0';
1
+ export const MittwaldAPIClientVersion = '4.331.0';
@@ -5820,18 +5820,39 @@ export declare namespace MittwaldAPIV2 {
5820
5820
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5821
5821
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5822
5822
  type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
5823
- interface MembershipInviteInformation {
5823
+ type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
5824
+ interface MembershipCustomerInvite {
5824
5825
  /**
5825
- * Token for authentication purposes.
5826
+ * Reference to the Customer's avatar.
5826
5827
  */
5827
- invitationToken?: string;
5828
+ avatarRefId?: string;
5828
5829
  /**
5829
- * ID of the user that created the invite.
5830
+ * ID of the Customer the invite is for.
5830
5831
  */
5831
- invitedBy: string;
5832
+ customerId: string;
5833
+ /**
5834
+ * Name of the Customer the user is invited to.
5835
+ */
5836
+ customerName: string;
5837
+ /**
5838
+ * ID of the CustomerInvite.
5839
+ */
5840
+ id: string;
5841
+ information: MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
5842
+ /**
5843
+ * Mail-address of the user the invite is for.
5844
+ */
5845
+ mailAddress: string;
5846
+ /**
5847
+ * Time the CustomerMembership should expire at.
5848
+ */
5849
+ membershipExpiresAt?: string;
5850
+ /**
5851
+ * Message contained in the CustomerInvite.
5852
+ */
5853
+ message?: string;
5854
+ role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
5832
5855
  }
5833
- type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
5834
- type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
5835
5856
  interface MembershipProjectMembership {
5836
5857
  /**
5837
5858
  * Avatar file reference id of the user.
@@ -5883,6 +5904,17 @@ export declare namespace MittwaldAPIV2 {
5883
5904
  */
5884
5905
  userId: string;
5885
5906
  }
5907
+ interface MembershipInviteInformation {
5908
+ /**
5909
+ * Token for authentication purposes.
5910
+ */
5911
+ invitationToken?: string;
5912
+ /**
5913
+ * ID of the user that created the invite.
5914
+ */
5915
+ invitedBy: string;
5916
+ }
5917
+ type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
5886
5918
  interface MembershipProjectInvite {
5887
5919
  /**
5888
5920
  * Reference to the Project's avatar.
@@ -5915,38 +5947,6 @@ export declare namespace MittwaldAPIV2 {
5915
5947
  projectId: string;
5916
5948
  role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
5917
5949
  }
5918
- interface MembershipCustomerInvite {
5919
- /**
5920
- * Reference to the Customer's avatar.
5921
- */
5922
- avatarRefId?: string;
5923
- /**
5924
- * ID of the Customer the invite is for.
5925
- */
5926
- customerId: string;
5927
- /**
5928
- * Name of the Customer the user is invited to.
5929
- */
5930
- customerName: string;
5931
- /**
5932
- * ID of the CustomerInvite.
5933
- */
5934
- id: string;
5935
- information: MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
5936
- /**
5937
- * Mail-address of the user the invite is for.
5938
- */
5939
- mailAddress: string;
5940
- /**
5941
- * Time the CustomerMembership should expire at.
5942
- */
5943
- membershipExpiresAt?: string;
5944
- /**
5945
- * Message contained in the CustomerInvite.
5946
- */
5947
- message?: string;
5948
- role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
5949
- }
5950
5950
  interface MembershipCustomerMembership {
5951
5951
  /**
5952
5952
  * Avatar file reference id of the user.
@@ -5994,26 +5994,26 @@ export declare namespace MittwaldAPIV2 {
5994
5994
  */
5995
5995
  userId: string;
5996
5996
  }
5997
- interface ConversationGenericStatusUpdate {
5997
+ interface ConversationResubmissionStatusUpdate {
5998
5998
  conversationId: string;
5999
5999
  createdAt: string;
6000
6000
  internal?: boolean;
6001
- messageContent: string;
6001
+ messageContent: "RESUBMISSION_CREATED" | "RESUBMISSION_RESUBMIT_AT_CHANGED";
6002
6002
  meta?: {
6003
+ groupAcronym: string;
6004
+ groupId: string;
6005
+ groupName: string;
6006
+ resubmitAt: string;
6003
6007
  user?: MittwaldAPIV2.Components.Schemas.ConversationUser;
6004
6008
  };
6005
6009
  type: "STATUS_UPDATE";
6006
6010
  }
6007
- interface ConversationResubmissionStatusUpdate {
6011
+ interface ConversationGenericStatusUpdate {
6008
6012
  conversationId: string;
6009
6013
  createdAt: string;
6010
6014
  internal?: boolean;
6011
- messageContent: "RESUBMISSION_CREATED" | "RESUBMISSION_RESUBMIT_AT_CHANGED";
6015
+ messageContent: string;
6012
6016
  meta?: {
6013
- groupAcronym: string;
6014
- groupId: string;
6015
- groupName: string;
6016
- resubmitAt: string;
6017
6017
  user?: MittwaldAPIV2.Components.Schemas.ConversationUser;
6018
6018
  };
6019
6019
  type: "STATUS_UPDATE";
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.329.0';
1
+ export declare const MittwaldAPIClientVersion = '4.331.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.330.0",
3
+ "version": "4.332.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.330.0",
49
+ "@mittwald/api-client-commons": "^4.332.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.330.0",
53
+ "@mittwald/api-code-generator": "^4.332.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": "a8497301b71e0b2f48d84cd2b18ab94361274af0"
83
+ "gitHead": "593dee2f73c0611de34dad664d587db214643711"
84
84
  }