@mittwald/api-client 4.367.0 → 4.368.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.
@@ -874,10 +874,18 @@ export declare namespace MittwaldAPIV2 {
874
874
  type RequestData = InferredRequestData<typeof descriptors.domainDeleteDomain>;
875
875
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainDeleteDomain, TStatus>;
876
876
  }
877
+ namespace DomainGetContactVerification {
878
+ type RequestData = InferredRequestData<typeof descriptors.domainGetContactVerification>;
879
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetContactVerification, TStatus>;
880
+ }
877
881
  namespace DomainGetLatestScreenshot {
878
882
  type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
879
883
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
880
884
  }
885
+ namespace DomainListContactVerifications {
886
+ type RequestData = InferredRequestData<typeof descriptors.domainListContactVerifications>;
887
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListContactVerifications, TStatus>;
888
+ }
881
889
  namespace DomainListTldContactSchemas {
882
890
  type RequestData = InferredRequestData<typeof descriptors.domainListTldContactSchemas>;
883
891
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListTldContactSchemas, TStatus>;
@@ -886,6 +894,10 @@ export declare namespace MittwaldAPIV2 {
886
894
  type RequestData = InferredRequestData<typeof descriptors.domainListTlds>;
887
895
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListTlds, TStatus>;
888
896
  }
897
+ namespace DomainResendContactVerificationEmail {
898
+ type RequestData = InferredRequestData<typeof descriptors.domainResendContactVerificationEmail>;
899
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendContactVerificationEmail, TStatus>;
900
+ }
889
901
  namespace DomainResendDomainEmail {
890
902
  type RequestData = InferredRequestData<typeof descriptors.domainResendDomainEmail>;
891
903
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendDomainEmail, TStatus>;
@@ -1714,6 +1726,10 @@ export declare namespace MittwaldAPIV2 {
1714
1726
  type RequestData = InferredRequestData<typeof descriptors.userDeleteUser>;
1715
1727
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userDeleteUser, TStatus>;
1716
1728
  }
1729
+ namespace UserGetCurrentSessionStatus {
1730
+ type RequestData = InferredRequestData<typeof descriptors.userGetCurrentSessionStatus>;
1731
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetCurrentSessionStatus, TStatus>;
1732
+ }
1717
1733
  namespace UserGetPasswordUpdatedAt {
1718
1734
  type RequestData = InferredRequestData<typeof descriptors.userGetPasswordUpdatedAt>;
1719
1735
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetPasswordUpdatedAt, TStatus>;
@@ -1830,22 +1846,6 @@ export declare namespace MittwaldAPIV2 {
1830
1846
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1831
1847
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1832
1848
  }
1833
- namespace UserGetCurrentSessionStatus {
1834
- type RequestData = InferredRequestData<typeof descriptors.userGetCurrentSessionStatus>;
1835
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userGetCurrentSessionStatus, TStatus>;
1836
- }
1837
- namespace DomainGetContactVerification {
1838
- type RequestData = InferredRequestData<typeof descriptors.domainGetContactVerification>;
1839
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetContactVerification, TStatus>;
1840
- }
1841
- namespace DomainListContactVerifications {
1842
- type RequestData = InferredRequestData<typeof descriptors.domainListContactVerifications>;
1843
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListContactVerifications, TStatus>;
1844
- }
1845
- namespace DomainResendContactVerificationEmail {
1846
- type RequestData = InferredRequestData<typeof descriptors.domainResendContactVerificationEmail>;
1847
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainResendContactVerificationEmail, TStatus>;
1848
- }
1849
1849
  }
1850
1850
  namespace Components {
1851
1851
  namespace Schemas {
@@ -3710,6 +3710,25 @@ export declare namespace MittwaldAPIV2 {
3710
3710
  interface DomainAuthCode2 {
3711
3711
  expires: string;
3712
3712
  }
3713
+ interface DomainContactVerificationAddressData {
3714
+ type: "address";
3715
+ value: string;
3716
+ }
3717
+ interface DomainContactVerificationEmailData {
3718
+ emailVerificationDeadline?: string;
3719
+ lastEmailSentDate?: string;
3720
+ type: "email";
3721
+ value: string;
3722
+ }
3723
+ interface DomainContactVerificationNameData {
3724
+ type: "name";
3725
+ value: string;
3726
+ }
3727
+ interface DomainContactVerification {
3728
+ id: string;
3729
+ status: MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
3730
+ typeData: MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
3731
+ }
3713
3732
  interface DomainCreateDomainHandleData {
3714
3733
  adminC?: MittwaldAPIV2.Components.Schemas.DomainHandleField[];
3715
3734
  ownerC: MittwaldAPIV2.Components.Schemas.DomainHandleField[];
@@ -3771,6 +3790,8 @@ export declare namespace MittwaldAPIV2 {
3771
3790
  transferAuthentication: MittwaldAPIV2.Components.Schemas.DomainTransferAuthentication;
3772
3791
  }
3773
3792
  type DomainTransferAuthentication = "unspecified" | "code" | "email" | "push";
3793
+ type DomainContactVerificationStatus = "created" | "pending" | "completed" | "failed";
3794
+ type DomainContactVerificationType = "name" | "address" | "email";
3774
3795
  interface MarketplaceAggregateReference {
3775
3796
  aggregate: "project" | "customer";
3776
3797
  domain: "project" | "customer";
@@ -6171,27 +6192,6 @@ export declare namespace MittwaldAPIV2 {
6171
6192
  }
6172
6193
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6173
6194
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6174
- interface DomainContactVerification {
6175
- id: string;
6176
- status: MittwaldAPIV2.Components.Schemas.DomainContactVerificationStatus;
6177
- typeData: MittwaldAPIV2.Components.Schemas.DomainContactVerificationAddressData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationEmailData | MittwaldAPIV2.Components.Schemas.DomainContactVerificationNameData;
6178
- }
6179
- interface DomainContactVerificationAddressData {
6180
- type: "address";
6181
- value: string;
6182
- }
6183
- interface DomainContactVerificationEmailData {
6184
- emailVerificationDeadline?: string;
6185
- lastEmailSentDate?: string;
6186
- type: "email";
6187
- value: string;
6188
- }
6189
- interface DomainContactVerificationNameData {
6190
- type: "name";
6191
- value: string;
6192
- }
6193
- type DomainContactVerificationStatus = "created" | "pending" | "completed" | "failed";
6194
- type DomainContactVerificationType = "name" | "address" | "email";
6195
6195
  interface CommonsAddress {
6196
6196
  street: string;
6197
6197
  houseNumber: string;
@@ -8129,6 +8129,7 @@ export declare namespace MittwaldAPIV2 {
8129
8129
  };
8130
8130
  interface RequestBody {
8131
8131
  description: string;
8132
+ domain?: string;
8132
8133
  installationPath?: string;
8133
8134
  targetProjectId?: string;
8134
8135
  }
@@ -16924,6 +16925,8 @@ export declare namespace MittwaldAPIV2 {
16924
16925
  }
16925
16926
  namespace V2ProjectsProjectIdLeave { }
16926
16927
  namespace V2SignupEmail { }
16928
+ namespace V2SignupTokenCheck { }
16929
+ namespace V2UsersSelfCredentialsToken { }
16927
16930
  namespace V2SignupPasswordResetConfirm { }
16928
16931
  namespace V2UsersSelfIssues { }
16929
16932
  namespace V2SignupTokenApiApiTokenId { }
@@ -17670,6 +17673,52 @@ export declare namespace MittwaldAPIV2 {
17670
17673
  }
17671
17674
  }
17672
17675
  }
17676
+ namespace V2ContactVerificationsContactVerificationId {
17677
+ namespace Get {
17678
+ namespace Parameters {
17679
+ type Path = {
17680
+ contactVerificationId: string;
17681
+ };
17682
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17683
+ type Query = {};
17684
+ }
17685
+ namespace Responses {
17686
+ namespace $200 {
17687
+ namespace Content {
17688
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification;
17689
+ }
17690
+ }
17691
+ namespace $400 {
17692
+ namespace Content {
17693
+ interface ApplicationJson {
17694
+ [k: string]: unknown;
17695
+ }
17696
+ }
17697
+ }
17698
+ namespace $404 {
17699
+ namespace Content {
17700
+ interface ApplicationJson {
17701
+ [k: string]: unknown;
17702
+ }
17703
+ }
17704
+ }
17705
+ namespace $429 {
17706
+ namespace Content {
17707
+ interface ApplicationJson {
17708
+ [k: string]: unknown;
17709
+ }
17710
+ }
17711
+ }
17712
+ namespace Default {
17713
+ namespace Content {
17714
+ interface ApplicationJson {
17715
+ [k: string]: unknown;
17716
+ }
17717
+ }
17718
+ }
17719
+ }
17720
+ }
17721
+ }
17673
17722
  namespace V2DomainsLatestScreenshot {
17674
17723
  namespace Get {
17675
17724
  namespace Parameters {
@@ -17711,6 +17760,46 @@ export declare namespace MittwaldAPIV2 {
17711
17760
  }
17712
17761
  }
17713
17762
  }
17763
+ namespace V2ContactVerifications {
17764
+ namespace Get {
17765
+ namespace Parameters {
17766
+ type Path = {};
17767
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17768
+ type Query = {
17769
+ value?: string;
17770
+ type?: MittwaldAPIV2.Components.Schemas.DomainContactVerificationType;
17771
+ };
17772
+ }
17773
+ namespace Responses {
17774
+ namespace $200 {
17775
+ namespace Content {
17776
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification[];
17777
+ }
17778
+ }
17779
+ namespace $400 {
17780
+ namespace Content {
17781
+ interface ApplicationJson {
17782
+ [k: string]: unknown;
17783
+ }
17784
+ }
17785
+ }
17786
+ namespace $429 {
17787
+ namespace Content {
17788
+ interface ApplicationJson {
17789
+ [k: string]: unknown;
17790
+ }
17791
+ }
17792
+ }
17793
+ namespace Default {
17794
+ namespace Content {
17795
+ interface ApplicationJson {
17796
+ [k: string]: unknown;
17797
+ }
17798
+ }
17799
+ }
17800
+ }
17801
+ }
17802
+ }
17714
17803
  namespace V2DomainTldsTldContactSchemas {
17715
17804
  namespace Get {
17716
17805
  namespace Parameters {
@@ -17777,6 +17866,52 @@ export declare namespace MittwaldAPIV2 {
17777
17866
  }
17778
17867
  }
17779
17868
  }
17869
+ namespace V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail {
17870
+ namespace Post {
17871
+ namespace Parameters {
17872
+ type Path = {
17873
+ contactVerificationId: string;
17874
+ };
17875
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17876
+ type Query = {};
17877
+ }
17878
+ namespace Responses {
17879
+ namespace $204 {
17880
+ namespace Content {
17881
+ type Empty = unknown;
17882
+ }
17883
+ }
17884
+ namespace $400 {
17885
+ namespace Content {
17886
+ interface ApplicationJson {
17887
+ [k: string]: unknown;
17888
+ }
17889
+ }
17890
+ }
17891
+ namespace $412 {
17892
+ namespace Content {
17893
+ interface ApplicationJson {
17894
+ [k: string]: unknown;
17895
+ }
17896
+ }
17897
+ }
17898
+ namespace $429 {
17899
+ namespace Content {
17900
+ interface ApplicationJson {
17901
+ [k: string]: unknown;
17902
+ }
17903
+ }
17904
+ }
17905
+ namespace Default {
17906
+ namespace Content {
17907
+ interface ApplicationJson {
17908
+ [k: string]: unknown;
17909
+ }
17910
+ }
17911
+ }
17912
+ }
17913
+ }
17914
+ }
17780
17915
  namespace V2DomainsDomainIdActionsResendEmail {
17781
17916
  namespace Post {
17782
17917
  namespace Parameters {
@@ -28601,6 +28736,49 @@ export declare namespace MittwaldAPIV2 {
28601
28736
  }
28602
28737
  }
28603
28738
  }
28739
+ namespace V2UsersSelfSessionsCurrentStatus {
28740
+ namespace Get {
28741
+ namespace Parameters {
28742
+ type Path = {};
28743
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
28744
+ type Query = {};
28745
+ }
28746
+ namespace Responses {
28747
+ namespace $200 {
28748
+ namespace Content {
28749
+ interface ApplicationJson {
28750
+ /**
28751
+ * Whether the executing user is an employee.
28752
+ */
28753
+ isEmployee: boolean;
28754
+ /**
28755
+ * Whether the current session is an impersonation.
28756
+ */
28757
+ isImpersonated: boolean;
28758
+ /**
28759
+ * ID of the executing user.
28760
+ */
28761
+ userId: string;
28762
+ }
28763
+ }
28764
+ }
28765
+ namespace $429 {
28766
+ namespace Content {
28767
+ interface ApplicationJson {
28768
+ [k: string]: unknown;
28769
+ }
28770
+ }
28771
+ }
28772
+ namespace Default {
28773
+ namespace Content {
28774
+ interface ApplicationJson {
28775
+ [k: string]: unknown;
28776
+ }
28777
+ }
28778
+ }
28779
+ }
28780
+ }
28781
+ }
28604
28782
  namespace V2UsersSelfCredentialsPasswordUpdatedAt {
28605
28783
  namespace Get {
28606
28784
  namespace Parameters {
@@ -29902,182 +30080,5 @@ export declare namespace MittwaldAPIV2 {
29902
30080
  }
29903
30081
  }
29904
30082
  }
29905
- namespace V2UsersSelfSessionsCurrentStatus {
29906
- namespace Get {
29907
- namespace Parameters {
29908
- type Path = {};
29909
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29910
- type Query = {};
29911
- }
29912
- namespace Responses {
29913
- namespace $200 {
29914
- namespace Content {
29915
- interface ApplicationJson {
29916
- /**
29917
- * Whether the executing user is an employee.
29918
- */
29919
- isEmployee: boolean;
29920
- /**
29921
- * Whether the current session is an impersonation.
29922
- */
29923
- isImpersonated: boolean;
29924
- /**
29925
- * ID of the executing user.
29926
- */
29927
- userId: string;
29928
- }
29929
- }
29930
- }
29931
- namespace $429 {
29932
- namespace Content {
29933
- interface ApplicationJson {
29934
- [k: string]: unknown;
29935
- }
29936
- }
29937
- }
29938
- namespace Default {
29939
- namespace Content {
29940
- interface ApplicationJson {
29941
- [k: string]: unknown;
29942
- }
29943
- }
29944
- }
29945
- }
29946
- }
29947
- }
29948
- namespace V2SignupTokenCheck { }
29949
- namespace V2UsersSelfCredentialsToken { }
29950
- namespace V2ContactVerificationsContactVerificationId {
29951
- namespace Get {
29952
- namespace Parameters {
29953
- type Path = {
29954
- contactVerificationId: string;
29955
- };
29956
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29957
- type Query = {};
29958
- }
29959
- namespace Responses {
29960
- namespace $200 {
29961
- namespace Content {
29962
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification;
29963
- }
29964
- }
29965
- namespace $400 {
29966
- namespace Content {
29967
- interface ApplicationJson {
29968
- [k: string]: unknown;
29969
- }
29970
- }
29971
- }
29972
- namespace $404 {
29973
- namespace Content {
29974
- interface ApplicationJson {
29975
- [k: string]: unknown;
29976
- }
29977
- }
29978
- }
29979
- namespace $429 {
29980
- namespace Content {
29981
- interface ApplicationJson {
29982
- [k: string]: unknown;
29983
- }
29984
- }
29985
- }
29986
- namespace Default {
29987
- namespace Content {
29988
- interface ApplicationJson {
29989
- [k: string]: unknown;
29990
- }
29991
- }
29992
- }
29993
- }
29994
- }
29995
- }
29996
- namespace V2ContactVerifications {
29997
- namespace Get {
29998
- namespace Parameters {
29999
- type Path = {};
30000
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
30001
- type Query = {
30002
- value?: string;
30003
- type?: MittwaldAPIV2.Components.Schemas.DomainContactVerificationType;
30004
- };
30005
- }
30006
- namespace Responses {
30007
- namespace $200 {
30008
- namespace Content {
30009
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.DomainContactVerification[];
30010
- }
30011
- }
30012
- namespace $400 {
30013
- namespace Content {
30014
- interface ApplicationJson {
30015
- [k: string]: unknown;
30016
- }
30017
- }
30018
- }
30019
- namespace $429 {
30020
- namespace Content {
30021
- interface ApplicationJson {
30022
- [k: string]: unknown;
30023
- }
30024
- }
30025
- }
30026
- namespace Default {
30027
- namespace Content {
30028
- interface ApplicationJson {
30029
- [k: string]: unknown;
30030
- }
30031
- }
30032
- }
30033
- }
30034
- }
30035
- }
30036
- namespace V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail {
30037
- namespace Post {
30038
- namespace Parameters {
30039
- type Path = {
30040
- contactVerificationId: string;
30041
- };
30042
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
30043
- type Query = {};
30044
- }
30045
- namespace Responses {
30046
- namespace $204 {
30047
- namespace Content {
30048
- type Empty = unknown;
30049
- }
30050
- }
30051
- namespace $400 {
30052
- namespace Content {
30053
- interface ApplicationJson {
30054
- [k: string]: unknown;
30055
- }
30056
- }
30057
- }
30058
- namespace $412 {
30059
- namespace Content {
30060
- interface ApplicationJson {
30061
- [k: string]: unknown;
30062
- }
30063
- }
30064
- }
30065
- namespace $429 {
30066
- namespace Content {
30067
- interface ApplicationJson {
30068
- [k: string]: unknown;
30069
- }
30070
- }
30071
- }
30072
- namespace Default {
30073
- namespace Content {
30074
- interface ApplicationJson {
30075
- [k: string]: unknown;
30076
- }
30077
- }
30078
- }
30079
- }
30080
- }
30081
- }
30082
30083
  }
30083
30084
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.366.0';
1
+ export declare const MittwaldAPIClientVersion = '4.367.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.367.0",
3
+ "version": "4.368.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.367.0",
49
+ "@mittwald/api-client-commons": "^4.368.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.367.0",
53
+ "@mittwald/api-code-generator": "^4.368.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": "0636c8c47acee316dbaba8458267d043d1d1b300"
83
+ "gitHead": "5247f9f1d626b720abf02711c0d99f299edcef0f"
84
84
  }