@mittwald/api-client 2.0.20 → 2.0.21
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.
- package/dist/cjs/generated/v2/client.d.ts +85 -84
- package/dist/cjs/generated/v2/client.js +4 -4
- package/dist/cjs/generated/v2/descriptors.d.ts +4 -4
- package/dist/cjs/generated/v2/descriptors.js +16 -16
- package/dist/cjs/generated/v2/types.d.ts +86 -86
- package/dist/esm/generated/v2/client.d.ts +85 -84
- package/dist/esm/generated/v2/client.js +4 -4
- package/dist/esm/generated/v2/descriptors.d.ts +4 -4
- package/dist/esm/generated/v2/descriptors.js +12 -12
- package/dist/esm/generated/v2/types.d.ts +86 -86
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -5076,6 +5076,59 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5076
5076
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5077
5077
|
[x: string]: unknown;
|
|
5078
5078
|
}, 400, "application/json">>>;
|
|
5079
|
+
/** updates srv-records for a specific zone */
|
|
5080
|
+
dnsRecordSrvSet: (request: {
|
|
5081
|
+
pathParameters: {
|
|
5082
|
+
zoneId: string;
|
|
5083
|
+
};
|
|
5084
|
+
headers?: {
|
|
5085
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5086
|
+
"x-access-token"?: string | undefined;
|
|
5087
|
+
} | undefined;
|
|
5088
|
+
} | {
|
|
5089
|
+
data: {
|
|
5090
|
+
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
5091
|
+
settings: {
|
|
5092
|
+
ttl?: {
|
|
5093
|
+
seconds: number;
|
|
5094
|
+
} | {
|
|
5095
|
+
auto: boolean;
|
|
5096
|
+
} | undefined;
|
|
5097
|
+
};
|
|
5098
|
+
};
|
|
5099
|
+
pathParameters: {
|
|
5100
|
+
zoneId: string;
|
|
5101
|
+
};
|
|
5102
|
+
headers?: {
|
|
5103
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5104
|
+
"x-access-token"?: string | undefined;
|
|
5105
|
+
} | undefined;
|
|
5106
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
|
|
5107
|
+
headers?: Partial<{
|
|
5108
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5109
|
+
}> | undefined;
|
|
5110
|
+
} | {
|
|
5111
|
+
data: {
|
|
5112
|
+
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
5113
|
+
settings: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
5114
|
+
};
|
|
5115
|
+
}) & {
|
|
5116
|
+
pathParameters: {
|
|
5117
|
+
zoneId: string;
|
|
5118
|
+
};
|
|
5119
|
+
} & {
|
|
5120
|
+
headers?: Partial<{
|
|
5121
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5122
|
+
}> | undefined;
|
|
5123
|
+
} & {
|
|
5124
|
+
headers: {
|
|
5125
|
+
"x-access-token"?: string | undefined;
|
|
5126
|
+
} & Partial<{
|
|
5127
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5128
|
+
}>;
|
|
5129
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5130
|
+
[x: string]: unknown;
|
|
5131
|
+
}, 400, "application/json">>>;
|
|
5079
5132
|
/** updates txt-records for a specific zone */
|
|
5080
5133
|
dnsRecordTxtSet: (request: {
|
|
5081
5134
|
pathParameters: {
|
|
@@ -5129,6 +5182,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5129
5182
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5130
5183
|
[x: string]: unknown;
|
|
5131
5184
|
}, 400, "application/json">>>;
|
|
5185
|
+
/** creates a sub zone for a given dns zone */
|
|
5186
|
+
dnsSubZoneCreate: (request: {
|
|
5187
|
+
data: {
|
|
5188
|
+
name: string;
|
|
5189
|
+
parentZoneId: string;
|
|
5190
|
+
};
|
|
5191
|
+
headers?: {
|
|
5192
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5193
|
+
"x-access-token"?: string | undefined;
|
|
5194
|
+
} | undefined;
|
|
5195
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5196
|
+
data: {
|
|
5197
|
+
name: string;
|
|
5198
|
+
parentZoneId: string;
|
|
5199
|
+
};
|
|
5200
|
+
} & {
|
|
5201
|
+
headers?: Partial<{
|
|
5202
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5203
|
+
}> | undefined;
|
|
5204
|
+
} & {
|
|
5205
|
+
headers: {
|
|
5206
|
+
"x-access-token"?: string | undefined;
|
|
5207
|
+
} & Partial<{
|
|
5208
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5209
|
+
}>;
|
|
5210
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5211
|
+
id: string;
|
|
5212
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5213
|
+
[x: string]: unknown;
|
|
5214
|
+
}, 400, "application/json">>>;
|
|
5132
5215
|
/** gets a specific zone */
|
|
5133
5216
|
dnsZoneGetSpecific: (request: {
|
|
5134
5217
|
pathParameters: {
|
|
@@ -5525,7 +5608,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5525
5608
|
domainId: string;
|
|
5526
5609
|
handles: {
|
|
5527
5610
|
adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable | undefined;
|
|
5528
|
-
ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
|
|
5611
|
+
ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable; /** Mark all notifications as read. */
|
|
5529
5612
|
};
|
|
5530
5613
|
hasAuthCode: boolean;
|
|
5531
5614
|
nameservers: [string, string, ...string[]];
|
|
@@ -6047,89 +6130,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6047
6130
|
}, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6048
6131
|
[x: string]: unknown;
|
|
6049
6132
|
}, 404, "application/json">>>;
|
|
6050
|
-
/** updates srv-records for a specific zone */
|
|
6051
|
-
dnsRecordSrvSet: (request: {
|
|
6052
|
-
pathParameters: {
|
|
6053
|
-
zoneId: string;
|
|
6054
|
-
};
|
|
6055
|
-
headers?: {
|
|
6056
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6057
|
-
"x-access-token"?: string | undefined;
|
|
6058
|
-
} | undefined;
|
|
6059
|
-
} | {
|
|
6060
|
-
data: {
|
|
6061
|
-
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
6062
|
-
settings: {
|
|
6063
|
-
ttl?: {
|
|
6064
|
-
seconds: number;
|
|
6065
|
-
} | {
|
|
6066
|
-
auto: boolean;
|
|
6067
|
-
} | undefined;
|
|
6068
|
-
};
|
|
6069
|
-
};
|
|
6070
|
-
pathParameters: {
|
|
6071
|
-
zoneId: string;
|
|
6072
|
-
};
|
|
6073
|
-
headers?: {
|
|
6074
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6075
|
-
"x-access-token"?: string | undefined;
|
|
6076
|
-
} | undefined;
|
|
6077
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
|
|
6078
|
-
headers?: Partial<{
|
|
6079
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6080
|
-
}> | undefined;
|
|
6081
|
-
} | {
|
|
6082
|
-
data: {
|
|
6083
|
-
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
6084
|
-
settings: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
6085
|
-
};
|
|
6086
|
-
}) & {
|
|
6087
|
-
pathParameters: {
|
|
6088
|
-
zoneId: string;
|
|
6089
|
-
};
|
|
6090
|
-
} & {
|
|
6091
|
-
headers?: Partial<{
|
|
6092
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6093
|
-
}> | undefined;
|
|
6094
|
-
} & {
|
|
6095
|
-
headers: {
|
|
6096
|
-
"x-access-token"?: string | undefined;
|
|
6097
|
-
} & Partial<{
|
|
6098
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6099
|
-
}>;
|
|
6100
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6101
|
-
[x: string]: unknown;
|
|
6102
|
-
}, 400, "application/json">>>;
|
|
6103
|
-
/** creates a sub zone for a given dns zone */
|
|
6104
|
-
dnsSubZoneCreate: (request: {
|
|
6105
|
-
data: {
|
|
6106
|
-
name: string;
|
|
6107
|
-
parentZoneId: string;
|
|
6108
|
-
};
|
|
6109
|
-
headers?: {
|
|
6110
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6111
|
-
"x-access-token"?: string | undefined;
|
|
6112
|
-
} | undefined;
|
|
6113
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6114
|
-
data: {
|
|
6115
|
-
name: string;
|
|
6116
|
-
parentZoneId: string;
|
|
6117
|
-
};
|
|
6118
|
-
} & {
|
|
6119
|
-
headers?: Partial<{
|
|
6120
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6121
|
-
}> | undefined;
|
|
6122
|
-
} & {
|
|
6123
|
-
headers: {
|
|
6124
|
-
"x-access-token"?: string | undefined;
|
|
6125
|
-
} & Partial<{
|
|
6126
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6127
|
-
}>;
|
|
6128
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6129
|
-
id: string;
|
|
6130
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6131
|
-
[x: string]: unknown;
|
|
6132
|
-
}, 400, "application/json">>>;
|
|
6133
6133
|
};
|
|
6134
6134
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
6135
6135
|
readonly file: {
|
|
@@ -6591,6 +6591,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6591
6591
|
address: string;
|
|
6592
6592
|
autoResponder: {
|
|
6593
6593
|
active: boolean;
|
|
6594
|
+
/** Store a new ssh-key. */
|
|
6594
6595
|
expiresAt?: string | undefined;
|
|
6595
6596
|
message: string;
|
|
6596
6597
|
startsAt?: string | undefined;
|
|
@@ -311,8 +311,12 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
311
311
|
dnsRecordMxSetCustom: this.requestFunctionFactory(descriptors.dnsRecordMxSetCustom),
|
|
312
312
|
/** sets mx-records to managed for a specific zone */
|
|
313
313
|
dnsRecordMxSetManaged: this.requestFunctionFactory(descriptors.dnsRecordMxSetManaged),
|
|
314
|
+
/** updates srv-records for a specific zone */
|
|
315
|
+
dnsRecordSrvSet: this.requestFunctionFactory(descriptors.dnsRecordSrvSet),
|
|
314
316
|
/** updates txt-records for a specific zone */
|
|
315
317
|
dnsRecordTxtSet: this.requestFunctionFactory(descriptors.dnsRecordTxtSet),
|
|
318
|
+
/** creates a sub zone for a given dns zone */
|
|
319
|
+
dnsSubZoneCreate: this.requestFunctionFactory(descriptors.dnsSubZoneCreate),
|
|
316
320
|
/** gets a specific zone */
|
|
317
321
|
dnsZoneGetSpecific: this.requestFunctionFactory(descriptors.dnsZoneGetSpecific),
|
|
318
322
|
/** gets all dns zones by project id */
|
|
@@ -369,10 +373,6 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
|
|
|
369
373
|
ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
|
|
370
374
|
/** Update an Ingresses tls settings. */
|
|
371
375
|
ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
|
|
372
|
-
/** updates srv-records for a specific zone */
|
|
373
|
-
dnsRecordSrvSet: this.requestFunctionFactory(descriptors.dnsRecordSrvSet),
|
|
374
|
-
/** creates a sub zone for a given dns zone */
|
|
375
|
-
dnsSubZoneCreate: this.requestFunctionFactory(descriptors.dnsSubZoneCreate),
|
|
376
376
|
};
|
|
377
377
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
378
378
|
this.file = {
|
|
@@ -257,8 +257,12 @@ export declare const dnsRecordCnameSet: OpenAPIOperation<RequestType<Simplify<Mi
|
|
|
257
257
|
export declare const dnsRecordMxSetCustom: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
258
258
|
/** sets mx-records to managed for a specific zone */
|
|
259
259
|
export declare const dnsRecordMxSetManaged: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
260
|
+
/** updates srv-records for a specific zone */
|
|
261
|
+
export declare const dnsRecordSrvSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
260
262
|
/** updates txt-records for a specific zone */
|
|
261
263
|
export declare const dnsRecordTxtSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
264
|
+
/** creates a sub zone for a given dns zone */
|
|
265
|
+
export declare const dnsSubZoneCreate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
262
266
|
/** gets a specific zone */
|
|
263
267
|
export declare const dnsZoneGetSpecific: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
264
268
|
/** gets all dns zones by project id */
|
|
@@ -595,7 +599,3 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
|
|
|
595
599
|
export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
596
600
|
/** Verify your registration. */
|
|
597
601
|
export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
598
|
-
/** updates srv-records for a specific zone */
|
|
599
|
-
export declare const dnsRecordSrvSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
600
|
-
/** creates a sub zone for a given dns zone */
|
|
601
|
-
export declare const dnsSubZoneCreate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appReconcileDetectedApps = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetMissingDependenciesForAppinstallation = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
|
|
4
4
|
exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = exports.conversationCreateConversation = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
5
|
+
exports.domainResendDomainEmail = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainVerifyDomainOwnership = exports.domainGetSpecificDomainOwnership = exports.domainGetScreenshotForDomain = exports.domainGetHandleFields = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainDeclareProcessChangeHandles = exports.domainDeclareProcessChangeAuthcode = exports.domainDeclareNameservers = exports.domainCreateAuthcode2ForDomain = exports.domainCreateAuthcodeForDomain = exports.domainCheckDomainAvailability = exports.domainChangeProjectOfDomain = exports.domainChangeOwnercOfDomain = exports.domainAbortDeclareProcess = exports.dnsZonesForProject = exports.dnsZoneGetSpecific = exports.dnsSubZoneCreate = exports.dnsRecordTxtSet = exports.dnsRecordSrvSet = exports.dnsRecordMxSetManaged = exports.dnsRecordMxSetCustom = exports.dnsRecordCnameSet = exports.dnsRecordAsetManagedByIngress = exports.dnsRecordAsetCustom = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
|
|
6
|
+
exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterSubscribeUser = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailProjectsettingUpdateWhitelist = exports.mailProjectsettingUpdateBlacklist = exports.mailProjectsettingGetSpecific = exports.mailMailaddressUpdateSpamprotection = exports.mailMailaddressUpdateQuota = exports.mailMailaddressUpdatePassword = exports.mailMailaddressUpdateForwardaddresses = exports.mailMailaddressUpdateCatchall = exports.mailMailaddressUpdateAutoresponder = exports.mailMailaddressUpdateAddress = exports.mailMailaddressDelete = exports.mailMailaddressGetSpecific = exports.mailMailaddressCreate = exports.mailMailaddressList = exports.mailDeliveryboxUpdatePassword = exports.mailDeliveryboxUpdateDescription = exports.mailDeliveryboxDelete = exports.mailDeliveryboxGetSpecific = exports.mailDeliveryboxCreate = exports.mailDeliveryboxList = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressTls = exports.ingressRequestAcmeCertificateIssuance = exports.ingressPaths = exports.ingressListForProject = exports.ingressListAccessible = exports.ingressDelete = exports.ingressGetSpecific = exports.ingressCreate = exports.fileGetFile = exports.fileGetFileTypeRules = exports.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = void 0;
|
|
7
|
+
exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateLegacyTariffChange = exports.redirectusCreateRelocation = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = void 0;
|
|
8
|
+
exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = void 0;
|
|
9
9
|
/** execute a runtime concerning action on a specific `AppInstallation` */
|
|
10
10
|
exports.appExecuteAction = {
|
|
11
11
|
path: "/v2/appinstallations/{appInstallationId}/actions/{action}",
|
|
@@ -768,12 +768,24 @@ exports.dnsRecordMxSetManaged = {
|
|
|
768
768
|
method: "POST",
|
|
769
769
|
operationId: "dns-record-mx-set-managed",
|
|
770
770
|
};
|
|
771
|
+
/** updates srv-records for a specific zone */
|
|
772
|
+
exports.dnsRecordSrvSet = {
|
|
773
|
+
path: "/v2/dns/zones/{zoneId}/recordset/srv",
|
|
774
|
+
method: "PATCH",
|
|
775
|
+
operationId: "dns-record-srv-set",
|
|
776
|
+
};
|
|
771
777
|
/** updates txt-records for a specific zone */
|
|
772
778
|
exports.dnsRecordTxtSet = {
|
|
773
779
|
path: "/v2/dns/zones/{zoneId}/recordset/txt",
|
|
774
780
|
method: "PUT",
|
|
775
781
|
operationId: "dns-record-txt-set",
|
|
776
782
|
};
|
|
783
|
+
/** creates a sub zone for a given dns zone */
|
|
784
|
+
exports.dnsSubZoneCreate = {
|
|
785
|
+
path: "/v2/dns/zones",
|
|
786
|
+
method: "POST",
|
|
787
|
+
operationId: "dns-sub-zone-create",
|
|
788
|
+
};
|
|
777
789
|
/** gets a specific zone */
|
|
778
790
|
exports.dnsZoneGetSpecific = {
|
|
779
791
|
path: "/v2/dns/zones/{zoneId}",
|
|
@@ -1782,15 +1794,3 @@ exports.userVerifyRegistration = {
|
|
|
1782
1794
|
method: "POST",
|
|
1783
1795
|
operationId: "user-verify-registration",
|
|
1784
1796
|
};
|
|
1785
|
-
/** updates srv-records for a specific zone */
|
|
1786
|
-
exports.dnsRecordSrvSet = {
|
|
1787
|
-
path: "/v2/dns/zones/{zoneId}/recordset/srv",
|
|
1788
|
-
method: "PATCH",
|
|
1789
|
-
operationId: "dns-record-srv-set",
|
|
1790
|
-
};
|
|
1791
|
-
/** creates a sub zone for a given dns zone */
|
|
1792
|
-
exports.dnsSubZoneCreate = {
|
|
1793
|
-
path: "/v2/dns/zones",
|
|
1794
|
-
method: "POST",
|
|
1795
|
-
operationId: "dns-sub-zone-create",
|
|
1796
|
-
};
|
|
@@ -757,6 +757,23 @@ export declare module MittwaldAPIV2 {
|
|
|
757
757
|
interface DnsRecordSettings {
|
|
758
758
|
ttl?: MittwaldAPIV2.Components.Schemas.DnsTtlSeconds | MittwaldAPIV2.Components.Schemas.DnsTtlAuto;
|
|
759
759
|
}
|
|
760
|
+
type DnsRecordSRV = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
761
|
+
interface DnsRecordSRVComponent {
|
|
762
|
+
/**
|
|
763
|
+
* @minItems 1
|
|
764
|
+
*/
|
|
765
|
+
records: [
|
|
766
|
+
MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord,
|
|
767
|
+
...MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]
|
|
768
|
+
];
|
|
769
|
+
settings: MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
770
|
+
}
|
|
771
|
+
interface DnsRecordSRVRecord {
|
|
772
|
+
fqdn: string;
|
|
773
|
+
port: number;
|
|
774
|
+
priority: number;
|
|
775
|
+
weight: number;
|
|
776
|
+
}
|
|
760
777
|
type DnsRecordTXT = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordTXTComponent;
|
|
761
778
|
interface DnsRecordTXTComponent {
|
|
762
779
|
/**
|
|
@@ -1734,23 +1751,6 @@ export declare module MittwaldAPIV2 {
|
|
|
1734
1751
|
name: string;
|
|
1735
1752
|
value: string;
|
|
1736
1753
|
}
|
|
1737
|
-
interface DnsRecordSRVRecord {
|
|
1738
|
-
fqdn: string;
|
|
1739
|
-
port: number;
|
|
1740
|
-
priority: number;
|
|
1741
|
-
weight: number;
|
|
1742
|
-
}
|
|
1743
|
-
interface DnsRecordSRVComponent {
|
|
1744
|
-
/**
|
|
1745
|
-
* @minItems 1
|
|
1746
|
-
*/
|
|
1747
|
-
records: [
|
|
1748
|
-
MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord,
|
|
1749
|
-
...MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]
|
|
1750
|
-
];
|
|
1751
|
-
settings: MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
1752
|
-
}
|
|
1753
|
-
type DnsRecordSRV = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
1754
1754
|
interface CommonsAddress {
|
|
1755
1755
|
street: string;
|
|
1756
1756
|
houseNumber: string;
|
|
@@ -6830,6 +6830,39 @@ export declare module MittwaldAPIV2 {
|
|
|
6830
6830
|
}
|
|
6831
6831
|
}
|
|
6832
6832
|
}
|
|
6833
|
+
namespace V2DnsZonesZoneIdRecordsetSrv {
|
|
6834
|
+
namespace Patch {
|
|
6835
|
+
namespace Parameters {
|
|
6836
|
+
type Path = {
|
|
6837
|
+
zoneId: string;
|
|
6838
|
+
};
|
|
6839
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
6840
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
6841
|
+
type Query = {};
|
|
6842
|
+
}
|
|
6843
|
+
namespace Responses {
|
|
6844
|
+
namespace $204 {
|
|
6845
|
+
namespace Content {
|
|
6846
|
+
type Empty = unknown;
|
|
6847
|
+
}
|
|
6848
|
+
}
|
|
6849
|
+
namespace $400 {
|
|
6850
|
+
namespace Content {
|
|
6851
|
+
interface ApplicationJson {
|
|
6852
|
+
[k: string]: unknown;
|
|
6853
|
+
}
|
|
6854
|
+
}
|
|
6855
|
+
}
|
|
6856
|
+
namespace Default {
|
|
6857
|
+
namespace Content {
|
|
6858
|
+
interface ApplicationJson {
|
|
6859
|
+
[k: string]: unknown;
|
|
6860
|
+
}
|
|
6861
|
+
}
|
|
6862
|
+
}
|
|
6863
|
+
}
|
|
6864
|
+
}
|
|
6865
|
+
}
|
|
6833
6866
|
namespace V2DnsZonesZoneIdRecordsetTxt {
|
|
6834
6867
|
namespace Put {
|
|
6835
6868
|
namespace Parameters {
|
|
@@ -6863,6 +6896,42 @@ export declare module MittwaldAPIV2 {
|
|
|
6863
6896
|
}
|
|
6864
6897
|
}
|
|
6865
6898
|
}
|
|
6899
|
+
namespace V2DnsZones {
|
|
6900
|
+
namespace Post {
|
|
6901
|
+
namespace Parameters {
|
|
6902
|
+
type Path = {};
|
|
6903
|
+
interface RequestBody {
|
|
6904
|
+
name: string;
|
|
6905
|
+
parentZoneId: string;
|
|
6906
|
+
}
|
|
6907
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
6908
|
+
type Query = {};
|
|
6909
|
+
}
|
|
6910
|
+
namespace Responses {
|
|
6911
|
+
namespace $201 {
|
|
6912
|
+
namespace Content {
|
|
6913
|
+
interface ApplicationJson {
|
|
6914
|
+
id: string;
|
|
6915
|
+
}
|
|
6916
|
+
}
|
|
6917
|
+
}
|
|
6918
|
+
namespace $400 {
|
|
6919
|
+
namespace Content {
|
|
6920
|
+
interface ApplicationJson {
|
|
6921
|
+
[k: string]: unknown;
|
|
6922
|
+
}
|
|
6923
|
+
}
|
|
6924
|
+
}
|
|
6925
|
+
namespace Default {
|
|
6926
|
+
namespace Content {
|
|
6927
|
+
interface ApplicationJson {
|
|
6928
|
+
[k: string]: unknown;
|
|
6929
|
+
}
|
|
6930
|
+
}
|
|
6931
|
+
}
|
|
6932
|
+
}
|
|
6933
|
+
}
|
|
6934
|
+
}
|
|
6866
6935
|
namespace V2DnsZonesZoneId {
|
|
6867
6936
|
namespace Get {
|
|
6868
6937
|
namespace Parameters {
|
|
@@ -13241,74 +13310,5 @@ export declare module MittwaldAPIV2 {
|
|
|
13241
13310
|
}
|
|
13242
13311
|
}
|
|
13243
13312
|
}
|
|
13244
|
-
namespace V2DnsZonesZoneIdRecordsetSrv {
|
|
13245
|
-
namespace Patch {
|
|
13246
|
-
namespace Parameters {
|
|
13247
|
-
type Path = {
|
|
13248
|
-
zoneId: string;
|
|
13249
|
-
};
|
|
13250
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
13251
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13252
|
-
type Query = {};
|
|
13253
|
-
}
|
|
13254
|
-
namespace Responses {
|
|
13255
|
-
namespace $204 {
|
|
13256
|
-
namespace Content {
|
|
13257
|
-
type Empty = unknown;
|
|
13258
|
-
}
|
|
13259
|
-
}
|
|
13260
|
-
namespace $400 {
|
|
13261
|
-
namespace Content {
|
|
13262
|
-
interface ApplicationJson {
|
|
13263
|
-
[k: string]: unknown;
|
|
13264
|
-
}
|
|
13265
|
-
}
|
|
13266
|
-
}
|
|
13267
|
-
namespace Default {
|
|
13268
|
-
namespace Content {
|
|
13269
|
-
interface ApplicationJson {
|
|
13270
|
-
[k: string]: unknown;
|
|
13271
|
-
}
|
|
13272
|
-
}
|
|
13273
|
-
}
|
|
13274
|
-
}
|
|
13275
|
-
}
|
|
13276
|
-
}
|
|
13277
|
-
namespace V2DnsZones {
|
|
13278
|
-
namespace Post {
|
|
13279
|
-
namespace Parameters {
|
|
13280
|
-
type Path = {};
|
|
13281
|
-
interface RequestBody {
|
|
13282
|
-
name: string;
|
|
13283
|
-
parentZoneId: string;
|
|
13284
|
-
}
|
|
13285
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13286
|
-
type Query = {};
|
|
13287
|
-
}
|
|
13288
|
-
namespace Responses {
|
|
13289
|
-
namespace $201 {
|
|
13290
|
-
namespace Content {
|
|
13291
|
-
interface ApplicationJson {
|
|
13292
|
-
id: string;
|
|
13293
|
-
}
|
|
13294
|
-
}
|
|
13295
|
-
}
|
|
13296
|
-
namespace $400 {
|
|
13297
|
-
namespace Content {
|
|
13298
|
-
interface ApplicationJson {
|
|
13299
|
-
[k: string]: unknown;
|
|
13300
|
-
}
|
|
13301
|
-
}
|
|
13302
|
-
}
|
|
13303
|
-
namespace Default {
|
|
13304
|
-
namespace Content {
|
|
13305
|
-
interface ApplicationJson {
|
|
13306
|
-
[k: string]: unknown;
|
|
13307
|
-
}
|
|
13308
|
-
}
|
|
13309
|
-
}
|
|
13310
|
-
}
|
|
13311
|
-
}
|
|
13312
|
-
}
|
|
13313
13313
|
}
|
|
13314
13314
|
}
|
|
@@ -5076,6 +5076,59 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5076
5076
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5077
5077
|
[x: string]: unknown;
|
|
5078
5078
|
}, 400, "application/json">>>;
|
|
5079
|
+
/** updates srv-records for a specific zone */
|
|
5080
|
+
dnsRecordSrvSet: (request: {
|
|
5081
|
+
pathParameters: {
|
|
5082
|
+
zoneId: string;
|
|
5083
|
+
};
|
|
5084
|
+
headers?: {
|
|
5085
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5086
|
+
"x-access-token"?: string | undefined;
|
|
5087
|
+
} | undefined;
|
|
5088
|
+
} | {
|
|
5089
|
+
data: {
|
|
5090
|
+
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
5091
|
+
settings: {
|
|
5092
|
+
ttl?: {
|
|
5093
|
+
seconds: number;
|
|
5094
|
+
} | {
|
|
5095
|
+
auto: boolean;
|
|
5096
|
+
} | undefined;
|
|
5097
|
+
};
|
|
5098
|
+
};
|
|
5099
|
+
pathParameters: {
|
|
5100
|
+
zoneId: string;
|
|
5101
|
+
};
|
|
5102
|
+
headers?: {
|
|
5103
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5104
|
+
"x-access-token"?: string | undefined;
|
|
5105
|
+
} | undefined;
|
|
5106
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
|
|
5107
|
+
headers?: Partial<{
|
|
5108
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5109
|
+
}> | undefined;
|
|
5110
|
+
} | {
|
|
5111
|
+
data: {
|
|
5112
|
+
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
5113
|
+
settings: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
5114
|
+
};
|
|
5115
|
+
}) & {
|
|
5116
|
+
pathParameters: {
|
|
5117
|
+
zoneId: string;
|
|
5118
|
+
};
|
|
5119
|
+
} & {
|
|
5120
|
+
headers?: Partial<{
|
|
5121
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5122
|
+
}> | undefined;
|
|
5123
|
+
} & {
|
|
5124
|
+
headers: {
|
|
5125
|
+
"x-access-token"?: string | undefined;
|
|
5126
|
+
} & Partial<{
|
|
5127
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5128
|
+
}>;
|
|
5129
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5130
|
+
[x: string]: unknown;
|
|
5131
|
+
}, 400, "application/json">>>;
|
|
5079
5132
|
/** updates txt-records for a specific zone */
|
|
5080
5133
|
dnsRecordTxtSet: (request: {
|
|
5081
5134
|
pathParameters: {
|
|
@@ -5129,6 +5182,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5129
5182
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5130
5183
|
[x: string]: unknown;
|
|
5131
5184
|
}, 400, "application/json">>>;
|
|
5185
|
+
/** creates a sub zone for a given dns zone */
|
|
5186
|
+
dnsSubZoneCreate: (request: {
|
|
5187
|
+
data: {
|
|
5188
|
+
name: string;
|
|
5189
|
+
parentZoneId: string;
|
|
5190
|
+
};
|
|
5191
|
+
headers?: {
|
|
5192
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5193
|
+
"x-access-token"?: string | undefined;
|
|
5194
|
+
} | undefined;
|
|
5195
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5196
|
+
data: {
|
|
5197
|
+
name: string;
|
|
5198
|
+
parentZoneId: string;
|
|
5199
|
+
};
|
|
5200
|
+
} & {
|
|
5201
|
+
headers?: Partial<{
|
|
5202
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5203
|
+
}> | undefined;
|
|
5204
|
+
} & {
|
|
5205
|
+
headers: {
|
|
5206
|
+
"x-access-token"?: string | undefined;
|
|
5207
|
+
} & Partial<{
|
|
5208
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5209
|
+
}>;
|
|
5210
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5211
|
+
id: string;
|
|
5212
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5213
|
+
[x: string]: unknown;
|
|
5214
|
+
}, 400, "application/json">>>;
|
|
5132
5215
|
/** gets a specific zone */
|
|
5133
5216
|
dnsZoneGetSpecific: (request: {
|
|
5134
5217
|
pathParameters: {
|
|
@@ -5525,7 +5608,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5525
5608
|
domainId: string;
|
|
5526
5609
|
handles: {
|
|
5527
5610
|
adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable | undefined;
|
|
5528
|
-
ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
|
|
5611
|
+
ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable; /** Mark all notifications as read. */
|
|
5529
5612
|
};
|
|
5530
5613
|
hasAuthCode: boolean;
|
|
5531
5614
|
nameservers: [string, string, ...string[]];
|
|
@@ -6047,89 +6130,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6047
6130
|
}, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6048
6131
|
[x: string]: unknown;
|
|
6049
6132
|
}, 404, "application/json">>>;
|
|
6050
|
-
/** updates srv-records for a specific zone */
|
|
6051
|
-
dnsRecordSrvSet: (request: {
|
|
6052
|
-
pathParameters: {
|
|
6053
|
-
zoneId: string;
|
|
6054
|
-
};
|
|
6055
|
-
headers?: {
|
|
6056
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6057
|
-
"x-access-token"?: string | undefined;
|
|
6058
|
-
} | undefined;
|
|
6059
|
-
} | {
|
|
6060
|
-
data: {
|
|
6061
|
-
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
6062
|
-
settings: {
|
|
6063
|
-
ttl?: {
|
|
6064
|
-
seconds: number;
|
|
6065
|
-
} | {
|
|
6066
|
-
auto: boolean;
|
|
6067
|
-
} | undefined;
|
|
6068
|
-
};
|
|
6069
|
-
};
|
|
6070
|
-
pathParameters: {
|
|
6071
|
-
zoneId: string;
|
|
6072
|
-
};
|
|
6073
|
-
headers?: {
|
|
6074
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6075
|
-
"x-access-token"?: string | undefined;
|
|
6076
|
-
} | undefined;
|
|
6077
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
|
|
6078
|
-
headers?: Partial<{
|
|
6079
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6080
|
-
}> | undefined;
|
|
6081
|
-
} | {
|
|
6082
|
-
data: {
|
|
6083
|
-
records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
|
|
6084
|
-
settings: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
6085
|
-
};
|
|
6086
|
-
}) & {
|
|
6087
|
-
pathParameters: {
|
|
6088
|
-
zoneId: string;
|
|
6089
|
-
};
|
|
6090
|
-
} & {
|
|
6091
|
-
headers?: Partial<{
|
|
6092
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6093
|
-
}> | undefined;
|
|
6094
|
-
} & {
|
|
6095
|
-
headers: {
|
|
6096
|
-
"x-access-token"?: string | undefined;
|
|
6097
|
-
} & Partial<{
|
|
6098
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6099
|
-
}>;
|
|
6100
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6101
|
-
[x: string]: unknown;
|
|
6102
|
-
}, 400, "application/json">>>;
|
|
6103
|
-
/** creates a sub zone for a given dns zone */
|
|
6104
|
-
dnsSubZoneCreate: (request: {
|
|
6105
|
-
data: {
|
|
6106
|
-
name: string;
|
|
6107
|
-
parentZoneId: string;
|
|
6108
|
-
};
|
|
6109
|
-
headers?: {
|
|
6110
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6111
|
-
"x-access-token"?: string | undefined;
|
|
6112
|
-
} | undefined;
|
|
6113
|
-
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6114
|
-
data: {
|
|
6115
|
-
name: string;
|
|
6116
|
-
parentZoneId: string;
|
|
6117
|
-
};
|
|
6118
|
-
} & {
|
|
6119
|
-
headers?: Partial<{
|
|
6120
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6121
|
-
}> | undefined;
|
|
6122
|
-
} & {
|
|
6123
|
-
headers: {
|
|
6124
|
-
"x-access-token"?: string | undefined;
|
|
6125
|
-
} & Partial<{
|
|
6126
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6127
|
-
}>;
|
|
6128
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6129
|
-
id: string;
|
|
6130
|
-
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6131
|
-
[x: string]: unknown;
|
|
6132
|
-
}, 400, "application/json">>>;
|
|
6133
6133
|
};
|
|
6134
6134
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
6135
6135
|
readonly file: {
|
|
@@ -6591,6 +6591,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6591
6591
|
address: string;
|
|
6592
6592
|
autoResponder: {
|
|
6593
6593
|
active: boolean;
|
|
6594
|
+
/** Store a new ssh-key. */
|
|
6594
6595
|
expiresAt?: string | undefined;
|
|
6595
6596
|
message: string;
|
|
6596
6597
|
startsAt?: string | undefined;
|
|
@@ -306,8 +306,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
306
306
|
dnsRecordMxSetCustom: this.requestFunctionFactory(descriptors.dnsRecordMxSetCustom),
|
|
307
307
|
/** sets mx-records to managed for a specific zone */
|
|
308
308
|
dnsRecordMxSetManaged: this.requestFunctionFactory(descriptors.dnsRecordMxSetManaged),
|
|
309
|
+
/** updates srv-records for a specific zone */
|
|
310
|
+
dnsRecordSrvSet: this.requestFunctionFactory(descriptors.dnsRecordSrvSet),
|
|
309
311
|
/** updates txt-records for a specific zone */
|
|
310
312
|
dnsRecordTxtSet: this.requestFunctionFactory(descriptors.dnsRecordTxtSet),
|
|
313
|
+
/** creates a sub zone for a given dns zone */
|
|
314
|
+
dnsSubZoneCreate: this.requestFunctionFactory(descriptors.dnsSubZoneCreate),
|
|
311
315
|
/** gets a specific zone */
|
|
312
316
|
dnsZoneGetSpecific: this.requestFunctionFactory(descriptors.dnsZoneGetSpecific),
|
|
313
317
|
/** gets all dns zones by project id */
|
|
@@ -364,10 +368,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
364
368
|
ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
|
|
365
369
|
/** Update an Ingresses tls settings. */
|
|
366
370
|
ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
|
|
367
|
-
/** updates srv-records for a specific zone */
|
|
368
|
-
dnsRecordSrvSet: this.requestFunctionFactory(descriptors.dnsRecordSrvSet),
|
|
369
|
-
/** creates a sub zone for a given dns zone */
|
|
370
|
-
dnsSubZoneCreate: this.requestFunctionFactory(descriptors.dnsSubZoneCreate),
|
|
371
371
|
};
|
|
372
372
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
373
373
|
file = {
|
|
@@ -257,8 +257,12 @@ export declare const dnsRecordCnameSet: OpenAPIOperation<RequestType<Simplify<Mi
|
|
|
257
257
|
export declare const dnsRecordMxSetCustom: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
258
258
|
/** sets mx-records to managed for a specific zone */
|
|
259
259
|
export declare const dnsRecordMxSetManaged: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
260
|
+
/** updates srv-records for a specific zone */
|
|
261
|
+
export declare const dnsRecordSrvSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
260
262
|
/** updates txt-records for a specific zone */
|
|
261
263
|
export declare const dnsRecordTxtSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
264
|
+
/** creates a sub zone for a given dns zone */
|
|
265
|
+
export declare const dnsSubZoneCreate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
262
266
|
/** gets a specific zone */
|
|
263
267
|
export declare const dnsZoneGetSpecific: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
264
268
|
/** gets all dns zones by project id */
|
|
@@ -595,7 +599,3 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
|
|
|
595
599
|
export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
596
600
|
/** Verify your registration. */
|
|
597
601
|
export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
598
|
-
/** updates srv-records for a specific zone */
|
|
599
|
-
export declare const dnsRecordSrvSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
600
|
-
/** creates a sub zone for a given dns zone */
|
|
601
|
-
export declare const dnsSubZoneCreate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -760,12 +760,24 @@ export const dnsRecordMxSetManaged = {
|
|
|
760
760
|
method: "POST",
|
|
761
761
|
operationId: "dns-record-mx-set-managed",
|
|
762
762
|
};
|
|
763
|
+
/** updates srv-records for a specific zone */
|
|
764
|
+
export const dnsRecordSrvSet = {
|
|
765
|
+
path: "/v2/dns/zones/{zoneId}/recordset/srv",
|
|
766
|
+
method: "PATCH",
|
|
767
|
+
operationId: "dns-record-srv-set",
|
|
768
|
+
};
|
|
763
769
|
/** updates txt-records for a specific zone */
|
|
764
770
|
export const dnsRecordTxtSet = {
|
|
765
771
|
path: "/v2/dns/zones/{zoneId}/recordset/txt",
|
|
766
772
|
method: "PUT",
|
|
767
773
|
operationId: "dns-record-txt-set",
|
|
768
774
|
};
|
|
775
|
+
/** creates a sub zone for a given dns zone */
|
|
776
|
+
export const dnsSubZoneCreate = {
|
|
777
|
+
path: "/v2/dns/zones",
|
|
778
|
+
method: "POST",
|
|
779
|
+
operationId: "dns-sub-zone-create",
|
|
780
|
+
};
|
|
769
781
|
/** gets a specific zone */
|
|
770
782
|
export const dnsZoneGetSpecific = {
|
|
771
783
|
path: "/v2/dns/zones/{zoneId}",
|
|
@@ -1774,15 +1786,3 @@ export const userVerifyRegistration = {
|
|
|
1774
1786
|
method: "POST",
|
|
1775
1787
|
operationId: "user-verify-registration",
|
|
1776
1788
|
};
|
|
1777
|
-
/** updates srv-records for a specific zone */
|
|
1778
|
-
export const dnsRecordSrvSet = {
|
|
1779
|
-
path: "/v2/dns/zones/{zoneId}/recordset/srv",
|
|
1780
|
-
method: "PATCH",
|
|
1781
|
-
operationId: "dns-record-srv-set",
|
|
1782
|
-
};
|
|
1783
|
-
/** creates a sub zone for a given dns zone */
|
|
1784
|
-
export const dnsSubZoneCreate = {
|
|
1785
|
-
path: "/v2/dns/zones",
|
|
1786
|
-
method: "POST",
|
|
1787
|
-
operationId: "dns-sub-zone-create",
|
|
1788
|
-
};
|
|
@@ -757,6 +757,23 @@ export declare module MittwaldAPIV2 {
|
|
|
757
757
|
interface DnsRecordSettings {
|
|
758
758
|
ttl?: MittwaldAPIV2.Components.Schemas.DnsTtlSeconds | MittwaldAPIV2.Components.Schemas.DnsTtlAuto;
|
|
759
759
|
}
|
|
760
|
+
type DnsRecordSRV = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
761
|
+
interface DnsRecordSRVComponent {
|
|
762
|
+
/**
|
|
763
|
+
* @minItems 1
|
|
764
|
+
*/
|
|
765
|
+
records: [
|
|
766
|
+
MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord,
|
|
767
|
+
...MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]
|
|
768
|
+
];
|
|
769
|
+
settings: MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
770
|
+
}
|
|
771
|
+
interface DnsRecordSRVRecord {
|
|
772
|
+
fqdn: string;
|
|
773
|
+
port: number;
|
|
774
|
+
priority: number;
|
|
775
|
+
weight: number;
|
|
776
|
+
}
|
|
760
777
|
type DnsRecordTXT = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordTXTComponent;
|
|
761
778
|
interface DnsRecordTXTComponent {
|
|
762
779
|
/**
|
|
@@ -1734,23 +1751,6 @@ export declare module MittwaldAPIV2 {
|
|
|
1734
1751
|
name: string;
|
|
1735
1752
|
value: string;
|
|
1736
1753
|
}
|
|
1737
|
-
interface DnsRecordSRVRecord {
|
|
1738
|
-
fqdn: string;
|
|
1739
|
-
port: number;
|
|
1740
|
-
priority: number;
|
|
1741
|
-
weight: number;
|
|
1742
|
-
}
|
|
1743
|
-
interface DnsRecordSRVComponent {
|
|
1744
|
-
/**
|
|
1745
|
-
* @minItems 1
|
|
1746
|
-
*/
|
|
1747
|
-
records: [
|
|
1748
|
-
MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord,
|
|
1749
|
-
...MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]
|
|
1750
|
-
];
|
|
1751
|
-
settings: MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
|
|
1752
|
-
}
|
|
1753
|
-
type DnsRecordSRV = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
1754
1754
|
interface CommonsAddress {
|
|
1755
1755
|
street: string;
|
|
1756
1756
|
houseNumber: string;
|
|
@@ -6830,6 +6830,39 @@ export declare module MittwaldAPIV2 {
|
|
|
6830
6830
|
}
|
|
6831
6831
|
}
|
|
6832
6832
|
}
|
|
6833
|
+
namespace V2DnsZonesZoneIdRecordsetSrv {
|
|
6834
|
+
namespace Patch {
|
|
6835
|
+
namespace Parameters {
|
|
6836
|
+
type Path = {
|
|
6837
|
+
zoneId: string;
|
|
6838
|
+
};
|
|
6839
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
6840
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
6841
|
+
type Query = {};
|
|
6842
|
+
}
|
|
6843
|
+
namespace Responses {
|
|
6844
|
+
namespace $204 {
|
|
6845
|
+
namespace Content {
|
|
6846
|
+
type Empty = unknown;
|
|
6847
|
+
}
|
|
6848
|
+
}
|
|
6849
|
+
namespace $400 {
|
|
6850
|
+
namespace Content {
|
|
6851
|
+
interface ApplicationJson {
|
|
6852
|
+
[k: string]: unknown;
|
|
6853
|
+
}
|
|
6854
|
+
}
|
|
6855
|
+
}
|
|
6856
|
+
namespace Default {
|
|
6857
|
+
namespace Content {
|
|
6858
|
+
interface ApplicationJson {
|
|
6859
|
+
[k: string]: unknown;
|
|
6860
|
+
}
|
|
6861
|
+
}
|
|
6862
|
+
}
|
|
6863
|
+
}
|
|
6864
|
+
}
|
|
6865
|
+
}
|
|
6833
6866
|
namespace V2DnsZonesZoneIdRecordsetTxt {
|
|
6834
6867
|
namespace Put {
|
|
6835
6868
|
namespace Parameters {
|
|
@@ -6863,6 +6896,42 @@ export declare module MittwaldAPIV2 {
|
|
|
6863
6896
|
}
|
|
6864
6897
|
}
|
|
6865
6898
|
}
|
|
6899
|
+
namespace V2DnsZones {
|
|
6900
|
+
namespace Post {
|
|
6901
|
+
namespace Parameters {
|
|
6902
|
+
type Path = {};
|
|
6903
|
+
interface RequestBody {
|
|
6904
|
+
name: string;
|
|
6905
|
+
parentZoneId: string;
|
|
6906
|
+
}
|
|
6907
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
6908
|
+
type Query = {};
|
|
6909
|
+
}
|
|
6910
|
+
namespace Responses {
|
|
6911
|
+
namespace $201 {
|
|
6912
|
+
namespace Content {
|
|
6913
|
+
interface ApplicationJson {
|
|
6914
|
+
id: string;
|
|
6915
|
+
}
|
|
6916
|
+
}
|
|
6917
|
+
}
|
|
6918
|
+
namespace $400 {
|
|
6919
|
+
namespace Content {
|
|
6920
|
+
interface ApplicationJson {
|
|
6921
|
+
[k: string]: unknown;
|
|
6922
|
+
}
|
|
6923
|
+
}
|
|
6924
|
+
}
|
|
6925
|
+
namespace Default {
|
|
6926
|
+
namespace Content {
|
|
6927
|
+
interface ApplicationJson {
|
|
6928
|
+
[k: string]: unknown;
|
|
6929
|
+
}
|
|
6930
|
+
}
|
|
6931
|
+
}
|
|
6932
|
+
}
|
|
6933
|
+
}
|
|
6934
|
+
}
|
|
6866
6935
|
namespace V2DnsZonesZoneId {
|
|
6867
6936
|
namespace Get {
|
|
6868
6937
|
namespace Parameters {
|
|
@@ -13241,74 +13310,5 @@ export declare module MittwaldAPIV2 {
|
|
|
13241
13310
|
}
|
|
13242
13311
|
}
|
|
13243
13312
|
}
|
|
13244
|
-
namespace V2DnsZonesZoneIdRecordsetSrv {
|
|
13245
|
-
namespace Patch {
|
|
13246
|
-
namespace Parameters {
|
|
13247
|
-
type Path = {
|
|
13248
|
-
zoneId: string;
|
|
13249
|
-
};
|
|
13250
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
|
|
13251
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13252
|
-
type Query = {};
|
|
13253
|
-
}
|
|
13254
|
-
namespace Responses {
|
|
13255
|
-
namespace $204 {
|
|
13256
|
-
namespace Content {
|
|
13257
|
-
type Empty = unknown;
|
|
13258
|
-
}
|
|
13259
|
-
}
|
|
13260
|
-
namespace $400 {
|
|
13261
|
-
namespace Content {
|
|
13262
|
-
interface ApplicationJson {
|
|
13263
|
-
[k: string]: unknown;
|
|
13264
|
-
}
|
|
13265
|
-
}
|
|
13266
|
-
}
|
|
13267
|
-
namespace Default {
|
|
13268
|
-
namespace Content {
|
|
13269
|
-
interface ApplicationJson {
|
|
13270
|
-
[k: string]: unknown;
|
|
13271
|
-
}
|
|
13272
|
-
}
|
|
13273
|
-
}
|
|
13274
|
-
}
|
|
13275
|
-
}
|
|
13276
|
-
}
|
|
13277
|
-
namespace V2DnsZones {
|
|
13278
|
-
namespace Post {
|
|
13279
|
-
namespace Parameters {
|
|
13280
|
-
type Path = {};
|
|
13281
|
-
interface RequestBody {
|
|
13282
|
-
name: string;
|
|
13283
|
-
parentZoneId: string;
|
|
13284
|
-
}
|
|
13285
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13286
|
-
type Query = {};
|
|
13287
|
-
}
|
|
13288
|
-
namespace Responses {
|
|
13289
|
-
namespace $201 {
|
|
13290
|
-
namespace Content {
|
|
13291
|
-
interface ApplicationJson {
|
|
13292
|
-
id: string;
|
|
13293
|
-
}
|
|
13294
|
-
}
|
|
13295
|
-
}
|
|
13296
|
-
namespace $400 {
|
|
13297
|
-
namespace Content {
|
|
13298
|
-
interface ApplicationJson {
|
|
13299
|
-
[k: string]: unknown;
|
|
13300
|
-
}
|
|
13301
|
-
}
|
|
13302
|
-
}
|
|
13303
|
-
namespace Default {
|
|
13304
|
-
namespace Content {
|
|
13305
|
-
interface ApplicationJson {
|
|
13306
|
-
[k: string]: unknown;
|
|
13307
|
-
}
|
|
13308
|
-
}
|
|
13309
|
-
}
|
|
13310
|
-
}
|
|
13311
|
-
}
|
|
13312
|
-
}
|
|
13313
13313
|
}
|
|
13314
13314
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '2.0.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '2.0.21';
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '2.0.
|
|
1
|
+
export const MittwaldAPIClientVersion = '2.0.21';
|