@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 MittwaldAPIV3Next {
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 MittwaldAPIV3Next {
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 MittwaldAPIV3Next {
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 MittwaldAPIV3Next {
1919
1935
  type DeMittwaldAihostingDetailedModelStatus = "active" | "needApproval" | "deprecated";
1920
1936
  interface DeMittwaldAihostingKey {
1921
1937
  containerMeta?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingContainerMeta;
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 MittwaldAPIV3Next {
1938
1958
  */
1939
1959
  models: string[];
1940
1960
  name: string;
1961
+ planId: string;
1962
+ profileId: string;
1941
1963
  projectId?: string;
1942
1964
  rateLimit: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingRateLimit;
1943
1965
  tokenUsage: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingTokenUsage;
@@ -1950,21 +1972,7 @@ export declare namespace MittwaldAPIV3Next {
1950
1972
  termsOfServiceLink: string;
1951
1973
  tokenFactor: number;
1952
1974
  }
1953
- interface DeMittwaldAihostingPlanOptions {
1954
- customerId: string;
1955
- deletedAt?: string;
1956
- keys: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingPlanUsage;
1957
- modelTermsApprovalRequired: boolean;
1958
- nextTokenReset: string;
1959
- rateLimit: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingRateLimit;
1960
- tokens: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingPlanUsageBig;
1961
- topUsages?: {
1962
- keyId?: string;
1963
- name: string;
1964
- projectId?: string;
1965
- tokenUsed: number;
1966
- }[];
1967
- }
1975
+ type DeMittwaldAihostingPlanOptions = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingCustomerPlan;
1968
1976
  interface DeMittwaldAihostingPlanUsageBig {
1969
1977
  available: number;
1970
1978
  planLimit: number;
@@ -5651,6 +5659,7 @@ export declare namespace MittwaldAPIV3Next {
5651
5659
  interface DeMittwaldOrderAIHostingOrder {
5652
5660
  customerId: string;
5653
5661
  monthlyTokens: number;
5662
+ name?: string;
5654
5663
  requestsPerMinute: number;
5655
5664
  useFreeTrial?: boolean;
5656
5665
  }
@@ -7161,6 +7170,44 @@ export declare namespace MittwaldAPIV3Next {
7161
7170
  }
7162
7171
  type DeMittwaldVerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
7163
7172
  type DeMittwaldContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
7173
+ interface DeMittwaldAihostingCustomerPlan {
7174
+ customerId: string;
7175
+ deletedAt?: string;
7176
+ description: string;
7177
+ keys: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingPlanUsage;
7178
+ modelTermsApprovalRequired: boolean;
7179
+ nextTokenReset: string;
7180
+ planId: string;
7181
+ rateLimit: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingRateLimit;
7182
+ tokens: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingPlanUsageBig;
7183
+ topUsages?: {
7184
+ keyId?: string;
7185
+ name: string;
7186
+ projectId?: string;
7187
+ tokenUsed: number;
7188
+ }[];
7189
+ }
7190
+ type DeMittwaldAihostingCustomerPlanOptions = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingCustomerPlan;
7191
+ interface DeMittwaldAihostingCustomerPlans {
7192
+ modelTermsApprovalRequired: boolean;
7193
+ plans: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingCustomerPlan[];
7194
+ }
7195
+ interface DeMittwaldAihostingProfile {
7196
+ planIds: string[];
7197
+ }
7198
+ interface DeMittwaldAihostingProjectPlan {
7199
+ description?: string;
7200
+ keys: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingPlanUsage;
7201
+ modelTermsApprovalRequired: boolean;
7202
+ nextTokenReset?: string;
7203
+ planId: string;
7204
+ projectId: string;
7205
+ }
7206
+ type DeMittwaldAihostingProjectPlanOptions = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingProjectPlans;
7207
+ interface DeMittwaldAihostingProjectPlans {
7208
+ modelTermsApprovalRequired: boolean;
7209
+ plans: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingProjectPlan[];
7210
+ }
7164
7211
  interface DeMittwaldCommonsAddress {
7165
7212
  street: string;
7166
7213
  houseNumber: string;
@@ -7399,7 +7446,9 @@ export declare namespace MittwaldAPIV3Next {
7399
7446
  customerId: string;
7400
7447
  };
7401
7448
  type Header = {};
7402
- type Query = {};
7449
+ type Query = {
7450
+ planId?: string;
7451
+ };
7403
7452
  }
7404
7453
  namespace Responses {
7405
7454
  namespace $200 {
@@ -7452,6 +7501,7 @@ export declare namespace MittwaldAPIV3Next {
7452
7501
  interface RequestBody {
7453
7502
  createWebuiContainer?: boolean;
7454
7503
  name: string;
7504
+ planId: string;
7455
7505
  projectId?: string;
7456
7506
  }
7457
7507
  type Header = {};
@@ -7759,61 +7809,7 @@ export declare namespace MittwaldAPIV3Next {
7759
7809
  }
7760
7810
  }
7761
7811
  }
7762
- namespace V3NextCustomersCustomerIdAiHosting {
7763
- namespace Get {
7764
- namespace Parameters {
7765
- type Path = {
7766
- customerId: string;
7767
- };
7768
- type Header = {};
7769
- type Query = {
7770
- topUsageCount?: number;
7771
- };
7772
- }
7773
- namespace Responses {
7774
- namespace $200 {
7775
- namespace Content {
7776
- type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingPlanOptions;
7777
- }
7778
- }
7779
- namespace $400 {
7780
- namespace Content {
7781
- interface ApplicationJson {
7782
- [k: string]: unknown;
7783
- }
7784
- }
7785
- }
7786
- namespace $403 {
7787
- namespace Content {
7788
- interface ApplicationJson {
7789
- [k: string]: unknown;
7790
- }
7791
- }
7792
- }
7793
- namespace $404 {
7794
- namespace Content {
7795
- interface ApplicationJson {
7796
- [k: string]: unknown;
7797
- }
7798
- }
7799
- }
7800
- namespace $429 {
7801
- namespace Content {
7802
- interface ApplicationJson {
7803
- [k: string]: unknown;
7804
- }
7805
- }
7806
- }
7807
- namespace Default {
7808
- namespace Content {
7809
- interface ApplicationJson {
7810
- [k: string]: unknown;
7811
- }
7812
- }
7813
- }
7814
- }
7815
- }
7816
- }
7812
+ namespace V3NextCustomersCustomerIdAiHosting { }
7817
7813
  namespace V3NextAiHostingModels {
7818
7814
  namespace Get {
7819
7815
  namespace Parameters {
@@ -7872,7 +7868,9 @@ export declare namespace MittwaldAPIV3Next {
7872
7868
  projectId: string;
7873
7869
  };
7874
7870
  type Header = {};
7875
- type Query = {};
7871
+ type Query = {
7872
+ planId?: string;
7873
+ };
7876
7874
  }
7877
7875
  namespace Responses {
7878
7876
  namespace $200 {
@@ -7925,6 +7923,7 @@ export declare namespace MittwaldAPIV3Next {
7925
7923
  interface RequestBody {
7926
7924
  createWebuiContainer?: boolean;
7927
7925
  name: string;
7926
+ planId: string;
7928
7927
  }
7929
7928
  type Header = {};
7930
7929
  type Query = {};
@@ -8230,64 +8229,7 @@ export declare namespace MittwaldAPIV3Next {
8230
8229
  }
8231
8230
  }
8232
8231
  }
8233
- namespace V3NextProjectsProjectIdAiHosting {
8234
- namespace Get {
8235
- namespace Parameters {
8236
- type Path = {
8237
- projectId: string;
8238
- };
8239
- type Header = {};
8240
- type Query = {};
8241
- }
8242
- namespace Responses {
8243
- namespace $200 {
8244
- namespace Content {
8245
- interface ApplicationJson {
8246
- keys: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingPlanUsage;
8247
- modelTermsApprovalRequired: boolean;
8248
- nextTokenReset?: string;
8249
- projectId: string;
8250
- }
8251
- }
8252
- }
8253
- namespace $400 {
8254
- namespace Content {
8255
- interface ApplicationJson {
8256
- [k: string]: unknown;
8257
- }
8258
- }
8259
- }
8260
- namespace $403 {
8261
- namespace Content {
8262
- interface ApplicationJson {
8263
- [k: string]: unknown;
8264
- }
8265
- }
8266
- }
8267
- namespace $404 {
8268
- namespace Content {
8269
- interface ApplicationJson {
8270
- [k: string]: unknown;
8271
- }
8272
- }
8273
- }
8274
- namespace $429 {
8275
- namespace Content {
8276
- interface ApplicationJson {
8277
- [k: string]: unknown;
8278
- }
8279
- }
8280
- }
8281
- namespace Default {
8282
- namespace Content {
8283
- interface ApplicationJson {
8284
- [k: string]: unknown;
8285
- }
8286
- }
8287
- }
8288
- }
8289
- }
8290
- }
8232
+ namespace V3NextProjectsProjectIdAiHosting { }
8291
8233
  namespace V3NextProjectsProjectIdAiHostingKeysKeyIdActionsLinkContainer {
8292
8234
  namespace Post {
8293
8235
  namespace Parameters {
@@ -13084,9 +13026,13 @@ export declare namespace MittwaldAPIV3Next {
13084
13026
  };
13085
13027
  type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
13086
13028
  type Query = {
13029
+ search?: string;
13030
+ baseArticleNames?: string[];
13087
13031
  limit?: number;
13088
13032
  skip?: number;
13089
13033
  page?: number;
13034
+ sort?: "description" | "contractNumber";
13035
+ order?: "asc" | "desc";
13090
13036
  };
13091
13037
  }
13092
13038
  namespace Responses {
@@ -31550,5 +31496,329 @@ export declare namespace MittwaldAPIV3Next {
31550
31496
  }
31551
31497
  }
31552
31498
  }
31499
+ namespace V3NextCustomersCustomerIdAiHostingsPlanId {
31500
+ namespace Get {
31501
+ namespace Parameters {
31502
+ type Path = {
31503
+ customerId: string;
31504
+ planId: string;
31505
+ };
31506
+ type Header = {};
31507
+ type Query = {
31508
+ topUsageCount?: number;
31509
+ };
31510
+ }
31511
+ namespace Responses {
31512
+ namespace $200 {
31513
+ namespace Content {
31514
+ type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingCustomerPlan;
31515
+ }
31516
+ }
31517
+ namespace $400 {
31518
+ namespace Content {
31519
+ interface ApplicationJson {
31520
+ [k: string]: unknown;
31521
+ }
31522
+ }
31523
+ }
31524
+ namespace $403 {
31525
+ namespace Content {
31526
+ interface ApplicationJson {
31527
+ [k: string]: unknown;
31528
+ }
31529
+ }
31530
+ }
31531
+ namespace $404 {
31532
+ namespace Content {
31533
+ interface ApplicationJson {
31534
+ [k: string]: unknown;
31535
+ }
31536
+ }
31537
+ }
31538
+ namespace $429 {
31539
+ namespace Content {
31540
+ interface ApplicationJson {
31541
+ [k: string]: unknown;
31542
+ }
31543
+ }
31544
+ }
31545
+ namespace Default {
31546
+ namespace Content {
31547
+ interface ApplicationJson {
31548
+ [k: string]: unknown;
31549
+ }
31550
+ }
31551
+ }
31552
+ }
31553
+ }
31554
+ namespace Put {
31555
+ namespace Parameters {
31556
+ type Path = {
31557
+ customerId: string;
31558
+ planId: string;
31559
+ };
31560
+ interface RequestBody {
31561
+ description?: string;
31562
+ }
31563
+ type Header = {};
31564
+ type Query = {};
31565
+ }
31566
+ namespace Responses {
31567
+ namespace $204 {
31568
+ namespace Content {
31569
+ type Empty = unknown;
31570
+ }
31571
+ }
31572
+ namespace $400 {
31573
+ namespace Content {
31574
+ interface ApplicationJson {
31575
+ [k: string]: unknown;
31576
+ }
31577
+ }
31578
+ }
31579
+ namespace $403 {
31580
+ namespace Content {
31581
+ interface ApplicationJson {
31582
+ [k: string]: unknown;
31583
+ }
31584
+ }
31585
+ }
31586
+ namespace $404 {
31587
+ namespace Content {
31588
+ interface ApplicationJson {
31589
+ [k: string]: unknown;
31590
+ }
31591
+ }
31592
+ }
31593
+ namespace $429 {
31594
+ namespace Content {
31595
+ interface ApplicationJson {
31596
+ [k: string]: unknown;
31597
+ }
31598
+ }
31599
+ }
31600
+ namespace Default {
31601
+ namespace Content {
31602
+ interface ApplicationJson {
31603
+ [k: string]: unknown;
31604
+ }
31605
+ }
31606
+ }
31607
+ }
31608
+ }
31609
+ }
31610
+ namespace V3NextCustomersCustomerIdAiHostings {
31611
+ namespace Get {
31612
+ namespace Parameters {
31613
+ type Path = {
31614
+ customerId: string;
31615
+ };
31616
+ type Header = {};
31617
+ type Query = {
31618
+ topUsageCount?: number;
31619
+ };
31620
+ }
31621
+ namespace Responses {
31622
+ namespace $200 {
31623
+ namespace Content {
31624
+ type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingCustomerPlans;
31625
+ }
31626
+ }
31627
+ namespace $400 {
31628
+ namespace Content {
31629
+ interface ApplicationJson {
31630
+ [k: string]: unknown;
31631
+ }
31632
+ }
31633
+ }
31634
+ namespace $403 {
31635
+ namespace Content {
31636
+ interface ApplicationJson {
31637
+ [k: string]: unknown;
31638
+ }
31639
+ }
31640
+ }
31641
+ namespace $404 {
31642
+ namespace Content {
31643
+ interface ApplicationJson {
31644
+ [k: string]: unknown;
31645
+ }
31646
+ }
31647
+ }
31648
+ namespace $429 {
31649
+ namespace Content {
31650
+ interface ApplicationJson {
31651
+ [k: string]: unknown;
31652
+ }
31653
+ }
31654
+ }
31655
+ namespace Default {
31656
+ namespace Content {
31657
+ interface ApplicationJson {
31658
+ [k: string]: unknown;
31659
+ }
31660
+ }
31661
+ }
31662
+ }
31663
+ }
31664
+ namespace Post {
31665
+ namespace Parameters {
31666
+ type Path = {
31667
+ customerId: string;
31668
+ };
31669
+ type Header = {};
31670
+ type Query = {};
31671
+ }
31672
+ namespace Responses {
31673
+ namespace $204 {
31674
+ namespace Content {
31675
+ type Empty = unknown;
31676
+ }
31677
+ }
31678
+ namespace $400 {
31679
+ namespace Content {
31680
+ interface ApplicationJson {
31681
+ [k: string]: unknown;
31682
+ }
31683
+ }
31684
+ }
31685
+ namespace $403 {
31686
+ namespace Content {
31687
+ interface ApplicationJson {
31688
+ [k: string]: unknown;
31689
+ }
31690
+ }
31691
+ }
31692
+ namespace $404 {
31693
+ namespace Content {
31694
+ interface ApplicationJson {
31695
+ [k: string]: unknown;
31696
+ }
31697
+ }
31698
+ }
31699
+ namespace $429 {
31700
+ namespace Content {
31701
+ interface ApplicationJson {
31702
+ [k: string]: unknown;
31703
+ }
31704
+ }
31705
+ }
31706
+ namespace Default {
31707
+ namespace Content {
31708
+ interface ApplicationJson {
31709
+ [k: string]: unknown;
31710
+ }
31711
+ }
31712
+ }
31713
+ }
31714
+ }
31715
+ }
31716
+ namespace V3NextProjectsProjectIdAiHostingsPlanId {
31717
+ namespace Get {
31718
+ namespace Parameters {
31719
+ type Path = {
31720
+ projectId: string;
31721
+ planId: string;
31722
+ };
31723
+ type Header = {};
31724
+ type Query = {};
31725
+ }
31726
+ namespace Responses {
31727
+ namespace $200 {
31728
+ namespace Content {
31729
+ type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingProjectPlan;
31730
+ }
31731
+ }
31732
+ namespace $400 {
31733
+ namespace Content {
31734
+ interface ApplicationJson {
31735
+ [k: string]: unknown;
31736
+ }
31737
+ }
31738
+ }
31739
+ namespace $403 {
31740
+ namespace Content {
31741
+ interface ApplicationJson {
31742
+ [k: string]: unknown;
31743
+ }
31744
+ }
31745
+ }
31746
+ namespace $404 {
31747
+ namespace Content {
31748
+ interface ApplicationJson {
31749
+ [k: string]: unknown;
31750
+ }
31751
+ }
31752
+ }
31753
+ namespace $429 {
31754
+ namespace Content {
31755
+ interface ApplicationJson {
31756
+ [k: string]: unknown;
31757
+ }
31758
+ }
31759
+ }
31760
+ namespace Default {
31761
+ namespace Content {
31762
+ interface ApplicationJson {
31763
+ [k: string]: unknown;
31764
+ }
31765
+ }
31766
+ }
31767
+ }
31768
+ }
31769
+ }
31770
+ namespace V3NextProjectsProjectIdAiHostings {
31771
+ namespace Get {
31772
+ namespace Parameters {
31773
+ type Path = {
31774
+ projectId: string;
31775
+ };
31776
+ type Header = {};
31777
+ type Query = {};
31778
+ }
31779
+ namespace Responses {
31780
+ namespace $200 {
31781
+ namespace Content {
31782
+ type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldAihostingProjectPlans;
31783
+ }
31784
+ }
31785
+ namespace $400 {
31786
+ namespace Content {
31787
+ interface ApplicationJson {
31788
+ [k: string]: unknown;
31789
+ }
31790
+ }
31791
+ }
31792
+ namespace $403 {
31793
+ namespace Content {
31794
+ interface ApplicationJson {
31795
+ [k: string]: unknown;
31796
+ }
31797
+ }
31798
+ }
31799
+ namespace $404 {
31800
+ namespace Content {
31801
+ interface ApplicationJson {
31802
+ [k: string]: unknown;
31803
+ }
31804
+ }
31805
+ }
31806
+ namespace $429 {
31807
+ namespace Content {
31808
+ interface ApplicationJson {
31809
+ [k: string]: unknown;
31810
+ }
31811
+ }
31812
+ }
31813
+ namespace Default {
31814
+ namespace Content {
31815
+ interface ApplicationJson {
31816
+ [k: string]: unknown;
31817
+ }
31818
+ }
31819
+ }
31820
+ }
31821
+ }
31822
+ }
31553
31823
  }
31554
31824
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.451.0';
1
+ export declare const MittwaldAPIClientVersion = '4.452.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.452.0",
3
+ "version": "4.453.0",
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",
@@ -72,11 +72,11 @@
72
72
  "test:compile": "run tsc --noEmit"
73
73
  },
74
74
  "dependencies": {
75
- "@mittwald/api-client-commons": "^4.452.0",
75
+ "@mittwald/api-client-commons": "^4.453.0",
76
76
  "browser-or-node": "^3.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@mittwald/api-code-generator": "^4.452.0",
79
+ "@mittwald/api-code-generator": "^4.453.0",
80
80
  "@mittwald/react-use-promise": "^2.6.2",
81
81
  "@types/node": "^22.18.11",
82
82
  "@types/react": "^18.3.26",
@@ -106,5 +106,5 @@
106
106
  "optional": true
107
107
  }
108
108
  },
109
- "gitHead": "ba74986fff7cab6d590113188da2ec5abf5aad7c"
109
+ "gitHead": "c2584fb2d4974a43d9dd4946495bef9be1c528a4"
110
110
  }