@mittwald/api-client 4.178.0 → 4.179.0

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.
@@ -295,10 +295,6 @@ const buildMailApi = (baseClient) => ({
295
295
  /** List mail settings of a Project. */
296
296
  listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
297
297
  });
298
- const buildMiscApi = (baseClient) => ({
299
- /** Get a list of currently active llm models. */
300
- getLlmModelsExperimental: new ApiCallAsyncResourceFactory(descriptors.miscGetLlmModelsExperimental, baseClient.misc.getLlmModelsExperimental).getApiResource,
301
- });
302
298
  const buildNotificationApi = (baseClient) => ({
303
299
  /** Getting the subscription status of the subscription. */
304
300
  newsletterGetInfo: new ApiCallAsyncResourceFactory(descriptors.newsletterGetInfo, baseClient.notification.newsletterGetInfo).getApiResource,
@@ -350,8 +346,6 @@ const buildUserApi = (baseClient) => ({
350
346
  supportCodeRequest: new ApiCallAsyncResourceFactory(descriptors.userSupportCodeRequest, baseClient.user.supportCodeRequest).getApiResource,
351
347
  });
352
348
  const buildProjectApi = (baseClient) => ({
353
- /** Get a list of already created llm licences. */
354
- getLlmLicencesExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicencesExperimental, baseClient.project.getLlmLicencesExperimental).getApiResource,
355
349
  /** List Invites belonging to a Project. */
356
350
  listInvitesForProject: new ApiCallAsyncResourceFactory(descriptors.projectListInvitesForProject, baseClient.project.listInvitesForProject).getApiResource,
357
351
  /** Get a ProjectInvite. */
@@ -360,8 +354,6 @@ const buildProjectApi = (baseClient) => ({
360
354
  getProjectMembership: new ApiCallAsyncResourceFactory(descriptors.projectGetProjectMembership, baseClient.project.getProjectMembership).getApiResource,
361
355
  /** Get a Project. */
362
356
  getProject: new ApiCallAsyncResourceFactory(descriptors.projectGetProject, baseClient.project.getProject).getApiResource,
363
- /** Get a licence of a project. */
364
- getLlmLicenceExperimental: new ApiCallAsyncResourceFactory(descriptors.projectGetLlmLicenceExperimental, baseClient.project.getLlmLicenceExperimental).getApiResource,
365
357
  /** Get a ProjectInvite by token. */
366
358
  getProjectTokenInvite: new ApiCallAsyncResourceFactory(descriptors.projectGetProjectTokenInvite, baseClient.project.getProjectTokenInvite).getApiResource,
367
359
  /** Get the executing user's membership in a Project. */
@@ -434,8 +426,6 @@ export class MittwaldAPIV2ClientReact {
434
426
  leadFyndr;
435
427
  /** The mail API allows you to manage your mail accounts. */
436
428
  mail;
437
- /** API endpoints that are not related to any specific API domain */
438
- misc;
439
429
  /** The notification API allows you to manage your notifications. */
440
430
  notification;
441
431
  /** The page insights API allows you to get page insights information. */
@@ -463,7 +453,6 @@ export class MittwaldAPIV2ClientReact {
463
453
  this.file = buildFileApi(baseClient);
464
454
  this.leadFyndr = buildLeadFyndrApi(baseClient);
465
455
  this.mail = buildMailApi(baseClient);
466
- this.misc = buildMiscApi(baseClient);
467
456
  this.notification = buildNotificationApi(baseClient);
468
457
  this.pageInsights = buildPageInsightsApi(baseClient);
469
458
  this.user = buildUserApi(baseClient);
@@ -754,17 +754,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
754
754
  /** Removes a reservation on a unlocked lead for the given customerId. */
755
755
  leadfyndrRemoveUnlockedLeadReservation: this.requestFunctionFactory(descriptors.leadfyndrRemoveUnlockedLeadReservation),
756
756
  };
757
- /** API endpoints that are not related to any specific API domain */
758
- misc = {
759
- /** Get a list of currently active llm models. */
760
- getLlmModelsExperimental: this.requestFunctionFactory(descriptors.miscGetLlmModelsExperimental),
761
- /** Obtain a service token. */
762
- servicetokenAuthenticateService: this.requestFunctionFactory(descriptors.servicetokenAuthenticateService),
763
- /** Check if an address exists. */
764
- verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
765
- /** Check if a company exists. */
766
- verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
767
- };
768
757
  /** The page insights API allows you to get page insights information. */
769
758
  pageInsights = {
770
759
  /** Get detailed performance data for a given domain and path. */
@@ -780,10 +769,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
780
769
  project = {
781
770
  /** Accept a ProjectInvite. */
782
771
  acceptProjectInvite: this.requestFunctionFactory(descriptors.projectAcceptProjectInvite),
783
- /** Get a list of already created llm licences. */
784
- getLlmLicencesExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicencesExperimental),
785
- /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
786
- createLlmBetaLicenceExperimental: this.requestFunctionFactory(descriptors.projectCreateLlmBetaLicenceExperimental),
787
772
  /** List Invites belonging to a Project. */
788
773
  listInvitesForProject: this.requestFunctionFactory(descriptors.projectListInvitesForProject),
789
774
  /** Create a ProjectInvite. */
@@ -814,10 +799,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
814
799
  requestServerAvatarUpload: this.requestFunctionFactory(descriptors.projectRequestServerAvatarUpload),
815
800
  /** Delete a Server's avatar. */
816
801
  deleteServerAvatar: this.requestFunctionFactory(descriptors.projectDeleteServerAvatar),
817
- /** Get a licence of a project. */
818
- getLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectGetLlmLicenceExperimental),
819
- /** Update a llm Licence for a project. */
820
- updateLlmLicenceExperimental: this.requestFunctionFactory(descriptors.projectUpdateLlmLicenceExperimental),
821
802
  /** Get a ProjectInvite by token. */
822
803
  getProjectTokenInvite: this.requestFunctionFactory(descriptors.projectGetProjectTokenInvite),
823
804
  /** Get the executing user's membership in a Project. */
@@ -869,6 +850,15 @@ export class MittwaldAPIV2Client extends ApiClientBase {
869
850
  /** Relocate an external Project to mittwald. */
870
851
  createRelocation: this.requestFunctionFactory(descriptors.relocationCreateRelocation),
871
852
  };
853
+ /** API endpoints that are not related to any specific API domain */
854
+ misc = {
855
+ /** Obtain a service token. */
856
+ servicetokenAuthenticateService: this.requestFunctionFactory(descriptors.servicetokenAuthenticateService),
857
+ /** Check if an address exists. */
858
+ verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
859
+ /** Check if a company exists. */
860
+ verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
861
+ };
872
862
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
873
863
  sshsftpUser = {
874
864
  /** Get all SFTPUsers for a Project. */
@@ -1648,12 +1648,6 @@ export const marketplaceCustomerUpdatePaymentMethod = {
1648
1648
  method: "PUT",
1649
1649
  operationId: "marketplace-customer-update-payment-method",
1650
1650
  };
1651
- /** Get a list of currently active llm models. */
1652
- export const miscGetLlmModelsExperimental = {
1653
- path: "/v2-experimental/llm-models",
1654
- method: "GET",
1655
- operationId: "misc-get-llm-models-experimental",
1656
- };
1657
1651
  /** Getting the subscription status of the subscription. */
1658
1652
  export const newsletterGetInfo = {
1659
1653
  path: "/v2/newsletter-subscriptions/self",
@@ -1774,18 +1768,6 @@ export const projectAcceptProjectInvite = {
1774
1768
  method: "POST",
1775
1769
  operationId: "project-accept-project-invite",
1776
1770
  };
1777
- /** Get a list of already created llm licences. */
1778
- export const projectGetLlmLicencesExperimental = {
1779
- path: "/v2-experimental/projects/{projectId}/llm-licences",
1780
- method: "GET",
1781
- operationId: "project-get-llm-licences-experimental",
1782
- };
1783
- /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
1784
- export const projectCreateLlmBetaLicenceExperimental = {
1785
- path: "/v2-experimental/projects/{projectId}/llm-licences",
1786
- method: "POST",
1787
- operationId: "project-create-llm-beta-licence-experimental",
1788
- };
1789
1771
  /** List Invites belonging to a Project. */
1790
1772
  export const projectListInvitesForProject = {
1791
1773
  path: "/v2/projects/{projectId}/invites",
@@ -1906,18 +1888,6 @@ export const projectFileSystemListFiles = {
1906
1888
  method: "GET",
1907
1889
  operationId: "project-file-system-list-files",
1908
1890
  };
1909
- /** Get a licence of a project. */
1910
- export const projectGetLlmLicenceExperimental = {
1911
- path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
1912
- method: "GET",
1913
- operationId: "project-get-llm-licence-experimental",
1914
- };
1915
- /** Update a llm Licence for a project. */
1916
- export const projectUpdateLlmLicenceExperimental = {
1917
- path: "/v2-experimental/projects/{projectId}/llm-licences/{licenceId}",
1918
- method: "PUT",
1919
- operationId: "project-update-llm-licence-experimental",
1920
- };
1921
1891
  /** Get a ProjectInvite by token. */
1922
1892
  export const projectGetProjectTokenInvite = {
1923
1893
  path: "/v2/project-token-invite",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.177.0';
1
+ export const MittwaldAPIClientVersion = '4.178.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. */
@@ -2272,14 +2273,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2272
2273
  whitelist: string[];
2273
2274
  }>;
2274
2275
  };
2275
- declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
2276
- /** Get a list of currently active llm models. */
2277
- getLlmModelsExperimental: (conf?: {
2278
- headers?: {
2279
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2280
- } | undefined;
2281
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[]>;
2282
- };
2283
2276
  declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
2284
2277
  /** Getting the subscription status of the subscription. */
2285
2278
  newsletterGetInfo: (conf?: {
@@ -2599,13 +2592,6 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2599
2592
  }>;
2600
2593
  };
2601
2594
  declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2602
- /** Get a list of already created llm licences. */
2603
- getLlmLicencesExperimental: (conf: {
2604
- projectId: string;
2605
- headers?: {
2606
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2607
- } | undefined;
2608
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[]>;
2609
2595
  /** List Invites belonging to a Project. */
2610
2596
  listInvitesForProject: (conf: {
2611
2597
  projectId: string;
@@ -2696,23 +2682,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2696
2682
  webStorageUsageInBytes: number;
2697
2683
  webStorageUsageInBytesSetAt: string;
2698
2684
  }>;
2699
- /** Get a licence of a project. */
2700
- getLlmLicenceExperimental: (conf: {
2701
- projectId: string;
2702
- licenceId: string;
2703
- headers?: {
2704
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2705
- } | undefined;
2706
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2707
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
2708
- customerId?: string | undefined;
2709
- licenceId: string;
2710
- licenceKey: string;
2711
- models: string[];
2712
- name: string;
2713
- projectId?: string | undefined;
2714
- rateLimit: number;
2715
- }>;
2716
2685
  /** Get a ProjectInvite by token. */
2717
2686
  getProjectTokenInvite: (conf: {
2718
2687
  headers: {
@@ -3098,8 +3067,6 @@ export declare class MittwaldAPIV2ClientReact {
3098
3067
  readonly leadFyndr: ReturnType<typeof buildLeadFyndrApi>;
3099
3068
  /** The mail API allows you to manage your mail accounts. */
3100
3069
  readonly mail: ReturnType<typeof buildMailApi>;
3101
- /** API endpoints that are not related to any specific API domain */
3102
- readonly misc: ReturnType<typeof buildMiscApi>;
3103
3070
  /** The notification API allows you to manage your notifications. */
3104
3071
  readonly notification: ReturnType<typeof buildNotificationApi>;
3105
3072
  /** The page insights API allows you to get page insights information. */