@mittwald/api-client 0.0.0-development-dc71647-20250826 → 0.0.0-development-dbfaa98-20250828

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.
@@ -311,6 +311,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
311
311
  customerGetPaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerGetPaymentMethod),
312
312
  /** Get the link to update the marketplace payment method */
313
313
  customerUpdatePaymentMethod: this.requestFunctionFactory(descriptors.marketplaceCustomerUpdatePaymentMethod),
314
+ /** Express interest to be a contributor. */
315
+ contributorExpressInterestToContribute: this.requestFunctionFactory(descriptors.contributorExpressInterestToContribute),
314
316
  };
315
317
  /** The conversation API allows you to manage your support conversations. */
316
318
  conversation = {
@@ -2536,3 +2536,9 @@ export const verificationVerifyCompany = {
2536
2536
  method: "POST",
2537
2537
  operationId: "verification-verify-company",
2538
2538
  };
2539
+ /** Express interest to be a contributor. */
2540
+ export const contributorExpressInterestToContribute = {
2541
+ path: "/v2/customers/{customerId}/contributor",
2542
+ method: "POST",
2543
+ operationId: "contributor-express-interest-to-contribute",
2544
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.207.0';
1
+ export const MittwaldAPIClientVersion = '0.0.0-development-6c3be68-20250827';
@@ -462,6 +462,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
462
462
  getServiceLogs: (conf: {
463
463
  stackId: string;
464
464
  serviceId: string;
465
+ queryParameters?: {
466
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
467
+ tail?: number | undefined;
468
+ } | undefined;
465
469
  headers?: {
466
470
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
467
471
  "x-access-token"?: string | undefined;
@@ -927,6 +931,14 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
927
931
  /** List incoming Invoices of a Contributor. */
928
932
  contributorListIncomingInvoices: (conf: {
929
933
  contributorId: string;
934
+ queryParameters?: {
935
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
936
+ limit?: number | undefined;
937
+ skip?: number | undefined;
938
+ page?: number | undefined;
939
+ sort?: "invoiceNumber"[] | undefined;
940
+ order?: ("asc" | "desc")[] | undefined;
941
+ } | undefined;
930
942
  headers?: {
931
943
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
932
944
  "x-access-token"?: string | undefined;
@@ -2290,6 +2302,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2290
2302
  forwardAddress?: boolean | undefined;
2291
2303
  catchAll?: boolean | undefined;
2292
2304
  autoResponder?: boolean | undefined;
2305
+ mailArchive?: boolean | undefined;
2293
2306
  limit?: number | undefined;
2294
2307
  skip?: number | undefined;
2295
2308
  page?: number | undefined;
@@ -3400,6 +3400,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3400
3400
  getServiceLogs: (request: {
3401
3401
  stackId: string;
3402
3402
  serviceId: string;
3403
+ queryParameters?: {
3404
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3405
+ tail?: number | undefined;
3406
+ } | undefined;
3403
3407
  headers?: {
3404
3408
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3405
3409
  "x-access-token"?: string | undefined;
@@ -3413,6 +3417,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3413
3417
  stackId: string;
3414
3418
  serviceId: string;
3415
3419
  };
3420
+ } & {
3421
+ queryParameters: {
3422
+ tail?: number | undefined;
3423
+ } & Partial<{
3424
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3425
+ }>;
3416
3426
  } & {
3417
3427
  headers: {
3418
3428
  "x-access-token"?: string | undefined;
@@ -3438,6 +3448,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3438
3448
  stackId: string;
3439
3449
  serviceId: string;
3440
3450
  };
3451
+ } & {
3452
+ queryParameters: {
3453
+ tail?: number | undefined;
3454
+ } & Partial<{
3455
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3456
+ }>;
3441
3457
  } & {
3442
3458
  headers: {
3443
3459
  "x-access-token"?: string | undefined;
@@ -6582,6 +6598,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6582
6598
  /** List incoming Invoices of a Contributor. */
6583
6599
  contributorListIncomingInvoices: (request: {
6584
6600
  contributorId: string;
6601
+ queryParameters?: {
6602
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6603
+ limit?: number | undefined;
6604
+ skip?: number | undefined;
6605
+ page?: number | undefined;
6606
+ sort?: "invoiceNumber"[] | undefined;
6607
+ order?: ("asc" | "desc")[] | undefined;
6608
+ } | undefined;
6585
6609
  headers?: {
6586
6610
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6587
6611
  "x-access-token"?: string | undefined;
@@ -6594,6 +6618,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6594
6618
  pathParameters: {
6595
6619
  contributorId: string;
6596
6620
  };
6621
+ } & {
6622
+ queryParameters: {
6623
+ limit?: number | undefined;
6624
+ skip?: number | undefined;
6625
+ page?: number | undefined;
6626
+ sort?: "invoiceNumber"[] | undefined;
6627
+ order?: ("asc" | "desc")[] | undefined;
6628
+ } & Partial<{
6629
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6630
+ }>;
6597
6631
  } & {
6598
6632
  headers: {
6599
6633
  "x-access-token"?: string | undefined;
@@ -6626,6 +6660,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6626
6660
  pathParameters: {
6627
6661
  contributorId: string;
6628
6662
  };
6663
+ } & {
6664
+ queryParameters: {
6665
+ limit?: number | undefined;
6666
+ skip?: number | undefined;
6667
+ page?: number | undefined;
6668
+ sort?: "invoiceNumber"[] | undefined;
6669
+ order?: ("asc" | "desc")[] | undefined;
6670
+ } & Partial<{
6671
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6672
+ }>;
6629
6673
  } & {
6630
6674
  headers: {
6631
6675
  "x-access-token"?: string | undefined;
@@ -9873,6 +9917,101 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9873
9917
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
9874
9918
  [x: string]: unknown;
9875
9919
  }, 429, "application/json">>>;
9920
+ /** Express interest to be a contributor. */
9921
+ contributorExpressInterestToContribute: (request: {
9922
+ customerId: string;
9923
+ data?: {
9924
+ deviatingContactPersonUserId?: string | undefined;
9925
+ deviatingContractOwner?: {
9926
+ salutation: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsSalutation;
9927
+ address: {
9928
+ street: string;
9929
+ houseNumber: string;
9930
+ city: string;
9931
+ zip: string;
9932
+ countryCode: string;
9933
+ addressPrefix?: string | undefined;
9934
+ };
9935
+ firstName?: string | undefined;
9936
+ lastName?: string | undefined;
9937
+ title?: string | undefined;
9938
+ company?: string | undefined;
9939
+ emailAddress?: string | undefined;
9940
+ phoneNumbers?: string[] | undefined;
9941
+ useFormalTerm?: boolean | undefined;
9942
+ } | undefined;
9943
+ deviatingName?: string | undefined;
9944
+ deviatingSupportInformation?: {
9945
+ email: string;
9946
+ phone?: string | undefined;
9947
+ } | undefined;
9948
+ imprint?: {
9949
+ text: string;
9950
+ } | {
9951
+ url: string;
9952
+ } | undefined;
9953
+ } | undefined;
9954
+ headers?: {
9955
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
9956
+ "x-access-token"?: string | undefined;
9957
+ } | undefined;
9958
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
9959
+ data: {
9960
+ deviatingContactPersonUserId?: string | undefined;
9961
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9962
+ deviatingName?: string | undefined;
9963
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9964
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9965
+ };
9966
+ } & {
9967
+ pathParameters: {
9968
+ customerId: string;
9969
+ };
9970
+ } & {
9971
+ headers?: Partial<{
9972
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9973
+ }>;
9974
+ } & {
9975
+ headers: {
9976
+ "x-access-token"?: string | undefined;
9977
+ } & Partial<{
9978
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9979
+ }>;
9980
+ }, import("@mittwald/api-client-commons").Response<{
9981
+ id: string;
9982
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
9983
+ [x: string]: unknown;
9984
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
9985
+ [x: string]: unknown;
9986
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
9987
+ data: {
9988
+ deviatingContactPersonUserId?: string | undefined;
9989
+ deviatingContractOwner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsContact | undefined;
9990
+ deviatingName?: string | undefined;
9991
+ deviatingSupportInformation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
9992
+ imprint?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint | undefined;
9993
+ };
9994
+ } & {
9995
+ pathParameters: {
9996
+ customerId: string;
9997
+ };
9998
+ } & {
9999
+ headers?: Partial<{
10000
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10001
+ }>;
10002
+ } & {
10003
+ headers: {
10004
+ "x-access-token"?: string | undefined;
10005
+ } & Partial<{
10006
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10007
+ }>;
10008
+ }, import("@mittwald/api-client-commons").Response<{
10009
+ id: string;
10010
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
10011
+ [x: string]: unknown;
10012
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10013
+ [x: string]: unknown;
10014
+ }, 429, "application/json">>>;
9876
10015
  };
9877
10016
  /** The conversation API allows you to manage your support conversations. */
9878
10017
  readonly conversation: {
@@ -17451,6 +17590,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17451
17590
  forwardAddress?: boolean | undefined;
17452
17591
  catchAll?: boolean | undefined;
17453
17592
  autoResponder?: boolean | undefined;
17593
+ mailArchive?: boolean | undefined;
17454
17594
  limit?: number | undefined;
17455
17595
  skip?: number | undefined;
17456
17596
  page?: number | undefined;
@@ -17475,6 +17615,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17475
17615
  forwardAddress?: boolean | undefined;
17476
17616
  catchAll?: boolean | undefined;
17477
17617
  autoResponder?: boolean | undefined;
17618
+ mailArchive?: boolean | undefined;
17478
17619
  limit?: number | undefined;
17479
17620
  skip?: number | undefined;
17480
17621
  page?: number | undefined;
@@ -17515,6 +17656,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17515
17656
  forwardAddress?: boolean | undefined;
17516
17657
  catchAll?: boolean | undefined;
17517
17658
  autoResponder?: boolean | undefined;
17659
+ mailArchive?: boolean | undefined;
17518
17660
  limit?: number | undefined;
17519
17661
  skip?: number | undefined;
17520
17662
  page?: number | undefined;
@@ -849,3 +849,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
849
849
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
850
850
  /** Check if a company exists. */
851
851
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
852
+ /** Express interest to be a contributor. */
853
+ export declare const contributorExpressInterestToContribute: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContributor.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1694,6 +1694,10 @@ export declare namespace MittwaldAPIV2 {
1694
1694
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1695
1695
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1696
1696
  }
1697
+ namespace ContributorExpressInterestToContribute {
1698
+ type RequestData = InferredRequestData<typeof descriptors.contributorExpressInterestToContribute>;
1699
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorExpressInterestToContribute, TStatus>;
1700
+ }
1697
1701
  }
1698
1702
  namespace Components {
1699
1703
  namespace Schemas {
@@ -1702,6 +1706,17 @@ export declare namespace MittwaldAPIV2 {
1702
1706
  */
1703
1707
  type AppAction = "start" | "stop" | "restart";
1704
1708
  type AppActionCapabilities = MittwaldAPIV2.Components.Schemas.AppAction[];
1709
+ /**
1710
+ * AdditionalValidationSchema is a stringified custom validation schema, e.g password rules.
1711
+ */
1712
+ interface AppAdditionalValidationSchema {
1713
+ kind?: MittwaldAPIV2.Components.Schemas.AppAdditionalValidationSchemaKind;
1714
+ schema?: string;
1715
+ }
1716
+ /**
1717
+ * AdditionalValidationSchemaKind is an enum, describing the possible types of an additional validation schema.
1718
+ */
1719
+ type AppAdditionalValidationSchemaKind = "password-rule";
1705
1720
  /**
1706
1721
  * An App is to be understood as a manifest for AppInstallations. E.g. 'WordPress' only exists inside our ecosystem, because there is an App -Manifest for it.
1707
1722
  */
@@ -1878,6 +1893,7 @@ export declare namespace MittwaldAPIV2 {
1878
1893
  * A UserInput is a description of an information which cannot be determined or estimated by mittwald, but has to be given by the person who is requesting an AppInstallation or SystemSoftware.
1879
1894
  */
1880
1895
  interface AppUserInput {
1896
+ additionalValidationSchema?: MittwaldAPIV2.Components.Schemas.AppAdditionalValidationSchema;
1881
1897
  /**
1882
1898
  * Optional field to tell the frontend, which data to put into the select.
1883
1899
  */
@@ -5265,6 +5281,14 @@ export declare namespace MittwaldAPIV2 {
5265
5281
  }
5266
5282
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5267
5283
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5284
+ interface MailMailArchiveAuthenticationResponse {
5285
+ archive?: string[];
5286
+ auth: string;
5287
+ displayName?: string;
5288
+ error?: string;
5289
+ mail?: string[];
5290
+ role?: string;
5291
+ }
5268
5292
  interface CommonsAddress {
5269
5293
  street: string;
5270
5294
  houseNumber: string;
@@ -7950,7 +7974,9 @@ export declare namespace MittwaldAPIV2 {
7950
7974
  serviceId: string;
7951
7975
  };
7952
7976
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
7953
- type Query = {};
7977
+ type Query = {
7978
+ tail?: number;
7979
+ };
7954
7980
  }
7955
7981
  namespace Responses {
7956
7982
  namespace $200 {
@@ -9723,7 +9749,13 @@ export declare namespace MittwaldAPIV2 {
9723
9749
  contributorId: string;
9724
9750
  };
9725
9751
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9726
- type Query = {};
9752
+ type Query = {
9753
+ limit?: number;
9754
+ skip?: number;
9755
+ page?: number;
9756
+ sort?: "invoiceNumber"[];
9757
+ order?: ("asc" | "desc")[];
9758
+ };
9727
9759
  }
9728
9760
  namespace Responses {
9729
9761
  namespace $200 {
@@ -18991,6 +19023,7 @@ export declare namespace MittwaldAPIV2 {
18991
19023
  forwardAddress?: boolean;
18992
19024
  catchAll?: boolean;
18993
19025
  autoResponder?: boolean;
19026
+ mailArchive?: boolean;
18994
19027
  limit?: number;
18995
19028
  skip?: number;
18996
19029
  page?: number;
@@ -26669,5 +26702,56 @@ export declare namespace MittwaldAPIV2 {
26669
26702
  }
26670
26703
  }
26671
26704
  }
26705
+ namespace V2CustomersCustomerIdContributor {
26706
+ namespace Post {
26707
+ namespace Parameters {
26708
+ type Path = {
26709
+ customerId: string;
26710
+ };
26711
+ interface RequestBody {
26712
+ /**
26713
+ * A user, which can be contacted by mittwald, if problems arise. If not defined, the contact person will be the executing user. The user has to be a member of the underlying customer.
26714
+ */
26715
+ deviatingContactPersonUserId?: string;
26716
+ deviatingContractOwner?: MittwaldAPIV2.Components.Schemas.CommonsContact;
26717
+ deviatingName?: string;
26718
+ deviatingSupportInformation?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
26719
+ imprint?: MittwaldAPIV2.Components.Schemas.MarketplaceContributorImprint;
26720
+ }
26721
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
26722
+ type Query = {};
26723
+ }
26724
+ namespace Responses {
26725
+ namespace $201 {
26726
+ namespace Content {
26727
+ interface ApplicationJson {
26728
+ id: string;
26729
+ }
26730
+ }
26731
+ }
26732
+ namespace $400 {
26733
+ namespace Content {
26734
+ interface ApplicationJson {
26735
+ [k: string]: unknown;
26736
+ }
26737
+ }
26738
+ }
26739
+ namespace $429 {
26740
+ namespace Content {
26741
+ interface ApplicationJson {
26742
+ [k: string]: unknown;
26743
+ }
26744
+ }
26745
+ }
26746
+ namespace Default {
26747
+ namespace Content {
26748
+ interface ApplicationJson {
26749
+ [k: string]: unknown;
26750
+ }
26751
+ }
26752
+ }
26753
+ }
26754
+ }
26755
+ }
26672
26756
  }
26673
26757
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.207.0';
1
+ export declare const MittwaldAPIClientVersion = '0.0.0-development-6c3be68-20250827';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-dc71647-20250826",
3
+ "version": "0.0.0-development-dbfaa98-20250828",
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-dc71647-20250826",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-dbfaa98-20250828",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-dc71647-20250826",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-dbfaa98-20250828",
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": "bac4d3c53fc844467fb56daf9ac2dfabf26649d0"
83
+ "gitHead": "99a2c8eb6be739034515a2696efaf2b30840f0e7"
84
84
  }