@mittwald/api-client 0.0.0-development-5f2817b-20250709 → 0.0.0-development-7e09328-20250710

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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.178.0';
1
+ export const MittwaldAPIClientVersion = '4.179.0';
@@ -34,7 +34,6 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
34
34
  lockedBy?: {
35
35
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
36
36
  } | undefined;
37
- processes?: string[] | undefined;
38
37
  projectId?: string | undefined;
39
38
  screenshotId?: string | undefined;
40
39
  screenshotRef?: string | undefined;
@@ -754,6 +753,8 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
754
753
  limit?: number | undefined;
755
754
  skip?: number | undefined;
756
755
  page?: number | undefined;
756
+ sort?: "invoiceNumber"[] | undefined;
757
+ order?: ("asc" | "desc")[] | undefined;
757
758
  } | undefined;
758
759
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoice[]>;
759
760
  /** Get list of Orders. */
@@ -124,7 +124,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
124
124
  lockedBy?: {
125
125
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
126
126
  } | undefined;
127
- processes?: string[] | undefined;
128
127
  projectId?: string | undefined;
129
128
  screenshotId?: string | undefined;
130
129
  screenshotRef?: string | undefined;
@@ -163,7 +162,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
163
162
  lockedBy?: {
164
163
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
165
164
  } | undefined;
166
- processes?: string[] | undefined;
167
165
  projectId?: string | undefined;
168
166
  screenshotId?: string | undefined;
169
167
  screenshotRef?: string | undefined;
@@ -5361,6 +5359,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5361
5359
  limit?: number | undefined;
5362
5360
  skip?: number | undefined;
5363
5361
  page?: number | undefined;
5362
+ sort?: "invoiceNumber"[] | undefined;
5363
+ order?: ("asc" | "desc")[] | undefined;
5364
5364
  } | undefined;
5365
5365
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5366
5366
  headers?: Partial<{
@@ -5376,6 +5376,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5376
5376
  limit?: number | undefined;
5377
5377
  skip?: number | undefined;
5378
5378
  page?: number | undefined;
5379
+ sort?: "invoiceNumber"[] | undefined;
5380
+ order?: ("asc" | "desc")[] | undefined;
5379
5381
  } & Partial<{
5380
5382
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5381
5383
  }>;
@@ -5405,6 +5407,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5405
5407
  limit?: number | undefined;
5406
5408
  skip?: number | undefined;
5407
5409
  page?: number | undefined;
5410
+ sort?: "invoiceNumber"[] | undefined;
5411
+ order?: ("asc" | "desc")[] | undefined;
5408
5412
  } & Partial<{
5409
5413
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5410
5414
  }>;
@@ -1717,11 +1717,6 @@ export declare namespace MittwaldAPIV2 {
1717
1717
  lockedBy?: {
1718
1718
  [k: string]: MittwaldAPIV2.Components.Schemas.AppLockPurpose;
1719
1719
  };
1720
- /**
1721
- * @deprecated
1722
- * Unused, will be removed in the future.
1723
- */
1724
- processes?: string[];
1725
1720
  projectId?: string;
1726
1721
  screenshotId?: string;
1727
1722
  screenshotRef?: string;
@@ -5081,6 +5076,9 @@ export declare namespace MittwaldAPIV2 {
5081
5076
  value: string;
5082
5077
  }
5083
5078
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5079
+ interface VerificationEmailDetectPhishingMailResponse {
5080
+ result: MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
5081
+ }
5084
5082
  interface CommonsAddress {
5085
5083
  street: string;
5086
5084
  houseNumber: string;
@@ -13081,6 +13079,7 @@ export declare namespace MittwaldAPIV2 {
13081
13079
  }
13082
13080
  }
13083
13081
  namespace V2AppinstallationsAppInstallationIdDatabases { }
13082
+ namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
13084
13083
  namespace V2CustomersCustomerIdActionsLeave { }
13085
13084
  namespace V2DnsZonesZoneIdRecordsetAcombinedCustom { }
13086
13085
  namespace V2DnsZonesZoneIdRecordsetAcombinedManagedIngress { }
@@ -17777,6 +17776,8 @@ export declare namespace MittwaldAPIV2 {
17777
17776
  limit?: number;
17778
17777
  skip?: number;
17779
17778
  page?: number;
17779
+ sort?: "invoiceNumber"[];
17780
+ order?: ("asc" | "desc")[];
17780
17781
  };
17781
17782
  }
17782
17783
  namespace Responses {
@@ -25815,9 +25816,7 @@ export declare namespace MittwaldAPIV2 {
25815
25816
  namespace Responses {
25816
25817
  namespace $200 {
25817
25818
  namespace Content {
25818
- interface ApplicationJson {
25819
- result: MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
25820
- }
25819
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.VerificationEmailDetectPhishingMailResponse;
25821
25820
  }
25822
25821
  }
25823
25822
  namespace $400 {
@@ -25938,6 +25937,5 @@ export declare namespace MittwaldAPIV2 {
25938
25937
  }
25939
25938
  }
25940
25939
  }
25941
- namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
25942
25940
  }
25943
25941
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.178.0';
1
+ export declare const MittwaldAPIClientVersion = '4.179.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-5f2817b-20250709",
3
+ "version": "0.0.0-development-7e09328-20250710",
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",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^0.0.0-development-5f2817b-20250709",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-7e09328-20250710",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-5f2817b-20250709",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-7e09328-20250710",
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": "3de4dc79101f613a561279de5289158ec2c29fef"
83
+ "gitHead": "7b2e266789aa92f85a6cbf0e7a7ed82b59ce434d"
84
84
  }