@mittwald/api-client 3.1.57 → 3.1.58
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/generated/v2/client-react.d.ts +2074 -0
- package/dist/generated/v2/client.d.ts +10246 -0
- package/dist/generated/v2/client.js +2 -2
- package/dist/generated/v2/descriptors.d.ts +607 -0
- package/dist/generated/v2/descriptors.js +6 -6
- package/dist/generated/v2/types.d.ts +15455 -0
- package/dist/index.d.ts +3 -0
- package/dist/react.d.ts +1 -0
- package/dist/v2/default.d.ts +12 -0
- package/dist/v2/react.d.ts +3 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
ADDED
package/dist/react.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { MittwaldAPIClientReact as MittwaldAPIV2ClientReact } from "./v2/react.js";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import MittwaldApiV2Client from "../generated/v2/client.js";
|
|
2
|
+
export type { MittwaldAPIV2 } from "../generated/v2/types.js";
|
|
3
|
+
export declare class MittwaldAPIClient extends MittwaldApiV2Client {
|
|
4
|
+
private readonly apiToken;
|
|
5
|
+
private constructor();
|
|
6
|
+
private static createAxiosDefaults;
|
|
7
|
+
private setupInterceptors;
|
|
8
|
+
static newUnauthenticated(): MittwaldAPIClient;
|
|
9
|
+
static newWithToken(apiToken: string): MittwaldAPIClient;
|
|
10
|
+
static newWithCredentials(email: string, password: string): Promise<MittwaldAPIClient>;
|
|
11
|
+
}
|
|
12
|
+
export default MittwaldAPIClient;
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '3.1.58';
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '3.1.
|
|
1
|
+
export const MittwaldAPIClientVersion = '3.1.58';
|