@mittwald/api-client 4.452.0 → 4.453.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.
@@ -30,10 +30,6 @@ export declare namespace MittwaldAPIV2 {
30
30
  type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetDetailedModels>;
31
31
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetDetailedModels, TStatus>;
32
32
  }
33
- namespace AiHostingCustomerGetUsage {
34
- type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetUsage>;
35
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetUsage, TStatus>;
36
- }
37
33
  namespace AiHostingGetModels {
38
34
  type RequestData = InferredRequestData<typeof descriptors.aiHostingGetModels>;
39
35
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingGetModels, TStatus>;
@@ -62,10 +58,6 @@ export declare namespace MittwaldAPIV2 {
62
58
  type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetDetailedModels>;
63
59
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetDetailedModels, TStatus>;
64
60
  }
65
- namespace AiHostingProjectGetUsage {
66
- type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetUsage>;
67
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetUsage, TStatus>;
68
- }
69
61
  namespace AiHostingProjectLinkContainer {
70
62
  type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectLinkContainer>;
71
63
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectLinkContainer, TStatus>;
@@ -1882,6 +1874,30 @@ export declare namespace MittwaldAPIV2 {
1882
1874
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1883
1875
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1884
1876
  }
1877
+ namespace AiHostingCustomerGetPlan {
1878
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetPlan>;
1879
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetPlan, TStatus>;
1880
+ }
1881
+ namespace AiHostingCustomerUpdatePlan {
1882
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerUpdatePlan>;
1883
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerUpdatePlan, TStatus>;
1884
+ }
1885
+ namespace AiHostingCustomerGetPlans {
1886
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetPlans>;
1887
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetPlans, TStatus>;
1888
+ }
1889
+ namespace AiHostingCustomerDeclareProfile {
1890
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerDeclareProfile>;
1891
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerDeclareProfile, TStatus>;
1892
+ }
1893
+ namespace AiHostingProjectGetPlan {
1894
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetPlan>;
1895
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetPlan, TStatus>;
1896
+ }
1897
+ namespace AiHostingProjectGetPlans {
1898
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetPlans>;
1899
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetPlans, TStatus>;
1900
+ }
1885
1901
  }
1886
1902
  namespace Components {
1887
1903
  namespace Schemas {
@@ -1919,6 +1935,10 @@ export declare namespace MittwaldAPIV2 {
1919
1935
  type AihostingDetailedModelStatus = "active" | "needApproval" | "deprecated";
1920
1936
  interface AihostingKey {
1921
1937
  containerMeta?: MittwaldAPIV2.Components.Schemas.AihostingContainerMeta;
1938
+ /**
1939
+ * @deprecated
1940
+ * This Field is deprecated. Use the profileId field instead.
1941
+ */
1922
1942
  customerId?: string;
1923
1943
  /**
1924
1944
  * Indicates whether the key is blocked.
@@ -1938,6 +1958,8 @@ export declare namespace MittwaldAPIV2 {
1938
1958
  */
1939
1959
  models: string[];
1940
1960
  name: string;
1961
+ planId: string;
1962
+ profileId: string;
1941
1963
  projectId?: string;
1942
1964
  rateLimit: MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
1943
1965
  tokenUsage: MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
@@ -1950,21 +1972,7 @@ export declare namespace MittwaldAPIV2 {
1950
1972
  termsOfServiceLink: string;
1951
1973
  tokenFactor: number;
1952
1974
  }
1953
- interface AihostingPlanOptions {
1954
- customerId: string;
1955
- deletedAt?: string;
1956
- keys: MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
1957
- modelTermsApprovalRequired: boolean;
1958
- nextTokenReset: string;
1959
- rateLimit: MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
1960
- tokens: MittwaldAPIV2.Components.Schemas.AihostingPlanUsageBig;
1961
- topUsages?: {
1962
- keyId?: string;
1963
- name: string;
1964
- projectId?: string;
1965
- tokenUsed: number;
1966
- }[];
1967
- }
1975
+ type AihostingPlanOptions = MittwaldAPIV2.Components.Schemas.AihostingCustomerPlan;
1968
1976
  interface AihostingPlanUsageBig {
1969
1977
  available: number;
1970
1978
  planLimit: number;
@@ -5647,6 +5655,7 @@ export declare namespace MittwaldAPIV2 {
5647
5655
  interface OrderAIHostingOrder {
5648
5656
  customerId: string;
5649
5657
  monthlyTokens: number;
5658
+ name?: string;
5650
5659
  requestsPerMinute: number;
5651
5660
  useFreeTrial?: boolean;
5652
5661
  }
@@ -7157,6 +7166,44 @@ export declare namespace MittwaldAPIV2 {
7157
7166
  }
7158
7167
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
7159
7168
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
7169
+ interface AihostingCustomerPlan {
7170
+ customerId: string;
7171
+ deletedAt?: string;
7172
+ description: string;
7173
+ keys: MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
7174
+ modelTermsApprovalRequired: boolean;
7175
+ nextTokenReset: string;
7176
+ planId: string;
7177
+ rateLimit: MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
7178
+ tokens: MittwaldAPIV2.Components.Schemas.AihostingPlanUsageBig;
7179
+ topUsages?: {
7180
+ keyId?: string;
7181
+ name: string;
7182
+ projectId?: string;
7183
+ tokenUsed: number;
7184
+ }[];
7185
+ }
7186
+ type AihostingCustomerPlanOptions = MittwaldAPIV2.Components.Schemas.AihostingCustomerPlan;
7187
+ interface AihostingCustomerPlans {
7188
+ modelTermsApprovalRequired: boolean;
7189
+ plans: MittwaldAPIV2.Components.Schemas.AihostingCustomerPlan[];
7190
+ }
7191
+ interface AihostingProfile {
7192
+ planIds: string[];
7193
+ }
7194
+ interface AihostingProjectPlan {
7195
+ description?: string;
7196
+ keys: MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
7197
+ modelTermsApprovalRequired: boolean;
7198
+ nextTokenReset?: string;
7199
+ planId: string;
7200
+ projectId: string;
7201
+ }
7202
+ type AihostingProjectPlanOptions = MittwaldAPIV2.Components.Schemas.AihostingProjectPlans;
7203
+ interface AihostingProjectPlans {
7204
+ modelTermsApprovalRequired: boolean;
7205
+ plans: MittwaldAPIV2.Components.Schemas.AihostingProjectPlan[];
7206
+ }
7160
7207
  interface CommonsAddress {
7161
7208
  street: string;
7162
7209
  houseNumber: string;
@@ -7395,7 +7442,9 @@ export declare namespace MittwaldAPIV2 {
7395
7442
  customerId: string;
7396
7443
  };
7397
7444
  type Header = {};
7398
- type Query = {};
7445
+ type Query = {
7446
+ planId?: string;
7447
+ };
7399
7448
  }
7400
7449
  namespace Responses {
7401
7450
  namespace $200 {
@@ -7448,6 +7497,7 @@ export declare namespace MittwaldAPIV2 {
7448
7497
  interface RequestBody {
7449
7498
  createWebuiContainer?: boolean;
7450
7499
  name: string;
7500
+ planId: string;
7451
7501
  projectId?: string;
7452
7502
  }
7453
7503
  type Header = {};
@@ -7755,61 +7805,7 @@ export declare namespace MittwaldAPIV2 {
7755
7805
  }
7756
7806
  }
7757
7807
  }
7758
- namespace V2CustomersCustomerIdAiHosting {
7759
- namespace Get {
7760
- namespace Parameters {
7761
- type Path = {
7762
- customerId: string;
7763
- };
7764
- type Header = {};
7765
- type Query = {
7766
- topUsageCount?: number;
7767
- };
7768
- }
7769
- namespace Responses {
7770
- namespace $200 {
7771
- namespace Content {
7772
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingPlanOptions;
7773
- }
7774
- }
7775
- namespace $400 {
7776
- namespace Content {
7777
- interface ApplicationJson {
7778
- [k: string]: unknown;
7779
- }
7780
- }
7781
- }
7782
- namespace $403 {
7783
- namespace Content {
7784
- interface ApplicationJson {
7785
- [k: string]: unknown;
7786
- }
7787
- }
7788
- }
7789
- namespace $404 {
7790
- namespace Content {
7791
- interface ApplicationJson {
7792
- [k: string]: unknown;
7793
- }
7794
- }
7795
- }
7796
- namespace $429 {
7797
- namespace Content {
7798
- interface ApplicationJson {
7799
- [k: string]: unknown;
7800
- }
7801
- }
7802
- }
7803
- namespace Default {
7804
- namespace Content {
7805
- interface ApplicationJson {
7806
- [k: string]: unknown;
7807
- }
7808
- }
7809
- }
7810
- }
7811
- }
7812
- }
7808
+ namespace V2CustomersCustomerIdAiHosting { }
7813
7809
  namespace V2AiHostingModels {
7814
7810
  namespace Get {
7815
7811
  namespace Parameters {
@@ -7868,7 +7864,9 @@ export declare namespace MittwaldAPIV2 {
7868
7864
  projectId: string;
7869
7865
  };
7870
7866
  type Header = {};
7871
- type Query = {};
7867
+ type Query = {
7868
+ planId?: string;
7869
+ };
7872
7870
  }
7873
7871
  namespace Responses {
7874
7872
  namespace $200 {
@@ -7921,6 +7919,7 @@ export declare namespace MittwaldAPIV2 {
7921
7919
  interface RequestBody {
7922
7920
  createWebuiContainer?: boolean;
7923
7921
  name: string;
7922
+ planId: string;
7924
7923
  }
7925
7924
  type Header = {};
7926
7925
  type Query = {};
@@ -8226,64 +8225,7 @@ export declare namespace MittwaldAPIV2 {
8226
8225
  }
8227
8226
  }
8228
8227
  }
8229
- namespace V2ProjectsProjectIdAiHosting {
8230
- namespace Get {
8231
- namespace Parameters {
8232
- type Path = {
8233
- projectId: string;
8234
- };
8235
- type Header = {};
8236
- type Query = {};
8237
- }
8238
- namespace Responses {
8239
- namespace $200 {
8240
- namespace Content {
8241
- interface ApplicationJson {
8242
- keys: MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
8243
- modelTermsApprovalRequired: boolean;
8244
- nextTokenReset?: string;
8245
- projectId: string;
8246
- }
8247
- }
8248
- }
8249
- namespace $400 {
8250
- namespace Content {
8251
- interface ApplicationJson {
8252
- [k: string]: unknown;
8253
- }
8254
- }
8255
- }
8256
- namespace $403 {
8257
- namespace Content {
8258
- interface ApplicationJson {
8259
- [k: string]: unknown;
8260
- }
8261
- }
8262
- }
8263
- namespace $404 {
8264
- namespace Content {
8265
- interface ApplicationJson {
8266
- [k: string]: unknown;
8267
- }
8268
- }
8269
- }
8270
- namespace $429 {
8271
- namespace Content {
8272
- interface ApplicationJson {
8273
- [k: string]: unknown;
8274
- }
8275
- }
8276
- }
8277
- namespace Default {
8278
- namespace Content {
8279
- interface ApplicationJson {
8280
- [k: string]: unknown;
8281
- }
8282
- }
8283
- }
8284
- }
8285
- }
8286
- }
8228
+ namespace V2ProjectsProjectIdAiHosting { }
8287
8229
  namespace V2ProjectsProjectIdAiHostingKeysKeyIdActionsLinkContainer {
8288
8230
  namespace Post {
8289
8231
  namespace Parameters {
@@ -13092,9 +13034,13 @@ export declare namespace MittwaldAPIV2 {
13092
13034
  };
13093
13035
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
13094
13036
  type Query = {
13037
+ search?: string;
13038
+ baseArticleNames?: string[];
13095
13039
  limit?: number;
13096
13040
  skip?: number;
13097
13041
  page?: number;
13042
+ sort?: "description" | "contractNumber";
13043
+ order?: "asc" | "desc";
13098
13044
  };
13099
13045
  }
13100
13046
  namespace Responses {
@@ -31626,5 +31572,329 @@ export declare namespace MittwaldAPIV2 {
31626
31572
  }
31627
31573
  }
31628
31574
  }
31575
+ namespace V2CustomersCustomerIdAiHostingsPlanId {
31576
+ namespace Get {
31577
+ namespace Parameters {
31578
+ type Path = {
31579
+ customerId: string;
31580
+ planId: string;
31581
+ };
31582
+ type Header = {};
31583
+ type Query = {
31584
+ topUsageCount?: number;
31585
+ };
31586
+ }
31587
+ namespace Responses {
31588
+ namespace $200 {
31589
+ namespace Content {
31590
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingCustomerPlan;
31591
+ }
31592
+ }
31593
+ namespace $400 {
31594
+ namespace Content {
31595
+ interface ApplicationJson {
31596
+ [k: string]: unknown;
31597
+ }
31598
+ }
31599
+ }
31600
+ namespace $403 {
31601
+ namespace Content {
31602
+ interface ApplicationJson {
31603
+ [k: string]: unknown;
31604
+ }
31605
+ }
31606
+ }
31607
+ namespace $404 {
31608
+ namespace Content {
31609
+ interface ApplicationJson {
31610
+ [k: string]: unknown;
31611
+ }
31612
+ }
31613
+ }
31614
+ namespace $429 {
31615
+ namespace Content {
31616
+ interface ApplicationJson {
31617
+ [k: string]: unknown;
31618
+ }
31619
+ }
31620
+ }
31621
+ namespace Default {
31622
+ namespace Content {
31623
+ interface ApplicationJson {
31624
+ [k: string]: unknown;
31625
+ }
31626
+ }
31627
+ }
31628
+ }
31629
+ }
31630
+ namespace Put {
31631
+ namespace Parameters {
31632
+ type Path = {
31633
+ customerId: string;
31634
+ planId: string;
31635
+ };
31636
+ interface RequestBody {
31637
+ description?: string;
31638
+ }
31639
+ type Header = {};
31640
+ type Query = {};
31641
+ }
31642
+ namespace Responses {
31643
+ namespace $204 {
31644
+ namespace Content {
31645
+ type Empty = unknown;
31646
+ }
31647
+ }
31648
+ namespace $400 {
31649
+ namespace Content {
31650
+ interface ApplicationJson {
31651
+ [k: string]: unknown;
31652
+ }
31653
+ }
31654
+ }
31655
+ namespace $403 {
31656
+ namespace Content {
31657
+ interface ApplicationJson {
31658
+ [k: string]: unknown;
31659
+ }
31660
+ }
31661
+ }
31662
+ namespace $404 {
31663
+ namespace Content {
31664
+ interface ApplicationJson {
31665
+ [k: string]: unknown;
31666
+ }
31667
+ }
31668
+ }
31669
+ namespace $429 {
31670
+ namespace Content {
31671
+ interface ApplicationJson {
31672
+ [k: string]: unknown;
31673
+ }
31674
+ }
31675
+ }
31676
+ namespace Default {
31677
+ namespace Content {
31678
+ interface ApplicationJson {
31679
+ [k: string]: unknown;
31680
+ }
31681
+ }
31682
+ }
31683
+ }
31684
+ }
31685
+ }
31686
+ namespace V2CustomersCustomerIdAiHostings {
31687
+ namespace Get {
31688
+ namespace Parameters {
31689
+ type Path = {
31690
+ customerId: string;
31691
+ };
31692
+ type Header = {};
31693
+ type Query = {
31694
+ topUsageCount?: number;
31695
+ };
31696
+ }
31697
+ namespace Responses {
31698
+ namespace $200 {
31699
+ namespace Content {
31700
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingCustomerPlans;
31701
+ }
31702
+ }
31703
+ namespace $400 {
31704
+ namespace Content {
31705
+ interface ApplicationJson {
31706
+ [k: string]: unknown;
31707
+ }
31708
+ }
31709
+ }
31710
+ namespace $403 {
31711
+ namespace Content {
31712
+ interface ApplicationJson {
31713
+ [k: string]: unknown;
31714
+ }
31715
+ }
31716
+ }
31717
+ namespace $404 {
31718
+ namespace Content {
31719
+ interface ApplicationJson {
31720
+ [k: string]: unknown;
31721
+ }
31722
+ }
31723
+ }
31724
+ namespace $429 {
31725
+ namespace Content {
31726
+ interface ApplicationJson {
31727
+ [k: string]: unknown;
31728
+ }
31729
+ }
31730
+ }
31731
+ namespace Default {
31732
+ namespace Content {
31733
+ interface ApplicationJson {
31734
+ [k: string]: unknown;
31735
+ }
31736
+ }
31737
+ }
31738
+ }
31739
+ }
31740
+ namespace Post {
31741
+ namespace Parameters {
31742
+ type Path = {
31743
+ customerId: string;
31744
+ };
31745
+ type Header = {};
31746
+ type Query = {};
31747
+ }
31748
+ namespace Responses {
31749
+ namespace $204 {
31750
+ namespace Content {
31751
+ type Empty = unknown;
31752
+ }
31753
+ }
31754
+ namespace $400 {
31755
+ namespace Content {
31756
+ interface ApplicationJson {
31757
+ [k: string]: unknown;
31758
+ }
31759
+ }
31760
+ }
31761
+ namespace $403 {
31762
+ namespace Content {
31763
+ interface ApplicationJson {
31764
+ [k: string]: unknown;
31765
+ }
31766
+ }
31767
+ }
31768
+ namespace $404 {
31769
+ namespace Content {
31770
+ interface ApplicationJson {
31771
+ [k: string]: unknown;
31772
+ }
31773
+ }
31774
+ }
31775
+ namespace $429 {
31776
+ namespace Content {
31777
+ interface ApplicationJson {
31778
+ [k: string]: unknown;
31779
+ }
31780
+ }
31781
+ }
31782
+ namespace Default {
31783
+ namespace Content {
31784
+ interface ApplicationJson {
31785
+ [k: string]: unknown;
31786
+ }
31787
+ }
31788
+ }
31789
+ }
31790
+ }
31791
+ }
31792
+ namespace V2ProjectsProjectIdAiHostingsPlanId {
31793
+ namespace Get {
31794
+ namespace Parameters {
31795
+ type Path = {
31796
+ projectId: string;
31797
+ planId: string;
31798
+ };
31799
+ type Header = {};
31800
+ type Query = {};
31801
+ }
31802
+ namespace Responses {
31803
+ namespace $200 {
31804
+ namespace Content {
31805
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingProjectPlan;
31806
+ }
31807
+ }
31808
+ namespace $400 {
31809
+ namespace Content {
31810
+ interface ApplicationJson {
31811
+ [k: string]: unknown;
31812
+ }
31813
+ }
31814
+ }
31815
+ namespace $403 {
31816
+ namespace Content {
31817
+ interface ApplicationJson {
31818
+ [k: string]: unknown;
31819
+ }
31820
+ }
31821
+ }
31822
+ namespace $404 {
31823
+ namespace Content {
31824
+ interface ApplicationJson {
31825
+ [k: string]: unknown;
31826
+ }
31827
+ }
31828
+ }
31829
+ namespace $429 {
31830
+ namespace Content {
31831
+ interface ApplicationJson {
31832
+ [k: string]: unknown;
31833
+ }
31834
+ }
31835
+ }
31836
+ namespace Default {
31837
+ namespace Content {
31838
+ interface ApplicationJson {
31839
+ [k: string]: unknown;
31840
+ }
31841
+ }
31842
+ }
31843
+ }
31844
+ }
31845
+ }
31846
+ namespace V2ProjectsProjectIdAiHostings {
31847
+ namespace Get {
31848
+ namespace Parameters {
31849
+ type Path = {
31850
+ projectId: string;
31851
+ };
31852
+ type Header = {};
31853
+ type Query = {};
31854
+ }
31855
+ namespace Responses {
31856
+ namespace $200 {
31857
+ namespace Content {
31858
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingProjectPlans;
31859
+ }
31860
+ }
31861
+ namespace $400 {
31862
+ namespace Content {
31863
+ interface ApplicationJson {
31864
+ [k: string]: unknown;
31865
+ }
31866
+ }
31867
+ }
31868
+ namespace $403 {
31869
+ namespace Content {
31870
+ interface ApplicationJson {
31871
+ [k: string]: unknown;
31872
+ }
31873
+ }
31874
+ }
31875
+ namespace $404 {
31876
+ namespace Content {
31877
+ interface ApplicationJson {
31878
+ [k: string]: unknown;
31879
+ }
31880
+ }
31881
+ }
31882
+ namespace $429 {
31883
+ namespace Content {
31884
+ interface ApplicationJson {
31885
+ [k: string]: unknown;
31886
+ }
31887
+ }
31888
+ }
31889
+ namespace Default {
31890
+ namespace Content {
31891
+ interface ApplicationJson {
31892
+ [k: string]: unknown;
31893
+ }
31894
+ }
31895
+ }
31896
+ }
31897
+ }
31898
+ }
31629
31899
  }
31630
31900
  }