@mittwald/api-client 0.0.0-development-39d23c6-20260203 → 0.0.0-development-137cd36-20260225

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.
@@ -390,8 +390,6 @@ const buildUserApi = (baseClient) => ({
390
390
  getPasswordUpdatedAt: new ApiCallAsyncResourceFactory(descriptors.userGetPasswordUpdatedAt, baseClient.user.getPasswordUpdatedAt).getApiResource,
391
391
  /** Get personalized settings. */
392
392
  getPersonalizedSettings: new ApiCallAsyncResourceFactory(descriptors.userGetPersonalizedSettings, baseClient.user.getPersonalizedSettings).getApiResource,
393
- /** Get poll settings for the specified user. */
394
- getPollStatus: new ApiCallAsyncResourceFactory(descriptors.userGetPollStatus, baseClient.user.getPollStatus).getApiResource,
395
393
  /** Get a specific session. */
396
394
  getSession: new ApiCallAsyncResourceFactory(descriptors.userGetSession, baseClient.user.getSession).getApiResource,
397
395
  /** Get profile information for a user. */
@@ -160,12 +160,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
160
160
  listStacks: this.requestFunctionFactory(descriptors.containerListStacks),
161
161
  /** List Volumes belonging to a Project. */
162
162
  listVolumes: this.requestFunctionFactory(descriptors.containerListVolumes),
163
- /** Pulls the latest version of the Service's image and optionally recreates the Service. */
163
+ /** Pull image and recreate */
164
164
  pullImageForService: this.requestFunctionFactory(descriptors.containerPullImageForService),
165
165
  /** Recreate a Service. */
166
166
  recreateService: this.requestFunctionFactory(descriptors.containerRecreateService),
167
167
  /** Restart a started Service. */
168
168
  restartService: this.requestFunctionFactory(descriptors.containerRestartService),
169
+ /** Set an update schedule for a Stack. */
170
+ setStackUpdateSchedule: this.requestFunctionFactory(descriptors.containerSetStackUpdateSchedule),
169
171
  /** Start a stopped Service. */
170
172
  startService: this.requestFunctionFactory(descriptors.containerStartService),
171
173
  /** Stop a started Service. */
@@ -730,7 +732,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
730
732
  confirmPasswordReset: this.requestFunctionFactory(descriptors.userConfirmPasswordReset),
731
733
  /** List all of your ApiTokens. */
732
734
  listApiTokens: this.requestFunctionFactory(descriptors.userListApiTokens),
733
- /** Store a new ApiToken. */
735
+ /** Create a new ApiToken. */
734
736
  createApiToken: this.requestFunctionFactory(descriptors.userCreateApiToken),
735
737
  /** Submit your user feedback. */
736
738
  createFeedback: this.requestFunctionFactory(descriptors.userCreateFeedback),
@@ -758,10 +760,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
758
760
  getPersonalizedSettings: this.requestFunctionFactory(descriptors.userGetPersonalizedSettings),
759
761
  /** Update personalized GUI settings. */
760
762
  updatePersonalizedSettings: this.requestFunctionFactory(descriptors.userUpdatePersonalizedSettings),
761
- /** Get poll settings for the specified user. */
762
- getPollStatus: this.requestFunctionFactory(descriptors.userGetPollStatus),
763
- /** Store new or update poll settings. */
764
- postPollStatus: this.requestFunctionFactory(descriptors.userPostPollStatus),
765
763
  /** Get a specific session. */
766
764
  getSession: this.requestFunctionFactory(descriptors.userGetSession),
767
765
  /** Terminate a specific Session. */
@@ -424,7 +424,7 @@ export const containerListVolumes = {
424
424
  method: "GET",
425
425
  operationId: "container-list-volumes",
426
426
  };
427
- /** Pulls the latest version of the Service's image and optionally recreates the Service. */
427
+ /** Pull image and recreate */
428
428
  export const containerPullImageForService = {
429
429
  path: "/v2/stacks/{stackId}/services/{serviceId}/actions/pull",
430
430
  method: "POST",
@@ -442,6 +442,12 @@ export const containerRestartService = {
442
442
  method: "POST",
443
443
  operationId: "container-restart-service",
444
444
  };
445
+ /** Set an update schedule for a Stack. */
446
+ export const containerSetStackUpdateSchedule = {
447
+ path: "/v2/stacks/{stackId}/update-schedule",
448
+ method: "PUT",
449
+ operationId: "container-set-stack-update-schedule",
450
+ };
445
451
  /** Start a stopped Service. */
446
452
  export const containerStartService = {
447
453
  path: "/v2/stacks/{stackId}/services/{serviceId}/actions/start",
@@ -2500,7 +2506,7 @@ export const userListApiTokens = {
2500
2506
  method: "GET",
2501
2507
  operationId: "user-list-api-tokens",
2502
2508
  };
2503
- /** Store a new ApiToken. */
2509
+ /** Create a new ApiToken. */
2504
2510
  export const userCreateApiToken = {
2505
2511
  path: "/v2/users/self/api-tokens",
2506
2512
  method: "POST",
@@ -2584,18 +2590,6 @@ export const userUpdatePersonalizedSettings = {
2584
2590
  method: "PUT",
2585
2591
  operationId: "user-update-personalized-settings",
2586
2592
  };
2587
- /** Get poll settings for the specified user. */
2588
- export const userGetPollStatus = {
2589
- path: "/v2/poll-settings/{userId}",
2590
- method: "GET",
2591
- operationId: "user-get-poll-status",
2592
- };
2593
- /** Store new or update poll settings. */
2594
- export const userPostPollStatus = {
2595
- path: "/v2/poll-settings/{userId}",
2596
- method: "POST",
2597
- operationId: "user-post-poll-status",
2598
- };
2599
2593
  /** Get a specific session. */
2600
2594
  export const userGetSession = {
2601
2595
  path: "/v2/users/self/sessions/{tokenId}",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '0.0.0-development-2f042ce-20260202';
1
+ export const MittwaldAPIClientVersion = '4.306.0';
@@ -126,6 +126,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
126
126
  disabled: boolean;
127
127
  id: string;
128
128
  installationPath: string;
129
+ lastError?: string | undefined;
129
130
  linkedDatabases: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
130
131
  lockedBy?: {
131
132
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
@@ -275,6 +276,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
275
276
  } | undefined;
276
277
  queryParameters?: {
277
278
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
279
+ versionRange?: string | undefined;
278
280
  recommended?: boolean | undefined;
279
281
  } | undefined;
280
282
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[]>;
@@ -507,6 +509,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
507
509
  prefix: string;
508
510
  projectId: string;
509
511
  services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
512
+ updateSchedule?: {
513
+ cron: string;
514
+ timezone?: string;
515
+ } | null | undefined;
510
516
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
511
517
  }>;
512
518
  /** Get a Registry. */
@@ -2955,20 +2961,6 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2955
2961
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2956
2962
  settingsString?: string | undefined;
2957
2963
  }>;
2958
- /** Get poll settings for the specified user. */
2959
- getPollStatus: (conf: {
2960
- userId: string;
2961
- headers?: {
2962
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2963
- } | undefined;
2964
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2965
- completedAt?: string | undefined;
2966
- dontShowUntil?: string | undefined;
2967
- ignoredAt?: string | undefined;
2968
- shouldShow: boolean;
2969
- status: "completed" | "muted" | "ignored" | "new";
2970
- userId: string;
2971
- }>;
2972
2964
  /** Get a specific session. */
2973
2965
  getSession: (conf: {
2974
2966
  tokenId: string;
@@ -831,8 +831,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
831
831
  };
832
832
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
833
833
  [x: string]: unknown;
834
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
835
+ [x: string]: unknown;
834
836
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
835
837
  [x: string]: unknown;
838
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
839
+ [x: string]: unknown;
836
840
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
837
841
  headers?: Partial<{
838
842
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -844,8 +848,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
844
848
  };
845
849
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
846
850
  [x: string]: unknown;
851
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
852
+ [x: string]: unknown;
847
853
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
848
854
  [x: string]: unknown;
855
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
856
+ [x: string]: unknown;
849
857
  }, 429, "application/json">>>;
850
858
  /** Get an App. */
851
859
  getApp: (request: {
@@ -932,6 +940,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
932
940
  disabled: boolean;
933
941
  id: string;
934
942
  installationPath: string;
943
+ lastError?: string | undefined;
935
944
  linkedDatabases: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
936
945
  lockedBy?: {
937
946
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
@@ -972,6 +981,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
972
981
  disabled: boolean;
973
982
  id: string;
974
983
  installationPath: string;
984
+ lastError?: string | undefined;
975
985
  linkedDatabases: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
976
986
  lockedBy?: {
977
987
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
@@ -1744,6 +1754,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1744
1754
  } | undefined;
1745
1755
  queryParameters?: {
1746
1756
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1757
+ versionRange?: string | undefined;
1747
1758
  recommended?: boolean | undefined;
1748
1759
  } | undefined;
1749
1760
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -1756,6 +1767,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1756
1767
  };
1757
1768
  } & {
1758
1769
  queryParameters: {
1770
+ versionRange?: string | undefined;
1759
1771
  recommended?: boolean | undefined;
1760
1772
  } & Partial<{
1761
1773
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -1778,6 +1790,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1778
1790
  };
1779
1791
  } & {
1780
1792
  queryParameters: {
1793
+ versionRange?: string | undefined;
1781
1794
  recommended?: boolean | undefined;
1782
1795
  } & Partial<{
1783
1796
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -3569,6 +3582,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3569
3582
  prefix: string;
3570
3583
  projectId: string;
3571
3584
  services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
3585
+ updateSchedule?: {
3586
+ cron: string;
3587
+ timezone?: string;
3588
+ } | null | undefined;
3572
3589
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
3573
3590
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3574
3591
  [x: string]: unknown;
@@ -3599,6 +3616,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3599
3616
  prefix: string;
3600
3617
  projectId: string;
3601
3618
  services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
3619
+ updateSchedule?: {
3620
+ cron: string;
3621
+ timezone?: string;
3622
+ } | null | undefined;
3602
3623
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
3603
3624
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3604
3625
  [x: string]: unknown;
@@ -3677,6 +3698,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3677
3698
  prefix: string;
3678
3699
  projectId: string;
3679
3700
  services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
3701
+ updateSchedule?: {
3702
+ cron: string;
3703
+ timezone?: string;
3704
+ } | null | undefined;
3680
3705
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
3681
3706
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3682
3707
  [x: string]: unknown;
@@ -3718,6 +3743,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3718
3743
  prefix: string;
3719
3744
  projectId: string;
3720
3745
  services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
3746
+ updateSchedule?: {
3747
+ cron: string;
3748
+ timezone?: string;
3749
+ } | null | undefined;
3721
3750
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
3722
3751
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3723
3752
  [x: string]: unknown;
@@ -3804,6 +3833,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3804
3833
  prefix: string;
3805
3834
  projectId: string;
3806
3835
  services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
3836
+ updateSchedule?: {
3837
+ cron: string;
3838
+ timezone?: string;
3839
+ } | null | undefined;
3807
3840
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
3808
3841
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3809
3842
  [x: string]: unknown;
@@ -3847,6 +3880,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3847
3880
  prefix: string;
3848
3881
  projectId: string;
3849
3882
  services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
3883
+ updateSchedule?: {
3884
+ cron: string;
3885
+ timezone?: string;
3886
+ } | null | undefined;
3850
3887
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[] | undefined;
3851
3888
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3852
3889
  [x: string]: unknown;
@@ -4795,7 +4832,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4795
4832
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4796
4833
  [x: string]: unknown;
4797
4834
  }, 500, "application/json">>>;
4798
- /** Pulls the latest version of the Service's image and optionally recreates the Service. */
4835
+ /** Pull image and recreate */
4799
4836
  pullImageForService: (request: {
4800
4837
  stackId: string;
4801
4838
  serviceId: string;
@@ -5000,6 +5037,86 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5000
5037
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5001
5038
  [x: string]: unknown;
5002
5039
  }, 500, "application/json">>>;
5040
+ /** Set an update schedule for a Stack. */
5041
+ setStackUpdateSchedule: (request: {
5042
+ stackId: string;
5043
+ data?: {
5044
+ updateSchedule?: {
5045
+ cron: string;
5046
+ timezone?: string | undefined;
5047
+ } | undefined;
5048
+ } | undefined;
5049
+ headers?: {
5050
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5051
+ "x-access-token"?: string | undefined;
5052
+ } | undefined;
5053
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5054
+ data: {
5055
+ updateSchedule?: {
5056
+ cron: string;
5057
+ timezone?: string;
5058
+ } | undefined;
5059
+ };
5060
+ } & {
5061
+ pathParameters: {
5062
+ stackId: string;
5063
+ };
5064
+ } & {
5065
+ headers?: Partial<{
5066
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5067
+ }>;
5068
+ } & {
5069
+ headers: {
5070
+ "x-access-token"?: string | undefined;
5071
+ } & Partial<{
5072
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5073
+ }>;
5074
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5075
+ [x: string]: unknown;
5076
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5077
+ [x: string]: unknown;
5078
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5079
+ [x: string]: unknown;
5080
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5081
+ [x: string]: unknown;
5082
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
5083
+ [x: string]: unknown;
5084
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5085
+ [x: string]: unknown;
5086
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5087
+ data: {
5088
+ updateSchedule?: {
5089
+ cron: string;
5090
+ timezone?: string;
5091
+ } | undefined;
5092
+ };
5093
+ } & {
5094
+ pathParameters: {
5095
+ stackId: string;
5096
+ };
5097
+ } & {
5098
+ headers?: Partial<{
5099
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5100
+ }>;
5101
+ } & {
5102
+ headers: {
5103
+ "x-access-token"?: string | undefined;
5104
+ } & Partial<{
5105
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5106
+ }>;
5107
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5108
+ [x: string]: unknown;
5109
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5110
+ [x: string]: unknown;
5111
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5112
+ [x: string]: unknown;
5113
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5114
+ [x: string]: unknown;
5115
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
5116
+ [x: string]: unknown;
5117
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5118
+ [x: string]: unknown;
5119
+ }, 500, "application/json">>>;
5003
5120
  /** Start a stopped Service. */
5004
5121
  startService: (request: {
5005
5122
  stackId: string;
@@ -8072,6 +8189,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8072
8189
  [x: string]: unknown;
8073
8190
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8074
8191
  [x: string]: unknown;
8192
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
8193
+ [x: string]: unknown;
8075
8194
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8076
8195
  [x: string]: unknown;
8077
8196
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -8094,6 +8213,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8094
8213
  [x: string]: unknown;
8095
8214
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
8096
8215
  [x: string]: unknown;
8216
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
8217
+ [x: string]: unknown;
8097
8218
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8098
8219
  [x: string]: unknown;
8099
8220
  }, 429, "application/json">>>;
@@ -16826,6 +16947,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16826
16947
  [x: string]: unknown;
16827
16948
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
16828
16949
  [x: string]: unknown;
16950
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
16951
+ [x: string]: unknown;
16829
16952
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
16830
16953
  data: {
16831
16954
  name: string;
@@ -16847,6 +16970,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16847
16970
  [x: string]: unknown;
16848
16971
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
16849
16972
  [x: string]: unknown;
16973
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
16974
+ [x: string]: unknown;
16850
16975
  }, 429, "application/json">>>;
16851
16976
  /** Get a DNSZone. */
16852
16977
  dnsGetDnsZone: (request: {
@@ -18048,6 +18173,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18048
18173
  updateDomainContact: (request: {
18049
18174
  data: {
18050
18175
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18176
+ avoidEmailConfirmation?: boolean | undefined;
18051
18177
  };
18052
18178
  domainId: string;
18053
18179
  contact: "owner";
@@ -18057,6 +18183,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18057
18183
  } | undefined;
18058
18184
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
18059
18185
  data: {
18186
+ avoidEmailConfirmation?: boolean | undefined;
18060
18187
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18061
18188
  };
18062
18189
  } & {
@@ -18084,6 +18211,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18084
18211
  [x: string]: unknown;
18085
18212
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
18086
18213
  data: {
18214
+ avoidEmailConfirmation?: boolean | undefined;
18087
18215
  contact: [import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleField[]];
18088
18216
  };
18089
18217
  } & {
@@ -22524,7 +22652,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22524
22652
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.SignupApiToken[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22525
22653
  [x: string]: unknown;
22526
22654
  }, 429, "application/json">>>;
22527
- /** Store a new ApiToken. */
22655
+ /** Create a new ApiToken. */
22528
22656
  createApiToken: (request: {
22529
22657
  data: {
22530
22658
  description: string;
@@ -23247,118 +23375,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23247
23375
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23248
23376
  [x: string]: unknown;
23249
23377
  }, 429, "application/json">>>;
23250
- /** Get poll settings for the specified user. */
23251
- getPollStatus: (request: {
23252
- userId: string;
23253
- headers?: {
23254
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23255
- } | undefined;
23256
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23257
- headers?: Partial<{
23258
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23259
- }>;
23260
- } & {
23261
- pathParameters: {
23262
- userId: string;
23263
- };
23264
- }, import("@mittwald/api-client-commons").Response<{
23265
- completedAt?: string | undefined;
23266
- dontShowUntil?: string | undefined;
23267
- ignoredAt?: string | undefined;
23268
- shouldShow: boolean;
23269
- status: "completed" | "muted" | "ignored" | "new";
23270
- userId: string;
23271
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23272
- [x: string]: unknown;
23273
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23274
- [x: string]: unknown;
23275
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23276
- [x: string]: unknown;
23277
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23278
- headers?: Partial<{
23279
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23280
- }>;
23281
- } & {
23282
- pathParameters: {
23283
- userId: string;
23284
- };
23285
- }, import("@mittwald/api-client-commons").Response<{
23286
- completedAt?: string | undefined;
23287
- dontShowUntil?: string | undefined;
23288
- ignoredAt?: string | undefined;
23289
- shouldShow: boolean;
23290
- status: "completed" | "muted" | "ignored" | "new";
23291
- userId: string;
23292
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23293
- [x: string]: unknown;
23294
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23295
- [x: string]: unknown;
23296
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23297
- [x: string]: unknown;
23298
- }, 429, "application/json">>>;
23299
- /** Store new or update poll settings. */
23300
- postPollStatus: (request: {
23301
- data: {
23302
- status: "completed" | "muted" | "ignored";
23303
- userId: string;
23304
- };
23305
- userId: string;
23306
- headers?: {
23307
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23308
- } | undefined;
23309
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23310
- data: {
23311
- status: "completed" | "muted" | "ignored";
23312
- userId: string;
23313
- };
23314
- } & {
23315
- pathParameters: {
23316
- userId: string;
23317
- };
23318
- } & {
23319
- headers?: Partial<{
23320
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23321
- }>;
23322
- }, import("@mittwald/api-client-commons").Response<{
23323
- completedAt?: string | undefined;
23324
- dontShowUntil?: string | undefined;
23325
- ignoredAt?: string | undefined;
23326
- shouldShow: boolean;
23327
- status: "completed" | "muted" | "ignored" | "new";
23328
- userId: string;
23329
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23330
- [x: string]: unknown;
23331
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23332
- [x: string]: unknown;
23333
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23334
- [x: string]: unknown;
23335
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23336
- data: {
23337
- status: "completed" | "muted" | "ignored";
23338
- userId: string;
23339
- };
23340
- } & {
23341
- pathParameters: {
23342
- userId: string;
23343
- };
23344
- } & {
23345
- headers?: Partial<{
23346
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23347
- }>;
23348
- }, import("@mittwald/api-client-commons").Response<{
23349
- completedAt?: string | undefined;
23350
- dontShowUntil?: string | undefined;
23351
- ignoredAt?: string | undefined;
23352
- shouldShow: boolean;
23353
- status: "completed" | "muted" | "ignored" | "new";
23354
- userId: string;
23355
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23356
- [x: string]: unknown;
23357
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23358
- [x: string]: unknown;
23359
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23360
- [x: string]: unknown;
23361
- }, 429, "application/json">>>;
23362
23378
  /** Get a specific session. */
23363
23379
  getSession: (request: {
23364
23380
  tokenId: string;
@@ -26361,7 +26377,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26361
26377
  exists: boolean;
26362
26378
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26363
26379
  [x: string]: unknown;
26364
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26380
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26365
26381
  data: {
26366
26382
  city: string;
26367
26383
  country: string;
@@ -26376,7 +26392,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26376
26392
  exists: boolean;
26377
26393
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26378
26394
  [x: string]: unknown;
26379
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
26395
+ }, 429, "application/json">>>;
26380
26396
  /** Check if a company exists. */
26381
26397
  verificationVerifyCompany: (request: {
26382
26398
  data: {
@@ -26400,7 +26416,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26400
26416
  } & Partial<{
26401
26417
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26402
26418
  }>;
26403
- }, import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
26419
+ }, import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
26404
26420
  exists: boolean;
26405
26421
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26406
26422
  [x: string]: unknown;
@@ -26418,7 +26434,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26418
26434
  } & Partial<{
26419
26435
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26420
26436
  }>;
26421
- }, import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
26437
+ }, import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
26422
26438
  exists: boolean;
26423
26439
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26424
26440
  [x: string]: unknown;