@mittwald/api-client 3.0.6 → 3.0.7

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.
@@ -694,7 +694,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
694
694
  executionEnd?: string | undefined;
695
695
  executionStart?: string | undefined;
696
696
  id: string;
697
- logPath: string;
697
+ logPath?: string | undefined;
698
698
  start?: string | undefined;
699
699
  status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser";
700
700
  successful: boolean;
@@ -2185,24 +2185,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2185
2185
  }> | undefined;
2186
2186
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationConversation[], 200, "application/json">>>;
2187
2187
  /** Create a conversation. */
2188
- createConversation: (request: {
2189
- data: {
2190
- title: string;
2188
+ createConversation: (request?: {
2189
+ data?: {
2191
2190
  categoryId?: string | undefined;
2192
2191
  relatedTo?: {
2193
2192
  aggregate: string;
2194
2193
  domain: string;
2195
2194
  id: string;
2196
2195
  } | undefined;
2197
- };
2196
+ title?: string | undefined;
2197
+ } | undefined;
2198
2198
  headers?: {
2199
2199
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2200
2200
  } | undefined;
2201
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2201
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2202
2202
  data: {
2203
2203
  categoryId?: string | undefined;
2204
2204
  relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
2205
- title: string;
2205
+ title?: string | undefined;
2206
2206
  };
2207
2207
  } & {
2208
2208
  headers?: Partial<{
@@ -2813,7 +2813,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2813
2813
  executionEnd?: string | undefined;
2814
2814
  executionStart?: string | undefined;
2815
2815
  id: string;
2816
- logPath: string;
2816
+ logPath?: string | undefined;
2817
2817
  start?: string | undefined;
2818
2818
  status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser";
2819
2819
  successful: boolean;
@@ -510,7 +510,7 @@ export declare module MittwaldAPIV2 {
510
510
  executionEnd?: string;
511
511
  executionStart?: string;
512
512
  id: string;
513
- logPath: string;
513
+ logPath?: string;
514
514
  start?: string;
515
515
  status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser";
516
516
  successful: boolean;
@@ -3808,7 +3808,7 @@ export declare module MittwaldAPIV2 {
3808
3808
  interface RequestBody {
3809
3809
  categoryId?: string;
3810
3810
  relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference;
3811
- title: string;
3811
+ title?: string;
3812
3812
  }
3813
3813
  type Header = {};
3814
3814
  type Query = {};
@@ -694,7 +694,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
694
694
  executionEnd?: string | undefined;
695
695
  executionStart?: string | undefined;
696
696
  id: string;
697
- logPath: string;
697
+ logPath?: string | undefined;
698
698
  start?: string | undefined;
699
699
  status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser";
700
700
  successful: boolean;
@@ -2185,24 +2185,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2185
2185
  }> | undefined;
2186
2186
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationConversation[], 200, "application/json">>>;
2187
2187
  /** Create a conversation. */
2188
- createConversation: (request: {
2189
- data: {
2190
- title: string;
2188
+ createConversation: (request?: {
2189
+ data?: {
2191
2190
  categoryId?: string | undefined;
2192
2191
  relatedTo?: {
2193
2192
  aggregate: string;
2194
2193
  domain: string;
2195
2194
  id: string;
2196
2195
  } | undefined;
2197
- };
2196
+ title?: string | undefined;
2197
+ } | undefined;
2198
2198
  headers?: {
2199
2199
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2200
2200
  } | undefined;
2201
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2201
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2202
2202
  data: {
2203
2203
  categoryId?: string | undefined;
2204
2204
  relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
2205
- title: string;
2205
+ title?: string | undefined;
2206
2206
  };
2207
2207
  } & {
2208
2208
  headers?: Partial<{
@@ -2813,7 +2813,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2813
2813
  executionEnd?: string | undefined;
2814
2814
  executionStart?: string | undefined;
2815
2815
  id: string;
2816
- logPath: string;
2816
+ logPath?: string | undefined;
2817
2817
  start?: string | undefined;
2818
2818
  status: "Pending" | "Failed" | "Complete" | "AbortedBySystem" | "Running" | "AbortedByUser";
2819
2819
  successful: boolean;
@@ -510,7 +510,7 @@ export declare module MittwaldAPIV2 {
510
510
  executionEnd?: string;
511
511
  executionStart?: string;
512
512
  id: string;
513
- logPath: string;
513
+ logPath?: string;
514
514
  start?: string;
515
515
  status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser";
516
516
  successful: boolean;
@@ -3808,7 +3808,7 @@ export declare module MittwaldAPIV2 {
3808
3808
  interface RequestBody {
3809
3809
  categoryId?: string;
3810
3810
  relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference;
3811
- title: string;
3811
+ title?: string;
3812
3812
  }
3813
3813
  type Header = {};
3814
3814
  type Query = {};
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.0.6';
1
+ export declare const MittwaldAPIClientVersion = '3.0.7';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.0.6';
1
+ export const MittwaldAPIClientVersion = '3.0.7';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",