@mittwald/api-client 4.331.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.330.0';
1
+ export const MittwaldAPIClientVersion = '4.331.0';
@@ -5819,6 +5819,40 @@ 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
+ type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
5823
+ type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
5824
+ interface MembershipCustomerInvite {
5825
+ /**
5826
+ * Reference to the Customer's avatar.
5827
+ */
5828
+ avatarRefId?: string;
5829
+ /**
5830
+ * ID of the Customer the invite is for.
5831
+ */
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;
5855
+ }
5822
5856
  interface MembershipProjectMembership {
5823
5857
  /**
5824
5858
  * Avatar file reference id of the user.
@@ -5880,38 +5914,38 @@ export declare namespace MittwaldAPIV2 {
5880
5914
  */
5881
5915
  invitedBy: string;
5882
5916
  }
5883
- type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
5884
- interface MembershipCustomerInvite {
5917
+ type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
5918
+ interface MembershipProjectInvite {
5885
5919
  /**
5886
- * Reference to the Customer's avatar.
5920
+ * Reference to the Project's avatar.
5887
5921
  */
5888
5922
  avatarRefId?: string;
5889
5923
  /**
5890
- * ID of the Customer the invite is for.
5891
- */
5892
- customerId: string;
5893
- /**
5894
- * Name of the Customer the user is invited to.
5895
- */
5896
- customerName: string;
5897
- /**
5898
- * ID of the CustomerInvite.
5924
+ * ID of the ProjectInvite.
5899
5925
  */
5900
5926
  id: string;
5901
5927
  information: MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
5902
5928
  /**
5903
- * Mail-address of the user the invite is for.
5929
+ * Mail-address of the user the ProjectInvite is for.
5904
5930
  */
5905
5931
  mailAddress: string;
5906
5932
  /**
5907
- * Time the CustomerMembership should expire at.
5933
+ * Time the ProjectMembership should expire at.
5908
5934
  */
5909
5935
  membershipExpiresAt?: string;
5910
5936
  /**
5911
- * Message contained in the CustomerInvite.
5937
+ * Message contained in the ProjectInvite.
5912
5938
  */
5913
5939
  message?: string;
5914
- role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
5940
+ /**
5941
+ * Description of the Project the invite is created for.
5942
+ */
5943
+ projectDescription: string;
5944
+ /**
5945
+ * ID of the Project the invitation is for.
5946
+ */
5947
+ projectId: string;
5948
+ role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
5915
5949
  }
5916
5950
  interface MembershipCustomerMembership {
5917
5951
  /**
@@ -5960,60 +5994,26 @@ export declare namespace MittwaldAPIV2 {
5960
5994
  */
5961
5995
  userId: string;
5962
5996
  }
5963
- interface MembershipProjectInvite {
5964
- /**
5965
- * Reference to the Project's avatar.
5966
- */
5967
- avatarRefId?: string;
5968
- /**
5969
- * ID of the ProjectInvite.
5970
- */
5971
- id: string;
5972
- information: MittwaldAPIV2.Components.Schemas.MembershipInviteInformation;
5973
- /**
5974
- * Mail-address of the user the ProjectInvite is for.
5975
- */
5976
- mailAddress: string;
5977
- /**
5978
- * Time the ProjectMembership should expire at.
5979
- */
5980
- membershipExpiresAt?: string;
5981
- /**
5982
- * Message contained in the ProjectInvite.
5983
- */
5984
- message?: string;
5985
- /**
5986
- * Description of the Project the invite is created for.
5987
- */
5988
- projectDescription: string;
5989
- /**
5990
- * ID of the Project the invitation is for.
5991
- */
5992
- projectId: string;
5993
- role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
5994
- }
5995
- type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
5996
- type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
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.330.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.331.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.331.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.331.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": "8926e51494b516ed0e84340cae183ec2898672e2"
83
+ "gitHead": "593dee2f73c0611de34dad664d587db214643711"
84
84
  }