@mittwald/api-client 4.97.0 → 4.99.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.
@@ -486,34 +486,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
486
486
  /** Mark notification as read. */
487
487
  sreadNotification: this.requestFunctionFactory(descriptors.notificationsReadNotification),
488
488
  };
489
- /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
490
- file = {
491
- /** Create a File. */
492
- createFile: this.requestFunctionFactory(descriptors.fileCreateFile),
493
- /** Get a File's meta. */
494
- getFileMeta: this.requestFunctionFactory(descriptors.fileGetFileMeta),
495
- /** Get a FileUploadToken's rules. */
496
- getFileUploadTokenRules: this.requestFunctionFactory(descriptors.fileGetFileUploadTokenRules),
497
- /** Get a FileUploadType's rules. */
498
- getFileUploadTypeRules: this.requestFunctionFactory(descriptors.fileGetFileUploadTypeRules),
499
- /** Get a File. */
500
- getFile: this.requestFunctionFactory(descriptors.fileGetFile),
501
- /** Get a File with user-friendly url. */
502
- getFileWithName: this.requestFunctionFactory(descriptors.fileGetFileWithName),
503
- };
504
- /** The page insights API allows you to get page insights information. */
505
- pageInsights = {
506
- /** Get detailed performance data for a given domain and path. */
507
- pageinsightsGetPerformanceData: this.requestFunctionFactory(descriptors.pageinsightsGetPerformanceData),
508
- /** Get all data for a given strace. */
509
- pageinsightsGetStraceData: this.requestFunctionFactory(descriptors.pageinsightsGetStraceData),
510
- /** List websites (specified as domain and path) from a project where performance data is available. */
511
- pageinsightsListPerformanceDataForProject: this.requestFunctionFactory(descriptors.pageinsightsListPerformanceDataForProject),
512
- /** Schedule a strace measurement for a single http request. */
513
- pageinsightsScheduleStrace: this.requestFunctionFactory(descriptors.pageinsightsScheduleStrace),
514
- };
515
489
  /** The user API allows you to manage your own user and access information of other users that might be visible to you. */
516
490
  user = {
491
+ /** Update your account information. */
492
+ updateAccount: this.requestFunctionFactory(descriptors.userUpdateAccount),
517
493
  /** Get a PasswordPolicy. */
518
494
  passwordValidationGetPasswordPolicy: this.requestFunctionFactory(descriptors.passwordValidationGetPasswordPolicy),
519
495
  /** Add phone number and start verification process. */
@@ -614,8 +590,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
614
590
  resendVerificationEmail: this.requestFunctionFactory(descriptors.userResendVerificationEmail),
615
591
  /** Request a support code. */
616
592
  supportCodeRequest: this.requestFunctionFactory(descriptors.userSupportCodeRequest),
617
- /** Update your account information. */
618
- updateAccount: this.requestFunctionFactory(descriptors.userUpdateAccount),
619
593
  /** Verify an added Email-Address. */
620
594
  verifyEmail: this.requestFunctionFactory(descriptors.userVerifyEmail),
621
595
  /** Verify phone number. */
@@ -623,6 +597,32 @@ export class MittwaldAPIV2Client extends ApiClientBase {
623
597
  /** Verify your registration. */
624
598
  verifyRegistration: this.requestFunctionFactory(descriptors.userVerifyRegistration),
625
599
  };
600
+ /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
601
+ file = {
602
+ /** Create a File. */
603
+ createFile: this.requestFunctionFactory(descriptors.fileCreateFile),
604
+ /** Get a File's meta. */
605
+ getFileMeta: this.requestFunctionFactory(descriptors.fileGetFileMeta),
606
+ /** Get a FileUploadToken's rules. */
607
+ getFileUploadTokenRules: this.requestFunctionFactory(descriptors.fileGetFileUploadTokenRules),
608
+ /** Get a FileUploadType's rules. */
609
+ getFileUploadTypeRules: this.requestFunctionFactory(descriptors.fileGetFileUploadTypeRules),
610
+ /** Get a File. */
611
+ getFile: this.requestFunctionFactory(descriptors.fileGetFile),
612
+ /** Get a File with user-friendly url. */
613
+ getFileWithName: this.requestFunctionFactory(descriptors.fileGetFileWithName),
614
+ };
615
+ /** The page insights API allows you to get page insights information. */
616
+ pageInsights = {
617
+ /** Get detailed performance data for a given domain and path. */
618
+ pageinsightsGetPerformanceData: this.requestFunctionFactory(descriptors.pageinsightsGetPerformanceData),
619
+ /** Get all data for a given strace. */
620
+ pageinsightsGetStraceData: this.requestFunctionFactory(descriptors.pageinsightsGetStraceData),
621
+ /** List websites (specified as domain and path) from a project where performance data is available. */
622
+ pageinsightsListPerformanceDataForProject: this.requestFunctionFactory(descriptors.pageinsightsListPerformanceDataForProject),
623
+ /** Schedule a strace measurement for a single http request. */
624
+ pageinsightsScheduleStrace: this.requestFunctionFactory(descriptors.pageinsightsScheduleStrace),
625
+ };
626
626
  /** The project API allows you to manage your projects, and also any kinds of user memberships concerning these projects. */
627
627
  project = {
628
628
  /** Accept a ProjectInvite. */
@@ -814,6 +814,12 @@ export const newsletterSubscribeUser = {
814
814
  method: "POST",
815
815
  operationId: "newsletter-subscribe-user",
816
816
  };
817
+ /** Update your account information. */
818
+ export const userUpdateAccount = {
819
+ path: "/v2/users/self/personal-information",
820
+ method: "PUT",
821
+ operationId: "user-update-account",
822
+ };
817
823
  /** Create a DNSZone. */
818
824
  export const dnsCreateDnsZone = {
819
825
  path: "/v2/dns-zones",
@@ -1990,12 +1996,6 @@ export const userSupportCodeRequest = {
1990
1996
  method: "GET",
1991
1997
  operationId: "user-support-code-request",
1992
1998
  };
1993
- /** Update your account information. */
1994
- export const userUpdateAccount = {
1995
- path: "/v2/users/self/personal-information",
1996
- method: "PUT",
1997
- operationId: "user-update-account",
1998
- };
1999
1999
  /** Verify an added Email-Address. */
2000
2000
  export const userVerifyEmail = {
2001
2001
  path: "/v2/users/self/credentials/email/actions/verify-email",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.96.0';
1
+ export const MittwaldAPIClientVersion = '4.98.0';