@mittwald/api-client 4.14.1 → 4.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +23 -0
- package/dist/esm/generated/v2/client.js +35 -2
- package/dist/esm/generated/v2/descriptors.js +97 -7
- package/dist/esm/v2/default.js +6 -8
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +162 -7
- package/dist/types/generated/v2/client.d.ts +582 -41
- package/dist/types/generated/v2/descriptors.d.ts +59 -29
- package/dist/types/generated/v2/types.d.ts +1064 -109
- package/dist/types/v2/default.d.ts +1 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +3 -3
|
@@ -183,6 +183,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
183
183
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
184
184
|
}>;
|
|
185
185
|
}, import("@mittwald/api-client-commons").Response<{
|
|
186
|
+
appId: string;
|
|
186
187
|
breakingNote?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppBreakingNote | undefined;
|
|
187
188
|
databases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDatabaseDependency[] | undefined;
|
|
188
189
|
docRoot: string;
|
|
@@ -323,6 +324,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
323
324
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
324
325
|
}>;
|
|
325
326
|
}, import("@mittwald/api-client-commons").Response<{
|
|
327
|
+
expiryDate?: string | undefined;
|
|
326
328
|
externalVersion: string;
|
|
327
329
|
id: string;
|
|
328
330
|
internalVersion: string;
|
|
@@ -438,6 +440,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
438
440
|
id: string;
|
|
439
441
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
440
442
|
[x: string]: unknown;
|
|
443
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
444
|
+
[x: string]: unknown;
|
|
441
445
|
}, 404, "application/json">>>;
|
|
442
446
|
/** List Apps. */
|
|
443
447
|
listApps: (request?: {
|
|
@@ -737,7 +741,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
737
741
|
attributes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleArticleAttributes[] | undefined;
|
|
738
742
|
balanceAddonKey?: string | undefined;
|
|
739
743
|
contractDurationInMonth: number;
|
|
740
|
-
description
|
|
744
|
+
description?: string | undefined;
|
|
741
745
|
forcedInvoicingPeriodInMonth?: number | undefined;
|
|
742
746
|
hasIndependentContractPeriod?: boolean | undefined;
|
|
743
747
|
hideOnInvoice?: boolean | undefined;
|
|
@@ -1397,6 +1401,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1397
1401
|
description: string;
|
|
1398
1402
|
freeTrialDays?: number | undefined;
|
|
1399
1403
|
groupByProjectId?: string | undefined;
|
|
1404
|
+
invoiceStop?: string | undefined;
|
|
1400
1405
|
invoicingPeriod?: number | undefined;
|
|
1401
1406
|
isActivated: boolean;
|
|
1402
1407
|
isBaseItem: boolean;
|
|
@@ -1406,7 +1411,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1406
1411
|
nextPossibleDowngradeDate?: string | undefined;
|
|
1407
1412
|
nextPossibleTerminationDate?: string | undefined;
|
|
1408
1413
|
nextPossibleUpgradeDate?: string | undefined;
|
|
1409
|
-
orderDate
|
|
1414
|
+
orderDate?: string | undefined;
|
|
1410
1415
|
orderId?: string | undefined;
|
|
1411
1416
|
replacedByItem?: string | undefined;
|
|
1412
1417
|
tariffChange?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTariffChange | undefined;
|
|
@@ -1547,6 +1552,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1547
1552
|
description: string;
|
|
1548
1553
|
freeTrialDays?: number | undefined;
|
|
1549
1554
|
groupByProjectId?: string | undefined;
|
|
1555
|
+
invoiceStop?: string | undefined;
|
|
1550
1556
|
invoicingPeriod?: number | undefined;
|
|
1551
1557
|
isActivated: boolean;
|
|
1552
1558
|
isBaseItem: boolean;
|
|
@@ -1556,7 +1562,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1556
1562
|
nextPossibleDowngradeDate?: string | undefined;
|
|
1557
1563
|
nextPossibleTerminationDate?: string | undefined;
|
|
1558
1564
|
nextPossibleUpgradeDate?: string | undefined;
|
|
1559
|
-
orderDate
|
|
1565
|
+
orderDate?: string | undefined;
|
|
1560
1566
|
orderId?: string | undefined;
|
|
1561
1567
|
replacedByItem?: string | undefined;
|
|
1562
1568
|
tariffChange?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTariffChange | undefined;
|
|
@@ -1742,6 +1748,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1742
1748
|
}>;
|
|
1743
1749
|
}, import("@mittwald/api-client-commons").Response<{
|
|
1744
1750
|
additionalEmailRecipients?: string[] | undefined;
|
|
1751
|
+
debitPaymentStopUntil?: string | undefined;
|
|
1745
1752
|
id: string;
|
|
1746
1753
|
invoicePeriod?: number | undefined;
|
|
1747
1754
|
lastBankingInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceBankingInformation | undefined;
|
|
@@ -1822,6 +1829,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1822
1829
|
}>;
|
|
1823
1830
|
}, import("@mittwald/api-client-commons").Response<{
|
|
1824
1831
|
additionalEmailRecipients?: string[] | undefined;
|
|
1832
|
+
debitPaymentStopUntil?: string | undefined;
|
|
1825
1833
|
id: string;
|
|
1826
1834
|
invoicePeriod?: number | undefined;
|
|
1827
1835
|
lastBankingInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceBankingInformation | undefined;
|
|
@@ -1909,6 +1917,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1909
1917
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1910
1918
|
[x: string]: unknown;
|
|
1911
1919
|
}, 404, "application/json">>>;
|
|
1920
|
+
/** Get list of Orders. */
|
|
1921
|
+
orderListOrders: (request?: {
|
|
1922
|
+
headers?: {
|
|
1923
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1924
|
+
"x-access-token"?: string | undefined;
|
|
1925
|
+
} | undefined;
|
|
1926
|
+
queryParameters?: {
|
|
1927
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1928
|
+
limit?: number | undefined;
|
|
1929
|
+
skip?: number | undefined;
|
|
1930
|
+
page?: number | undefined;
|
|
1931
|
+
includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
1932
|
+
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
1933
|
+
templateNames?: string[] | undefined;
|
|
1934
|
+
} | undefined;
|
|
1935
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1936
|
+
headers?: Partial<{
|
|
1937
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1938
|
+
}> | undefined;
|
|
1939
|
+
} & {
|
|
1940
|
+
queryParameters: {
|
|
1941
|
+
limit?: number | undefined;
|
|
1942
|
+
skip?: number | undefined;
|
|
1943
|
+
page?: number | undefined;
|
|
1944
|
+
includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
1945
|
+
excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
|
|
1946
|
+
templateNames?: string[] | undefined;
|
|
1947
|
+
} & Partial<{
|
|
1948
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1949
|
+
}>;
|
|
1950
|
+
} & {
|
|
1951
|
+
headers: {
|
|
1952
|
+
"x-access-token"?: string | undefined;
|
|
1953
|
+
} & Partial<{
|
|
1954
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1955
|
+
}>;
|
|
1956
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[], 200, "application/json">>>;
|
|
1912
1957
|
/** Create an Order. */
|
|
1913
1958
|
orderCreateOrder: (request?: {
|
|
1914
1959
|
data?: {
|
|
@@ -1964,7 +2009,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1964
2009
|
orderId: string;
|
|
1965
2010
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1966
2011
|
[x: string]: unknown;
|
|
1967
|
-
}, 400, "application/json"
|
|
2012
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2013
|
+
[x: string]: unknown;
|
|
2014
|
+
}, 403, "application/json">>>;
|
|
1968
2015
|
/** Create TariffChange Order. */
|
|
1969
2016
|
orderCreateTariffChange: (request?: {
|
|
1970
2017
|
data?: {
|
|
@@ -2166,7 +2213,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2166
2213
|
}> | undefined;
|
|
2167
2214
|
}, import("@mittwald/api-client-commons").Response<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2OrderPreviews.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2168
2215
|
[x: string]: unknown;
|
|
2169
|
-
}, 400, "application/json"
|
|
2216
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2217
|
+
error?: {} | undefined;
|
|
2218
|
+
}, 422, "application/json">>>;
|
|
2170
2219
|
/** Preview TariffChange. */
|
|
2171
2220
|
orderPreviewTariffChange: (request?: {
|
|
2172
2221
|
data?: {
|
|
@@ -2211,7 +2260,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2211
2260
|
totalPrice: number;
|
|
2212
2261
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2213
2262
|
[x: string]: unknown;
|
|
2214
|
-
}, 400, "application/json"
|
|
2263
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2264
|
+
error?: {} | undefined;
|
|
2265
|
+
}, 422, "application/json">>>;
|
|
2215
2266
|
};
|
|
2216
2267
|
/** The conversation API allows you to manage your support conversations. */
|
|
2217
2268
|
readonly conversation: {
|
|
@@ -2398,7 +2449,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2398
2449
|
relations?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[] | undefined;
|
|
2399
2450
|
sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
|
|
2400
2451
|
shortId: string;
|
|
2401
|
-
status: "open" | "answered" | "closed";
|
|
2452
|
+
status: "open" | "answered" | "closed" | "inProgress";
|
|
2402
2453
|
title: string;
|
|
2403
2454
|
visibility: "shared" | "private";
|
|
2404
2455
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -3602,7 +3653,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3602
3653
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3603
3654
|
}>;
|
|
3604
3655
|
}, import("@mittwald/api-client-commons").Response<{
|
|
3605
|
-
|
|
3656
|
+
customerId?: string | undefined;
|
|
3606
3657
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3607
3658
|
[x: string]: unknown;
|
|
3608
3659
|
}, 404, "application/json">>>;
|
|
@@ -3724,6 +3775,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3724
3775
|
}>;
|
|
3725
3776
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3726
3777
|
[x: string]: unknown;
|
|
3778
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3779
|
+
[x: string]: unknown;
|
|
3727
3780
|
}, 404, "application/json">>>;
|
|
3728
3781
|
/** List CustomerMemberships belonging to the executing user. */
|
|
3729
3782
|
listCustomerMemberships: (request?: {
|
|
@@ -3755,6 +3808,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3755
3808
|
}>;
|
|
3756
3809
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3757
3810
|
[x: string]: unknown;
|
|
3811
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3812
|
+
[x: string]: unknown;
|
|
3758
3813
|
}, 404, "application/json">>>;
|
|
3759
3814
|
/** List Invites belonging to a Customer. */
|
|
3760
3815
|
listInvitesForCustomer: (request: {
|
|
@@ -4180,6 +4235,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4180
4235
|
isShared: boolean;
|
|
4181
4236
|
name: string;
|
|
4182
4237
|
projectId: string;
|
|
4238
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseDatabaseStatus;
|
|
4239
|
+
statusSetAt: string;
|
|
4240
|
+
storageUsageInBytes: number;
|
|
4241
|
+
storageUsageInBytesSetAt: string;
|
|
4183
4242
|
updatedAt: string;
|
|
4184
4243
|
version: string;
|
|
4185
4244
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -4354,6 +4413,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4354
4413
|
name: string;
|
|
4355
4414
|
port: number;
|
|
4356
4415
|
projectId: string;
|
|
4416
|
+
status: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseDatabaseStatus;
|
|
4417
|
+
statusSetAt: string;
|
|
4418
|
+
storageUsageInBytes: number;
|
|
4419
|
+
storageUsageInBytesSetAt: string;
|
|
4357
4420
|
updatedAt: string;
|
|
4358
4421
|
version: string;
|
|
4359
4422
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -5298,6 +5361,31 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5298
5361
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainDomain[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5299
5362
|
[x: string]: unknown;
|
|
5300
5363
|
}, 400, "application/json">>>;
|
|
5364
|
+
/** Check if a Domain is available to transfer. */
|
|
5365
|
+
checkDomainTransferability: (request: {
|
|
5366
|
+
data: {
|
|
5367
|
+
authCode: string;
|
|
5368
|
+
domain: string;
|
|
5369
|
+
};
|
|
5370
|
+
headers?: {
|
|
5371
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5372
|
+
} | undefined;
|
|
5373
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5374
|
+
data: {
|
|
5375
|
+
authCode: string;
|
|
5376
|
+
domain: string;
|
|
5377
|
+
};
|
|
5378
|
+
} & {
|
|
5379
|
+
headers?: Partial<{
|
|
5380
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5381
|
+
}> | undefined;
|
|
5382
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5383
|
+
[x: string]: unknown;
|
|
5384
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5385
|
+
[x: string]: unknown;
|
|
5386
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5387
|
+
[x: string]: unknown;
|
|
5388
|
+
}, 403, "application/json">>>;
|
|
5301
5389
|
/** Create an auth code for a Domains transfer-out process. */
|
|
5302
5390
|
createDomainAuthCode: (request: {
|
|
5303
5391
|
domainId: string;
|
|
@@ -5391,8 +5479,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5391
5479
|
adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable | undefined;
|
|
5392
5480
|
ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
|
|
5393
5481
|
};
|
|
5394
|
-
|
|
5395
|
-
nameservers: [string, string, ...string[]];
|
|
5482
|
+
nameservers: string[];
|
|
5396
5483
|
processes?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainProcess[] | undefined;
|
|
5397
5484
|
projectId: string;
|
|
5398
5485
|
transferInAuthCode?: string | undefined;
|
|
@@ -5405,25 +5492,28 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5405
5492
|
/** Delete a Domain. */
|
|
5406
5493
|
deleteDomain: (request: {
|
|
5407
5494
|
domainId: string;
|
|
5408
|
-
data?: {
|
|
5409
|
-
transit?: boolean | undefined;
|
|
5410
|
-
} | undefined;
|
|
5411
5495
|
headers?: {
|
|
5412
5496
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5413
5497
|
"x-access-token"?: string | undefined;
|
|
5414
5498
|
} | undefined;
|
|
5415
|
-
|
|
5416
|
-
|
|
5499
|
+
queryParameters?: {
|
|
5500
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5417
5501
|
transit?: boolean | undefined;
|
|
5418
|
-
};
|
|
5502
|
+
} | undefined;
|
|
5503
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5504
|
+
headers?: Partial<{
|
|
5505
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5506
|
+
}> | undefined;
|
|
5419
5507
|
} & {
|
|
5420
5508
|
pathParameters: {
|
|
5421
5509
|
domainId: string;
|
|
5422
5510
|
};
|
|
5423
5511
|
} & {
|
|
5424
|
-
|
|
5512
|
+
queryParameters: {
|
|
5513
|
+
transit?: boolean | undefined;
|
|
5514
|
+
} & Partial<{
|
|
5425
5515
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5426
|
-
}
|
|
5516
|
+
}>;
|
|
5427
5517
|
} & {
|
|
5428
5518
|
headers: {
|
|
5429
5519
|
"x-access-token"?: string | undefined;
|
|
@@ -5882,37 +5972,416 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5882
5972
|
}, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5883
5973
|
[x: string]: unknown;
|
|
5884
5974
|
}, 404, "application/json">>>;
|
|
5885
|
-
|
|
5886
|
-
|
|
5975
|
+
};
|
|
5976
|
+
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
5977
|
+
readonly marketplace: {
|
|
5978
|
+
/** Authenticate your external application using the extensionInstanceSecret. */
|
|
5979
|
+
extensionAuthenticateInstance: (request: {
|
|
5887
5980
|
data: {
|
|
5888
|
-
|
|
5889
|
-
domain: string;
|
|
5981
|
+
extensionInstanceSecret: string;
|
|
5890
5982
|
};
|
|
5983
|
+
extensionInstanceId: string;
|
|
5891
5984
|
headers?: {
|
|
5892
5985
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5986
|
+
"x-access-token"?: string | undefined;
|
|
5893
5987
|
} | undefined;
|
|
5894
5988
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5895
5989
|
data: {
|
|
5896
|
-
|
|
5990
|
+
extensionInstanceSecret: string;
|
|
5991
|
+
};
|
|
5992
|
+
} & {
|
|
5993
|
+
pathParameters: {
|
|
5994
|
+
extensionInstanceId: string;
|
|
5995
|
+
};
|
|
5996
|
+
} & {
|
|
5997
|
+
headers?: Partial<{
|
|
5998
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5999
|
+
}> | undefined;
|
|
6000
|
+
} & {
|
|
6001
|
+
headers: {
|
|
6002
|
+
"x-access-token"?: string | undefined;
|
|
6003
|
+
} & Partial<{
|
|
6004
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6005
|
+
}>;
|
|
6006
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6007
|
+
expiry: string;
|
|
6008
|
+
publicToken: string;
|
|
6009
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6010
|
+
[x: string]: unknown;
|
|
6011
|
+
}, 400, "application/json">>>;
|
|
6012
|
+
/** Consent to extension scopes. */
|
|
6013
|
+
extensionConsentToExtensionScopes: (request: {
|
|
6014
|
+
data: {
|
|
6015
|
+
consentedScopes: string[];
|
|
6016
|
+
};
|
|
6017
|
+
extensionInstanceId: string;
|
|
6018
|
+
headers?: {
|
|
6019
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6020
|
+
"x-access-token"?: string | undefined;
|
|
6021
|
+
} | undefined;
|
|
6022
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6023
|
+
data: {
|
|
6024
|
+
consentedScopes: string[];
|
|
6025
|
+
};
|
|
6026
|
+
} & {
|
|
6027
|
+
pathParameters: {
|
|
6028
|
+
extensionInstanceId: string;
|
|
6029
|
+
};
|
|
6030
|
+
} & {
|
|
6031
|
+
headers?: Partial<{
|
|
6032
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6033
|
+
}> | undefined;
|
|
6034
|
+
} & {
|
|
6035
|
+
headers: {
|
|
6036
|
+
"x-access-token"?: string | undefined;
|
|
6037
|
+
} & Partial<{
|
|
6038
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6039
|
+
}>;
|
|
6040
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6041
|
+
[x: string]: unknown;
|
|
6042
|
+
}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6043
|
+
[x: string]: unknown;
|
|
6044
|
+
}, 400, "application/json">>>;
|
|
6045
|
+
/** List ExtensionInstances. */
|
|
6046
|
+
extensionListExtensionInstances: (request: {
|
|
6047
|
+
queryParameters: {
|
|
6048
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6049
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
6050
|
+
contextId: string;
|
|
6051
|
+
limit?: number | undefined;
|
|
6052
|
+
skip?: number | undefined;
|
|
6053
|
+
page?: number | undefined;
|
|
6054
|
+
};
|
|
6055
|
+
headers?: {
|
|
6056
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6057
|
+
"x-access-token"?: string | undefined;
|
|
6058
|
+
} | undefined;
|
|
6059
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6060
|
+
headers?: Partial<{
|
|
6061
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6062
|
+
}> | undefined;
|
|
6063
|
+
} & {
|
|
6064
|
+
queryParameters: {
|
|
6065
|
+
limit?: number | undefined;
|
|
6066
|
+
skip?: number | undefined;
|
|
6067
|
+
page?: number | undefined;
|
|
6068
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
6069
|
+
contextId: string;
|
|
6070
|
+
} & Partial<{
|
|
6071
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6072
|
+
}>;
|
|
6073
|
+
} & {
|
|
6074
|
+
headers: {
|
|
6075
|
+
"x-access-token"?: string | undefined;
|
|
6076
|
+
} & Partial<{
|
|
6077
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6078
|
+
}>;
|
|
6079
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[], 200, "application/json">>>;
|
|
6080
|
+
/** Create an ExtensionInstance. */
|
|
6081
|
+
extensionCreateExtensionInstance: (request: {
|
|
6082
|
+
data: {
|
|
6083
|
+
consentedScopes: string[];
|
|
6084
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
6085
|
+
contextId: string;
|
|
6086
|
+
extensionId: string;
|
|
6087
|
+
};
|
|
6088
|
+
headers?: {
|
|
6089
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6090
|
+
"x-access-token"?: string | undefined;
|
|
6091
|
+
} | undefined;
|
|
6092
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6093
|
+
data: {
|
|
6094
|
+
consentedScopes: string[];
|
|
6095
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
6096
|
+
contextId: string;
|
|
6097
|
+
extensionId: string;
|
|
6098
|
+
};
|
|
6099
|
+
} & {
|
|
6100
|
+
headers?: Partial<{
|
|
6101
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6102
|
+
}> | undefined;
|
|
6103
|
+
} & {
|
|
6104
|
+
headers: {
|
|
6105
|
+
"x-access-token"?: string | undefined;
|
|
6106
|
+
} & Partial<{
|
|
6107
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6108
|
+
}>;
|
|
6109
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6110
|
+
id: string;
|
|
6111
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6112
|
+
[x: string]: unknown;
|
|
6113
|
+
}, 400, "application/json">>>;
|
|
6114
|
+
/** Get an ExtensionInstance. */
|
|
6115
|
+
extensionGetExtensionInstance: (request: {
|
|
6116
|
+
extensionInstanceId: string;
|
|
6117
|
+
headers?: {
|
|
6118
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6119
|
+
"x-access-token"?: string | undefined;
|
|
6120
|
+
} | undefined;
|
|
6121
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6122
|
+
headers?: Partial<{
|
|
6123
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6124
|
+
}> | undefined;
|
|
6125
|
+
} & {
|
|
6126
|
+
pathParameters: {
|
|
6127
|
+
extensionInstanceId: string;
|
|
6128
|
+
};
|
|
6129
|
+
} & {
|
|
6130
|
+
headers: {
|
|
6131
|
+
"x-access-token"?: string | undefined;
|
|
6132
|
+
} & Partial<{
|
|
6133
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6134
|
+
}>;
|
|
6135
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6136
|
+
aggregateReference: {
|
|
6137
|
+
aggregate: string;
|
|
5897
6138
|
domain: string;
|
|
6139
|
+
id: string;
|
|
5898
6140
|
};
|
|
6141
|
+
consentedScopes: string[];
|
|
6142
|
+
createdAt?: string | undefined;
|
|
6143
|
+
disabled: boolean;
|
|
6144
|
+
extensionId: string;
|
|
6145
|
+
id: string;
|
|
6146
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6147
|
+
[x: string]: unknown;
|
|
6148
|
+
}, 404, "application/json">>>;
|
|
6149
|
+
/** Delete an ExtensionInstance. */
|
|
6150
|
+
extensionDeleteExtensionInstance: (request: {
|
|
6151
|
+
extensionInstanceId: string;
|
|
6152
|
+
headers?: {
|
|
6153
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6154
|
+
"x-access-token"?: string | undefined;
|
|
6155
|
+
} | undefined;
|
|
6156
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6157
|
+
headers?: Partial<{
|
|
6158
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6159
|
+
}> | undefined;
|
|
5899
6160
|
} & {
|
|
6161
|
+
pathParameters: {
|
|
6162
|
+
extensionInstanceId: string;
|
|
6163
|
+
};
|
|
6164
|
+
} & {
|
|
6165
|
+
headers: {
|
|
6166
|
+
"x-access-token"?: string | undefined;
|
|
6167
|
+
} & Partial<{
|
|
6168
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6169
|
+
}>;
|
|
6170
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6171
|
+
[x: string]: unknown;
|
|
6172
|
+
}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6173
|
+
[x: string]: unknown;
|
|
6174
|
+
}, 404, "application/json">>>;
|
|
6175
|
+
/** Disable an ExtensionInstance. */
|
|
6176
|
+
extensionDisableExtensionInstance: (request: {
|
|
6177
|
+
extensionInstanceId: string;
|
|
6178
|
+
headers?: {
|
|
6179
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6180
|
+
"x-access-token"?: string | undefined;
|
|
6181
|
+
} | undefined;
|
|
6182
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6183
|
+
headers?: Partial<{
|
|
6184
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6185
|
+
}> | undefined;
|
|
6186
|
+
} & {
|
|
6187
|
+
pathParameters: {
|
|
6188
|
+
extensionInstanceId: string;
|
|
6189
|
+
};
|
|
6190
|
+
} & {
|
|
6191
|
+
headers: {
|
|
6192
|
+
"x-access-token"?: string | undefined;
|
|
6193
|
+
} & Partial<{
|
|
6194
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6195
|
+
}>;
|
|
6196
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6197
|
+
[x: string]: unknown;
|
|
6198
|
+
}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6199
|
+
[x: string]: unknown;
|
|
6200
|
+
}, 400, "application/json">>>;
|
|
6201
|
+
/** Enable an ExtensionInstance. */
|
|
6202
|
+
extensionEnableExtensionInstance: (request: {
|
|
6203
|
+
extensionInstanceId: string;
|
|
6204
|
+
headers?: {
|
|
6205
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6206
|
+
"x-access-token"?: string | undefined;
|
|
6207
|
+
} | undefined;
|
|
6208
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5900
6209
|
headers?: Partial<{
|
|
5901
6210
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5902
6211
|
}> | undefined;
|
|
6212
|
+
} & {
|
|
6213
|
+
pathParameters: {
|
|
6214
|
+
extensionInstanceId: string;
|
|
6215
|
+
};
|
|
6216
|
+
} & {
|
|
6217
|
+
headers: {
|
|
6218
|
+
"x-access-token"?: string | undefined;
|
|
6219
|
+
} & Partial<{
|
|
6220
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6221
|
+
}>;
|
|
5903
6222
|
}, import("@mittwald/api-client-commons").Response<{
|
|
5904
|
-
|
|
5905
|
-
|
|
5906
|
-
|
|
5907
|
-
|
|
5908
|
-
|
|
6223
|
+
[x: string]: unknown;
|
|
6224
|
+
}, 204, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6225
|
+
[x: string]: unknown;
|
|
6226
|
+
}, 400, "application/json">>>;
|
|
6227
|
+
/** Get a Contributor. */
|
|
6228
|
+
extensionGetContributor: (request: {
|
|
6229
|
+
contributorId: string;
|
|
6230
|
+
headers?: {
|
|
6231
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6232
|
+
"x-access-token"?: string | undefined;
|
|
6233
|
+
} | undefined;
|
|
6234
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6235
|
+
headers?: Partial<{
|
|
6236
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6237
|
+
}> | undefined;
|
|
6238
|
+
} & {
|
|
6239
|
+
pathParameters: {
|
|
6240
|
+
contributorId: string;
|
|
5909
6241
|
};
|
|
5910
|
-
|
|
6242
|
+
} & {
|
|
6243
|
+
headers: {
|
|
6244
|
+
"x-access-token"?: string | undefined;
|
|
6245
|
+
} & Partial<{
|
|
6246
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6247
|
+
}>;
|
|
6248
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6249
|
+
customerId: string;
|
|
6250
|
+
email?: string | undefined;
|
|
6251
|
+
id: string;
|
|
6252
|
+
logoRefId?: string | undefined;
|
|
6253
|
+
name: string;
|
|
6254
|
+
phone?: string | undefined;
|
|
6255
|
+
state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
|
|
6256
|
+
url?: string | undefined;
|
|
5911
6257
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5912
6258
|
[x: string]: unknown;
|
|
5913
|
-
},
|
|
6259
|
+
}, 404, "application/json">>>;
|
|
6260
|
+
/** Get an Extension. */
|
|
6261
|
+
extensionGetExtension: (request: {
|
|
6262
|
+
extensionId: string;
|
|
6263
|
+
headers?: {
|
|
6264
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6265
|
+
"x-access-token"?: string | undefined;
|
|
6266
|
+
} | undefined;
|
|
6267
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6268
|
+
headers?: Partial<{
|
|
6269
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6270
|
+
}> | undefined;
|
|
6271
|
+
} & {
|
|
6272
|
+
pathParameters: {
|
|
6273
|
+
extensionId: string;
|
|
6274
|
+
};
|
|
6275
|
+
} & {
|
|
6276
|
+
headers: {
|
|
6277
|
+
"x-access-token"?: string | undefined;
|
|
6278
|
+
} & Partial<{
|
|
6279
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6280
|
+
}>;
|
|
6281
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6282
|
+
context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
6283
|
+
contributorId: string;
|
|
6284
|
+
description: string;
|
|
6285
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
6286
|
+
id: string;
|
|
6287
|
+
name: string;
|
|
6288
|
+
scopes: string[];
|
|
6289
|
+
state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionState;
|
|
6290
|
+
support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
|
|
6291
|
+
tags: string[];
|
|
6292
|
+
}, 200, "application/json">>>;
|
|
6293
|
+
/** Get the public key to verify the webhook signature. */
|
|
6294
|
+
extensionGetPublicKey: (request: {
|
|
6295
|
+
serial: string;
|
|
6296
|
+
headers?: {
|
|
6297
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6298
|
+
"x-access-token"?: string | undefined;
|
|
6299
|
+
} | undefined;
|
|
6300
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6301
|
+
headers?: Partial<{
|
|
6302
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6303
|
+
}> | undefined;
|
|
6304
|
+
} & {
|
|
6305
|
+
pathParameters: {
|
|
6306
|
+
serial: string;
|
|
6307
|
+
};
|
|
6308
|
+
} & {
|
|
6309
|
+
headers: {
|
|
6310
|
+
"x-access-token"?: string | undefined;
|
|
6311
|
+
} & Partial<{
|
|
6312
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6313
|
+
}>;
|
|
6314
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6315
|
+
algorithm: string;
|
|
6316
|
+
key: string;
|
|
6317
|
+
serial: string;
|
|
6318
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5914
6319
|
[x: string]: unknown;
|
|
5915
|
-
},
|
|
6320
|
+
}, 404, "application/json">>>;
|
|
6321
|
+
/** List Contributors. */
|
|
6322
|
+
extensionListContributors: (request?: {
|
|
6323
|
+
headers?: {
|
|
6324
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6325
|
+
"x-access-token"?: string | undefined;
|
|
6326
|
+
} | undefined;
|
|
6327
|
+
queryParameters?: {
|
|
6328
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6329
|
+
limit?: number | undefined;
|
|
6330
|
+
skip?: number | undefined;
|
|
6331
|
+
page?: number | undefined;
|
|
6332
|
+
} | undefined;
|
|
6333
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6334
|
+
headers?: Partial<{
|
|
6335
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6336
|
+
}> | undefined;
|
|
6337
|
+
} & {
|
|
6338
|
+
queryParameters: {
|
|
6339
|
+
limit?: number | undefined;
|
|
6340
|
+
skip?: number | undefined;
|
|
6341
|
+
page?: number | undefined;
|
|
6342
|
+
} & Partial<{
|
|
6343
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6344
|
+
}>;
|
|
6345
|
+
} & {
|
|
6346
|
+
headers: {
|
|
6347
|
+
"x-access-token"?: string | undefined;
|
|
6348
|
+
} & Partial<{
|
|
6349
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6350
|
+
}>;
|
|
6351
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[], 200, "application/json">>>;
|
|
6352
|
+
/** List Extensions. */
|
|
6353
|
+
extensionListExtensions: (request?: {
|
|
6354
|
+
headers?: {
|
|
6355
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6356
|
+
"x-access-token"?: string | undefined;
|
|
6357
|
+
} | undefined;
|
|
6358
|
+
queryParameters?: {
|
|
6359
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6360
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
6361
|
+
limit?: number | undefined;
|
|
6362
|
+
skip?: number | undefined;
|
|
6363
|
+
page?: number | undefined;
|
|
6364
|
+
} | undefined;
|
|
6365
|
+
} | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6366
|
+
headers?: Partial<{
|
|
6367
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6368
|
+
}> | undefined;
|
|
6369
|
+
} & {
|
|
6370
|
+
queryParameters: {
|
|
6371
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
6372
|
+
limit?: number | undefined;
|
|
6373
|
+
skip?: number | undefined;
|
|
6374
|
+
page?: number | undefined;
|
|
6375
|
+
} & Partial<{
|
|
6376
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6377
|
+
}>;
|
|
6378
|
+
} & {
|
|
6379
|
+
headers: {
|
|
6380
|
+
"x-access-token"?: string | undefined;
|
|
6381
|
+
} & Partial<{
|
|
6382
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6383
|
+
}>;
|
|
6384
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json">>>;
|
|
5916
6385
|
};
|
|
5917
6386
|
/** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
|
|
5918
6387
|
readonly file: {
|
|
@@ -6006,7 +6475,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6006
6475
|
fileUploadToken: string;
|
|
6007
6476
|
};
|
|
6008
6477
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6478
|
+
extensions: string[];
|
|
6009
6479
|
fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
|
|
6480
|
+
maxSizeInBytes: number;
|
|
6010
6481
|
maxSizeInKB: number;
|
|
6011
6482
|
mimeTypes: string[];
|
|
6012
6483
|
properties?: {
|
|
@@ -6043,7 +6514,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6043
6514
|
fileUploadType: "avatar" | "conversation";
|
|
6044
6515
|
};
|
|
6045
6516
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6517
|
+
extensions: string[];
|
|
6046
6518
|
fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
|
|
6519
|
+
maxSizeInBytes: number;
|
|
6047
6520
|
maxSizeInKB: number;
|
|
6048
6521
|
mimeTypes: string[];
|
|
6049
6522
|
properties?: {
|
|
@@ -6074,7 +6547,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6074
6547
|
"Content-Disposition"?: "inline" | "attachment" | undefined;
|
|
6075
6548
|
Token?: string | undefined;
|
|
6076
6549
|
} | undefined;
|
|
6077
|
-
fileName?: string | undefined;
|
|
6078
6550
|
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6079
6551
|
headers?: Partial<{
|
|
6080
6552
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -6082,7 +6554,46 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6082
6554
|
} & {
|
|
6083
6555
|
pathParameters: {
|
|
6084
6556
|
fileId: string;
|
|
6085
|
-
|
|
6557
|
+
};
|
|
6558
|
+
} & {
|
|
6559
|
+
headers: {
|
|
6560
|
+
Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
6561
|
+
"Content-Disposition"?: "inline" | "attachment" | undefined;
|
|
6562
|
+
Token?: string | undefined;
|
|
6563
|
+
} & Partial<{
|
|
6564
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6565
|
+
}>;
|
|
6566
|
+
}, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "text/plain;base64"> | import("@mittwald/api-client-commons").Response<{
|
|
6567
|
+
[x: string]: unknown;
|
|
6568
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6569
|
+
[x: string]: unknown;
|
|
6570
|
+
}, 401, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6571
|
+
[x: string]: unknown;
|
|
6572
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6573
|
+
[x: string]: unknown;
|
|
6574
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6575
|
+
[x: string]: unknown;
|
|
6576
|
+
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6577
|
+
[x: string]: unknown;
|
|
6578
|
+
}, 500, "application/json">>>;
|
|
6579
|
+
/** Get a File. */
|
|
6580
|
+
getFileWithName: (request: {
|
|
6581
|
+
fileId: string;
|
|
6582
|
+
fileName: string;
|
|
6583
|
+
headers?: {
|
|
6584
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6585
|
+
Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
|
|
6586
|
+
"Content-Disposition"?: "inline" | "attachment" | undefined;
|
|
6587
|
+
Token?: string | undefined;
|
|
6588
|
+
} | undefined;
|
|
6589
|
+
}) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6590
|
+
headers?: Partial<{
|
|
6591
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6592
|
+
}> | undefined;
|
|
6593
|
+
} & {
|
|
6594
|
+
pathParameters: {
|
|
6595
|
+
fileId: string;
|
|
6596
|
+
fileName: string;
|
|
6086
6597
|
};
|
|
6087
6598
|
} & {
|
|
6088
6599
|
headers: {
|
|
@@ -8207,7 +8718,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8207
8718
|
type: "ValidationError";
|
|
8208
8719
|
message?: string | undefined;
|
|
8209
8720
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8210
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 201, "application/json"
|
|
8721
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8722
|
+
[x: string]: unknown;
|
|
8723
|
+
}, 403, "application/json">>>;
|
|
8211
8724
|
/** Submitted feedback of the given user. */
|
|
8212
8725
|
listFeedback: (request: {
|
|
8213
8726
|
userId: string;
|
|
@@ -8396,7 +8909,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8396
8909
|
validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
|
|
8397
8910
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8398
8911
|
userId: string;
|
|
8399
|
-
}, 201, "application/json"
|
|
8912
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8913
|
+
[x: string]: unknown;
|
|
8914
|
+
}, 403, "application/json">>>;
|
|
8400
8915
|
/** Request a new avatar image upload. */
|
|
8401
8916
|
requestAvatarUpload: (request: {
|
|
8402
8917
|
userId: string;
|
|
@@ -9197,6 +9712,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9197
9712
|
userId: string;
|
|
9198
9713
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9199
9714
|
[x: string]: unknown;
|
|
9715
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9716
|
+
[x: string]: unknown;
|
|
9200
9717
|
}, 404, "application/json">>>;
|
|
9201
9718
|
/** Get a Server. */
|
|
9202
9719
|
getServer: (request: {
|
|
@@ -9334,6 +9851,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9334
9851
|
}>;
|
|
9335
9852
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9336
9853
|
[x: string]: unknown;
|
|
9854
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9855
|
+
[x: string]: unknown;
|
|
9337
9856
|
}, 404, "application/json">>>;
|
|
9338
9857
|
/** List ProjectMemberships belonging to the executing user. */
|
|
9339
9858
|
listProjectMemberships: (request?: {
|
|
@@ -9365,6 +9884,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9365
9884
|
}>;
|
|
9366
9885
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9367
9886
|
[x: string]: unknown;
|
|
9887
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9888
|
+
[x: string]: unknown;
|
|
9368
9889
|
}, 404, "application/json">>>;
|
|
9369
9890
|
/** List Projects belonging to the executing user. */
|
|
9370
9891
|
listProjects: (request?: {
|
|
@@ -9898,6 +10419,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9898
10419
|
}>;
|
|
9899
10420
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSftpUser[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9900
10421
|
[x: string]: unknown;
|
|
10422
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10423
|
+
[x: string]: unknown;
|
|
9901
10424
|
}, 404, "application/json">>>;
|
|
9902
10425
|
/** Create an SFTPUser for a Project. */
|
|
9903
10426
|
sftpUserCreateSftpUser: (request: {
|
|
@@ -9955,7 +10478,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9955
10478
|
userName: string;
|
|
9956
10479
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9957
10480
|
[x: string]: unknown;
|
|
9958
|
-
}, 400, "application/json"
|
|
10481
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10482
|
+
[x: string]: unknown;
|
|
10483
|
+
}, 403, "application/json">>>;
|
|
9959
10484
|
/** Get an SFTPUser. */
|
|
9960
10485
|
sftpUserGetSftpUser: (request: {
|
|
9961
10486
|
sftpUserId: string;
|
|
@@ -9993,6 +10518,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9993
10518
|
userName: string;
|
|
9994
10519
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9995
10520
|
[x: string]: unknown;
|
|
10521
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10522
|
+
[x: string]: unknown;
|
|
9996
10523
|
}, 404, "application/json">>>;
|
|
9997
10524
|
/** Delete an SFTPUser. */
|
|
9998
10525
|
sftpUserDeleteSftpUser: (request: {
|
|
@@ -10015,7 +10542,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10015
10542
|
} & Partial<{
|
|
10016
10543
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10017
10544
|
}>;
|
|
10018
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
10545
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
10546
|
+
[x: string]: unknown;
|
|
10547
|
+
}, 403, "application/json">>>;
|
|
10019
10548
|
/** Update an SFTPUser. */
|
|
10020
10549
|
sftpUserUpdateSftpUser: (request: {
|
|
10021
10550
|
sftpUserId: string;
|
|
@@ -10058,7 +10587,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10058
10587
|
}>;
|
|
10059
10588
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
10060
10589
|
[x: string]: unknown;
|
|
10061
|
-
}, 400, "application/json"
|
|
10590
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10591
|
+
[x: string]: unknown;
|
|
10592
|
+
}, 403, "application/json">>>;
|
|
10062
10593
|
/** Get all SSHUsers for a Project. */
|
|
10063
10594
|
sshUserListSshUsers: (request: {
|
|
10064
10595
|
projectId: string;
|
|
@@ -10094,6 +10625,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10094
10625
|
}>;
|
|
10095
10626
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.SshuserSshUser[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10096
10627
|
[x: string]: unknown;
|
|
10628
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10629
|
+
[x: string]: unknown;
|
|
10097
10630
|
}, 404, "application/json">>>;
|
|
10098
10631
|
/** Create an SSHUser for a Project. */
|
|
10099
10632
|
sshUserCreateSshUser: (request: {
|
|
@@ -10145,7 +10678,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10145
10678
|
userName: string;
|
|
10146
10679
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10147
10680
|
[x: string]: unknown;
|
|
10148
|
-
}, 400, "application/json"
|
|
10681
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10682
|
+
[x: string]: unknown;
|
|
10683
|
+
}, 403, "application/json">>>;
|
|
10149
10684
|
/** Get an SSHUser. */
|
|
10150
10685
|
sshUserGetSshUser: (request: {
|
|
10151
10686
|
sshUserId: string;
|
|
@@ -10181,6 +10716,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10181
10716
|
userName: string;
|
|
10182
10717
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10183
10718
|
[x: string]: unknown;
|
|
10719
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10720
|
+
[x: string]: unknown;
|
|
10184
10721
|
}, 404, "application/json">>>;
|
|
10185
10722
|
/** Delete an SSHUser. */
|
|
10186
10723
|
sshUserDeleteSshUser: (request: {
|
|
@@ -10203,7 +10740,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10203
10740
|
} & Partial<{
|
|
10204
10741
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
10205
10742
|
}>;
|
|
10206
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"
|
|
10743
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
10744
|
+
[x: string]: unknown;
|
|
10745
|
+
}, 403, "application/json">>>;
|
|
10207
10746
|
/** Update an SSHUser. */
|
|
10208
10747
|
sshUserUpdateSshUser: (request: {
|
|
10209
10748
|
sshUserId: string;
|
|
@@ -10242,7 +10781,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10242
10781
|
}>;
|
|
10243
10782
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
10244
10783
|
[x: string]: unknown;
|
|
10245
|
-
}, 400, "application/json"
|
|
10784
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
10785
|
+
[x: string]: unknown;
|
|
10786
|
+
}, 403, "application/json">>>;
|
|
10246
10787
|
};
|
|
10247
10788
|
}
|
|
10248
10789
|
export default MittwaldAPIV2Client;
|