@mittwald/api-client 4.332.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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.331.0';
1
+ export const MittwaldAPIClientVersion = '4.332.0';
@@ -5819,8 +5819,18 @@ 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
5822
  type MembershipCustomerRoles = "notset" | "owner" | "member" | "accountant";
5823
+ type MembershipProjectRoles = "notset" | "owner" | "emailadmin" | "external";
5824
+ interface MembershipInviteInformation {
5825
+ /**
5826
+ * Token for authentication purposes.
5827
+ */
5828
+ invitationToken?: string;
5829
+ /**
5830
+ * ID of the user that created the invite.
5831
+ */
5832
+ invitedBy: string;
5833
+ }
5824
5834
  interface MembershipCustomerInvite {
5825
5835
  /**
5826
5836
  * Reference to the Customer's avatar.
@@ -5853,6 +5863,54 @@ export declare namespace MittwaldAPIV2 {
5853
5863
  message?: string;
5854
5864
  role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
5855
5865
  }
5866
+ type MembershipCustomerInheritedRoles = "notset" | "owner" | "member" | "accountant";
5867
+ interface MembershipCustomerMembership {
5868
+ /**
5869
+ * Avatar file reference id of the user.
5870
+ */
5871
+ avatarRef?: string;
5872
+ /**
5873
+ * ID of the Customer the CustomerMembership is for.
5874
+ */
5875
+ customerId: string;
5876
+ /**
5877
+ * Email used by the invited user.
5878
+ */
5879
+ email: string;
5880
+ /**
5881
+ * Time the CustomerMembership should expire at.
5882
+ */
5883
+ expiresAt?: string;
5884
+ /**
5885
+ * First name of the user.
5886
+ */
5887
+ firstName: string;
5888
+ /**
5889
+ * ID of the CustomerMembership.
5890
+ */
5891
+ id: string;
5892
+ /**
5893
+ * ID of the CustomerInvite the membership was created from.
5894
+ */
5895
+ inviteId?: string;
5896
+ /**
5897
+ * Last name of the user.
5898
+ */
5899
+ lastName: string;
5900
+ /**
5901
+ * Date the CustomerMembership was created at.
5902
+ */
5903
+ memberSince?: string;
5904
+ /**
5905
+ * MFA activated by the user.
5906
+ */
5907
+ mfa: boolean;
5908
+ role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
5909
+ /**
5910
+ * ID of the user the CustomerMembership is for.
5911
+ */
5912
+ userId: string;
5913
+ }
5856
5914
  interface MembershipProjectMembership {
5857
5915
  /**
5858
5916
  * Avatar file reference id of the user.
@@ -5904,17 +5962,6 @@ export declare namespace MittwaldAPIV2 {
5904
5962
  */
5905
5963
  userId: string;
5906
5964
  }
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";
5918
5965
  interface MembershipProjectInvite {
5919
5966
  /**
5920
5967
  * Reference to the Project's avatar.
@@ -5947,73 +5994,26 @@ export declare namespace MittwaldAPIV2 {
5947
5994
  projectId: string;
5948
5995
  role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
5949
5996
  }
5950
- interface MembershipCustomerMembership {
5951
- /**
5952
- * Avatar file reference id of the user.
5953
- */
5954
- avatarRef?: string;
5955
- /**
5956
- * ID of the Customer the CustomerMembership is for.
5957
- */
5958
- customerId: string;
5959
- /**
5960
- * Email used by the invited user.
5961
- */
5962
- email: string;
5963
- /**
5964
- * Time the CustomerMembership should expire at.
5965
- */
5966
- expiresAt?: string;
5967
- /**
5968
- * First name of the user.
5969
- */
5970
- firstName: string;
5971
- /**
5972
- * ID of the CustomerMembership.
5973
- */
5974
- id: string;
5975
- /**
5976
- * ID of the CustomerInvite the membership was created from.
5977
- */
5978
- inviteId?: string;
5979
- /**
5980
- * Last name of the user.
5981
- */
5982
- lastName: string;
5983
- /**
5984
- * Date the CustomerMembership was created at.
5985
- */
5986
- memberSince?: string;
5987
- /**
5988
- * MFA activated by the user.
5989
- */
5990
- mfa: boolean;
5991
- role: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
5992
- /**
5993
- * ID of the user the CustomerMembership is for.
5994
- */
5995
- userId: string;
5996
- }
5997
- interface ConversationResubmissionStatusUpdate {
5997
+ interface ConversationGenericStatusUpdate {
5998
5998
  conversationId: string;
5999
5999
  createdAt: string;
6000
6000
  internal?: boolean;
6001
- messageContent: "RESUBMISSION_CREATED" | "RESUBMISSION_RESUBMIT_AT_CHANGED";
6001
+ messageContent: string;
6002
6002
  meta?: {
6003
- groupAcronym: string;
6004
- groupId: string;
6005
- groupName: string;
6006
- resubmitAt: string;
6007
6003
  user?: MittwaldAPIV2.Components.Schemas.ConversationUser;
6008
6004
  };
6009
6005
  type: "STATUS_UPDATE";
6010
6006
  }
6011
- interface ConversationGenericStatusUpdate {
6007
+ interface ConversationResubmissionStatusUpdate {
6012
6008
  conversationId: string;
6013
6009
  createdAt: string;
6014
6010
  internal?: boolean;
6015
- messageContent: string;
6011
+ messageContent: "RESUBMISSION_CREATED" | "RESUBMISSION_RESUBMIT_AT_CHANGED";
6016
6012
  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.331.0';
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.332.0",
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.332.0",
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.332.0",
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": "593dee2f73c0611de34dad664d587db214643711"
83
+ "gitHead": "98cb6f8c8cc470d6a8d2260fcece539f43ea0555"
84
84
  }