@mittwald/api-client 4.198.0 → 4.199.1
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.199.0';
|
|
@@ -1016,7 +1016,9 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1016
1016
|
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
1017
1017
|
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
1018
1018
|
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1019
|
-
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
1019
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
1020
|
+
inherited: boolean;
|
|
1021
|
+
}) | undefined;
|
|
1020
1022
|
tags?: string[] | undefined;
|
|
1021
1023
|
verificationRequested: boolean;
|
|
1022
1024
|
verified: boolean;
|
|
@@ -1047,6 +1049,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1047
1049
|
"x-access-token"?: string | undefined;
|
|
1048
1050
|
} | undefined;
|
|
1049
1051
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1052
|
+
currentPrice?: number | undefined;
|
|
1050
1053
|
interactionDeadline?: string | undefined;
|
|
1051
1054
|
interactionRequired: boolean;
|
|
1052
1055
|
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
@@ -1976,7 +1979,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1976
1979
|
}>;
|
|
1977
1980
|
/** Get a FileUploadType's rules. */
|
|
1978
1981
|
getFileUploadTypeRules: (conf: {
|
|
1979
|
-
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "conversation";
|
|
1982
|
+
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "anchorIcon" | "conversation";
|
|
1980
1983
|
headers?: {
|
|
1981
1984
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1982
1985
|
} | undefined;
|
|
@@ -2903,6 +2906,8 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2903
2906
|
limit?: number | undefined;
|
|
2904
2907
|
skip?: number | undefined;
|
|
2905
2908
|
page?: number | undefined;
|
|
2909
|
+
sort?: "createdAt" | "description" | undefined;
|
|
2910
|
+
order?: "asc" | "desc" | undefined;
|
|
2906
2911
|
} | undefined;
|
|
2907
2912
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2908
2913
|
backupStorageUsageInBytes: number;
|
|
@@ -2939,10 +2944,12 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2939
2944
|
queryParameters?: {
|
|
2940
2945
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2941
2946
|
customerId?: string | undefined;
|
|
2947
|
+
searchTerm?: string | undefined;
|
|
2942
2948
|
limit?: number | undefined;
|
|
2943
|
-
page?: number | undefined;
|
|
2944
2949
|
skip?: number | undefined;
|
|
2945
|
-
|
|
2950
|
+
page?: number | undefined;
|
|
2951
|
+
sort?: "createdAt" | "description" | undefined;
|
|
2952
|
+
order?: "asc" | "desc" | undefined;
|
|
2946
2953
|
} | undefined;
|
|
2947
2954
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServer[]>;
|
|
2948
2955
|
/** Get storage space Statistics belonging to a Project. */
|
|
@@ -2914,7 +2914,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2914
2914
|
credentials?: {
|
|
2915
2915
|
password: string;
|
|
2916
2916
|
username: string;
|
|
2917
|
-
} | undefined;
|
|
2917
|
+
} | null | undefined;
|
|
2918
2918
|
description?: string | undefined;
|
|
2919
2919
|
uri?: string | undefined;
|
|
2920
2920
|
} | undefined;
|
|
@@ -2924,7 +2924,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2924
2924
|
} | undefined;
|
|
2925
2925
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2926
2926
|
data: {
|
|
2927
|
-
credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
|
|
2927
|
+
credentials?: (import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | null) | undefined;
|
|
2928
2928
|
description?: string | undefined;
|
|
2929
2929
|
uri?: string | undefined;
|
|
2930
2930
|
};
|
|
@@ -2956,7 +2956,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2956
2956
|
[x: string]: unknown;
|
|
2957
2957
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2958
2958
|
data: {
|
|
2959
|
-
credentials?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | undefined;
|
|
2959
|
+
credentials?: (import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | null) | undefined;
|
|
2960
2960
|
description?: string | undefined;
|
|
2961
2961
|
uri?: string | undefined;
|
|
2962
2962
|
};
|
|
@@ -7407,7 +7407,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7407
7407
|
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
7408
7408
|
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
7409
7409
|
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
7410
|
-
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
7410
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
7411
|
+
inherited: boolean;
|
|
7412
|
+
}) | undefined;
|
|
7411
7413
|
tags?: string[] | undefined;
|
|
7412
7414
|
verificationRequested: boolean;
|
|
7413
7415
|
verified: boolean;
|
|
@@ -7462,7 +7464,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7462
7464
|
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
7463
7465
|
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
7464
7466
|
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
7465
|
-
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
7467
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
7468
|
+
inherited: boolean;
|
|
7469
|
+
}) | undefined;
|
|
7466
7470
|
tags?: string[] | undefined;
|
|
7467
7471
|
verificationRequested: boolean;
|
|
7468
7472
|
verified: boolean;
|
|
@@ -7654,7 +7658,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7654
7658
|
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
7655
7659
|
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
7656
7660
|
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
7657
|
-
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
7661
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
7662
|
+
inherited: boolean;
|
|
7663
|
+
}) | undefined;
|
|
7658
7664
|
tags?: string[] | undefined;
|
|
7659
7665
|
verificationRequested: boolean;
|
|
7660
7666
|
verified: boolean;
|
|
@@ -7730,7 +7736,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7730
7736
|
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
7731
7737
|
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
7732
7738
|
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
7733
|
-
support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
7739
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
7740
|
+
inherited: boolean;
|
|
7741
|
+
}) | undefined;
|
|
7734
7742
|
tags?: string[] | undefined;
|
|
7735
7743
|
verificationRequested: boolean;
|
|
7736
7744
|
verified: boolean;
|
|
@@ -8156,6 +8164,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8156
8164
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8157
8165
|
}>;
|
|
8158
8166
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8167
|
+
currentPrice?: number | undefined;
|
|
8159
8168
|
interactionDeadline?: string | undefined;
|
|
8160
8169
|
interactionRequired: boolean;
|
|
8161
8170
|
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
@@ -8181,6 +8190,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8181
8190
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8182
8191
|
}>;
|
|
8183
8192
|
}, import("@mittwald/api-client-commons").Response<{
|
|
8193
|
+
currentPrice?: number | undefined;
|
|
8184
8194
|
interactionDeadline?: string | undefined;
|
|
8185
8195
|
interactionRequired: boolean;
|
|
8186
8196
|
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
@@ -21636,7 +21646,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21636
21646
|
}, 500, "application/json">>>;
|
|
21637
21647
|
/** Get a FileUploadType's rules. */
|
|
21638
21648
|
getFileUploadTypeRules: (request: {
|
|
21639
|
-
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "conversation";
|
|
21649
|
+
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "anchorIcon" | "conversation";
|
|
21640
21650
|
headers?: {
|
|
21641
21651
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
21642
21652
|
} | undefined;
|
|
@@ -21646,7 +21656,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21646
21656
|
}>;
|
|
21647
21657
|
} & {
|
|
21648
21658
|
pathParameters: {
|
|
21649
|
-
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "conversation";
|
|
21659
|
+
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "anchorIcon" | "conversation";
|
|
21650
21660
|
};
|
|
21651
21661
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21652
21662
|
extensions: string[];
|
|
@@ -21680,7 +21690,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21680
21690
|
}>;
|
|
21681
21691
|
} & {
|
|
21682
21692
|
pathParameters: {
|
|
21683
|
-
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "conversation";
|
|
21693
|
+
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "anchorIcon" | "conversation";
|
|
21684
21694
|
};
|
|
21685
21695
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21686
21696
|
extensions: string[];
|
|
@@ -24890,6 +24900,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24890
24900
|
limit?: number | undefined;
|
|
24891
24901
|
skip?: number | undefined;
|
|
24892
24902
|
page?: number | undefined;
|
|
24903
|
+
sort?: "createdAt" | "description" | undefined;
|
|
24904
|
+
order?: "asc" | "desc" | undefined;
|
|
24893
24905
|
} | undefined;
|
|
24894
24906
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
24895
24907
|
headers?: Partial<{
|
|
@@ -24903,6 +24915,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24903
24915
|
limit?: number | undefined;
|
|
24904
24916
|
skip?: number | undefined;
|
|
24905
24917
|
page?: number | undefined;
|
|
24918
|
+
sort?: "createdAt" | "description" | undefined;
|
|
24919
|
+
order?: "asc" | "desc" | undefined;
|
|
24906
24920
|
} & Partial<{
|
|
24907
24921
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24908
24922
|
}>;
|
|
@@ -24955,6 +24969,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
24955
24969
|
limit?: number | undefined;
|
|
24956
24970
|
skip?: number | undefined;
|
|
24957
24971
|
page?: number | undefined;
|
|
24972
|
+
sort?: "createdAt" | "description" | undefined;
|
|
24973
|
+
order?: "asc" | "desc" | undefined;
|
|
24958
24974
|
} & Partial<{
|
|
24959
24975
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
24960
24976
|
}>;
|
|
@@ -25005,10 +25021,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25005
25021
|
queryParameters?: {
|
|
25006
25022
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
25007
25023
|
customerId?: string | undefined;
|
|
25024
|
+
searchTerm?: string | undefined;
|
|
25008
25025
|
limit?: number | undefined;
|
|
25009
|
-
page?: number | undefined;
|
|
25010
25026
|
skip?: number | undefined;
|
|
25011
|
-
|
|
25027
|
+
page?: number | undefined;
|
|
25028
|
+
sort?: "createdAt" | "description" | undefined;
|
|
25029
|
+
order?: "asc" | "desc" | undefined;
|
|
25012
25030
|
} | undefined;
|
|
25013
25031
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
25014
25032
|
headers?: Partial<{
|
|
@@ -25017,10 +25035,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25017
25035
|
} & {
|
|
25018
25036
|
queryParameters: {
|
|
25019
25037
|
customerId?: string | undefined;
|
|
25038
|
+
searchTerm?: string | undefined;
|
|
25020
25039
|
limit?: number | undefined;
|
|
25021
|
-
page?: number | undefined;
|
|
25022
25040
|
skip?: number | undefined;
|
|
25023
|
-
|
|
25041
|
+
page?: number | undefined;
|
|
25042
|
+
sort?: "createdAt" | "description" | undefined;
|
|
25043
|
+
order?: "asc" | "desc" | undefined;
|
|
25024
25044
|
} & Partial<{
|
|
25025
25045
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25026
25046
|
}>;
|
|
@@ -25041,10 +25061,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25041
25061
|
} & {
|
|
25042
25062
|
queryParameters: {
|
|
25043
25063
|
customerId?: string | undefined;
|
|
25064
|
+
searchTerm?: string | undefined;
|
|
25044
25065
|
limit?: number | undefined;
|
|
25045
|
-
page?: number | undefined;
|
|
25046
25066
|
skip?: number | undefined;
|
|
25047
|
-
|
|
25067
|
+
page?: number | undefined;
|
|
25068
|
+
sort?: "createdAt" | "description" | undefined;
|
|
25069
|
+
order?: "asc" | "desc" | undefined;
|
|
25048
25070
|
} & Partial<{
|
|
25049
25071
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
25050
25072
|
}>;
|
|
@@ -1958,6 +1958,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1958
1958
|
* A strategy for Contracts that will be paid periodically.
|
|
1959
1959
|
*/
|
|
1960
1960
|
interface ExtensionSubscriptionBasedContract {
|
|
1961
|
+
/**
|
|
1962
|
+
* monthly price in Euro Cent
|
|
1963
|
+
*/
|
|
1964
|
+
currentPrice?: number;
|
|
1961
1965
|
interactionDeadline?: string;
|
|
1962
1966
|
interactionRequired: boolean;
|
|
1963
1967
|
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
@@ -2180,7 +2184,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2180
2184
|
volumes?: MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[];
|
|
2181
2185
|
}
|
|
2182
2186
|
interface ContainerUpdateRegistry {
|
|
2183
|
-
credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials;
|
|
2187
|
+
credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | null;
|
|
2184
2188
|
description?: string;
|
|
2185
2189
|
uri?: string;
|
|
2186
2190
|
}
|
|
@@ -3065,7 +3069,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3065
3069
|
state: "enabled" | "blocked" | "disabled";
|
|
3066
3070
|
statistics: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
3067
3071
|
subTitle: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
3068
|
-
support: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
3072
|
+
support: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
3073
|
+
/**
|
|
3074
|
+
* Whether the support information is inherited from the contributor.
|
|
3075
|
+
*/
|
|
3076
|
+
inherited: boolean;
|
|
3077
|
+
};
|
|
3069
3078
|
/**
|
|
3070
3079
|
* @minItems 0
|
|
3071
3080
|
*/
|
|
@@ -3275,7 +3284,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3275
3284
|
state?: "enabled" | "blocked" | "disabled";
|
|
3276
3285
|
statistics: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
3277
3286
|
subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
3278
|
-
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
3287
|
+
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
3288
|
+
/**
|
|
3289
|
+
* Whether the support information is inherited from the contributor.
|
|
3290
|
+
*/
|
|
3291
|
+
inherited: boolean;
|
|
3292
|
+
};
|
|
3279
3293
|
/**
|
|
3280
3294
|
* @minItems 0
|
|
3281
3295
|
*/
|
|
@@ -3368,7 +3382,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3368
3382
|
state: "enabled" | "blocked" | "disabled";
|
|
3369
3383
|
statistics: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
3370
3384
|
subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
|
|
3371
|
-
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta
|
|
3385
|
+
support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
3386
|
+
/**
|
|
3387
|
+
* Whether the support information is inherited from the contributor.
|
|
3388
|
+
*/
|
|
3389
|
+
inherited: boolean;
|
|
3390
|
+
};
|
|
3372
3391
|
tags: string[];
|
|
3373
3392
|
}
|
|
3374
3393
|
interface MarketplaceUrlFrontendFragment {
|
|
@@ -17074,7 +17093,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17074
17093
|
namespace Get {
|
|
17075
17094
|
namespace Parameters {
|
|
17076
17095
|
type Path = {
|
|
17077
|
-
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "conversation";
|
|
17096
|
+
fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "anchorIcon" | "conversation";
|
|
17078
17097
|
};
|
|
17079
17098
|
type Header = {};
|
|
17080
17099
|
type Query = {};
|
|
@@ -22202,6 +22221,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22202
22221
|
limit?: number;
|
|
22203
22222
|
skip?: number;
|
|
22204
22223
|
page?: number;
|
|
22224
|
+
sort?: "createdAt" | "description";
|
|
22225
|
+
order?: "asc" | "desc";
|
|
22205
22226
|
};
|
|
22206
22227
|
}
|
|
22207
22228
|
namespace Responses {
|
|
@@ -22281,10 +22302,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22281
22302
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22282
22303
|
type Query = {
|
|
22283
22304
|
customerId?: string;
|
|
22305
|
+
searchTerm?: string;
|
|
22284
22306
|
limit?: number;
|
|
22285
|
-
page?: number;
|
|
22286
22307
|
skip?: number;
|
|
22287
|
-
|
|
22308
|
+
page?: number;
|
|
22309
|
+
sort?: "createdAt" | "description";
|
|
22310
|
+
order?: "asc" | "desc";
|
|
22288
22311
|
};
|
|
22289
22312
|
}
|
|
22290
22313
|
namespace Responses {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.199.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.199.1",
|
|
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",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.199.1",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.0",
|
|
55
55
|
"@types/node": "^22.10.1",
|
|
56
56
|
"@types/react": "^18.3.14",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "2f8c39cf188e9b866a48003394ef2d0fe77d250f"
|
|
84
84
|
}
|