@mittwald/api-client 4.109.0 → 4.110.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/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.109.0';
|
|
@@ -290,6 +290,11 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
290
290
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
291
291
|
"x-access-token"?: string | undefined;
|
|
292
292
|
} | undefined;
|
|
293
|
+
queryParameters?: {
|
|
294
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
295
|
+
withExportsOnly?: boolean | undefined;
|
|
296
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
297
|
+
} | undefined;
|
|
293
298
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackup[]>;
|
|
294
299
|
/** Get a ProjectBackupSchedule. */
|
|
295
300
|
getProjectBackupSchedule: (conf: {
|
|
@@ -1775,6 +1775,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1775
1775
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1776
1776
|
"x-access-token"?: string | undefined;
|
|
1777
1777
|
} | undefined;
|
|
1778
|
+
queryParameters?: {
|
|
1779
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1780
|
+
withExportsOnly?: boolean | undefined;
|
|
1781
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
1782
|
+
} | undefined;
|
|
1778
1783
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1779
1784
|
headers?: Partial<{
|
|
1780
1785
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -1783,6 +1788,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1783
1788
|
pathParameters: {
|
|
1784
1789
|
projectId: string;
|
|
1785
1790
|
};
|
|
1791
|
+
} & {
|
|
1792
|
+
queryParameters: {
|
|
1793
|
+
withExportsOnly?: boolean | undefined;
|
|
1794
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
1795
|
+
} & Partial<{
|
|
1796
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1797
|
+
}>;
|
|
1786
1798
|
} & {
|
|
1787
1799
|
headers: {
|
|
1788
1800
|
"x-access-token"?: string | undefined;
|
|
@@ -1799,6 +1811,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1799
1811
|
pathParameters: {
|
|
1800
1812
|
projectId: string;
|
|
1801
1813
|
};
|
|
1814
|
+
} & {
|
|
1815
|
+
queryParameters: {
|
|
1816
|
+
withExportsOnly?: boolean | undefined;
|
|
1817
|
+
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
1818
|
+
} & Partial<{
|
|
1819
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1820
|
+
}>;
|
|
1802
1821
|
} & {
|
|
1803
1822
|
headers: {
|
|
1804
1823
|
"x-access-token"?: string | undefined;
|
|
@@ -1570,6 +1570,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1570
1570
|
current?: string;
|
|
1571
1571
|
desired: string;
|
|
1572
1572
|
}
|
|
1573
|
+
type BackupBackupSortOrder = "oldestFirst" | "newestFirst";
|
|
1573
1574
|
interface BackupBackupTemplate {
|
|
1574
1575
|
expirationTime: string;
|
|
1575
1576
|
ignoredSources?: MittwaldAPIV2.Components.Schemas.BackupIgnoredSources;
|
|
@@ -5618,7 +5619,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5618
5619
|
projectId: string;
|
|
5619
5620
|
};
|
|
5620
5621
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
5621
|
-
type Query = {
|
|
5622
|
+
type Query = {
|
|
5623
|
+
withExportsOnly?: boolean;
|
|
5624
|
+
sortOrder?: MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder;
|
|
5625
|
+
};
|
|
5622
5626
|
}
|
|
5623
5627
|
namespace Responses {
|
|
5624
5628
|
namespace $200 {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.109.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.110.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "867b1b6fb1b4010b003114da3eca85f252a92b80"
|
|
84
84
|
}
|