@mittwald/api-client 3.1.20 → 3.1.22

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.
@@ -214,6 +214,10 @@ export declare module MittwaldAPIV2 {
214
214
  type RequestData = InferredRequestData<typeof descriptors.conversationGetCategory>;
215
215
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetCategory, TStatus>;
216
216
  }
217
+ namespace ConversationGetConversationMembers {
218
+ type RequestData = InferredRequestData<typeof descriptors.conversationGetConversationMembers>;
219
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetConversationMembers, TStatus>;
220
+ }
217
221
  namespace ConversationGetConversation {
218
222
  type RequestData = InferredRequestData<typeof descriptors.conversationGetConversation>;
219
223
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetConversation, TStatus>;
@@ -650,26 +654,14 @@ export declare module MittwaldAPIV2 {
650
654
  type RequestData = InferredRequestData<typeof descriptors.invoiceUpdateInvoiceSettings>;
651
655
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.invoiceUpdateInvoiceSettings, TStatus>;
652
656
  }
657
+ namespace InvoiceGetFileAccessToken {
658
+ type RequestData = InferredRequestData<typeof descriptors.invoiceGetFileAccessToken>;
659
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.invoiceGetFileAccessToken, TStatus>;
660
+ }
653
661
  namespace InvoiceListCustomerInvoices {
654
662
  type RequestData = InferredRequestData<typeof descriptors.invoiceListCustomerInvoices>;
655
663
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.invoiceListCustomerInvoices, TStatus>;
656
664
  }
657
- namespace MailGetDeliveryBox {
658
- type RequestData = InferredRequestData<typeof descriptors.mailGetDeliveryBox>;
659
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetDeliveryBox, TStatus>;
660
- }
661
- namespace MailDeleteDeliveryBox {
662
- type RequestData = InferredRequestData<typeof descriptors.mailDeleteDeliveryBox>;
663
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteDeliveryBox, TStatus>;
664
- }
665
- namespace MailGetMailAddress {
666
- type RequestData = InferredRequestData<typeof descriptors.mailGetMailAddress>;
667
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailAddress, TStatus>;
668
- }
669
- namespace MailDeleteMailAddress {
670
- type RequestData = InferredRequestData<typeof descriptors.mailDeleteMailAddress>;
671
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteMailAddress, TStatus>;
672
- }
673
665
  namespace MailListDeliveryBoxes {
674
666
  type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
675
667
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
@@ -686,6 +678,22 @@ export declare module MittwaldAPIV2 {
686
678
  type RequestData = InferredRequestData<typeof descriptors.mailCreateMailAddress>;
687
679
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailCreateMailAddress, TStatus>;
688
680
  }
681
+ namespace MailGetDeliveryBox {
682
+ type RequestData = InferredRequestData<typeof descriptors.mailGetDeliveryBox>;
683
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetDeliveryBox, TStatus>;
684
+ }
685
+ namespace MailDeleteDeliveryBox {
686
+ type RequestData = InferredRequestData<typeof descriptors.mailDeleteDeliveryBox>;
687
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteDeliveryBox, TStatus>;
688
+ }
689
+ namespace MailGetMailAddress {
690
+ type RequestData = InferredRequestData<typeof descriptors.mailGetMailAddress>;
691
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailAddress, TStatus>;
692
+ }
693
+ namespace MailDeleteMailAddress {
694
+ type RequestData = InferredRequestData<typeof descriptors.mailDeleteMailAddress>;
695
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteMailAddress, TStatus>;
696
+ }
689
697
  namespace MailListProjectMailSettings {
690
698
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
691
699
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -1170,14 +1178,6 @@ export declare module MittwaldAPIV2 {
1170
1178
  type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
1171
1179
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
1172
1180
  }
1173
- namespace InvoiceGetFileAccessToken {
1174
- type RequestData = InferredRequestData<typeof descriptors.invoiceGetFileAccessToken>;
1175
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.invoiceGetFileAccessToken, TStatus>;
1176
- }
1177
- namespace ConversationGetConversationMembers {
1178
- type RequestData = InferredRequestData<typeof descriptors.conversationGetConversationMembers>;
1179
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetConversationMembers, TStatus>;
1180
- }
1181
1181
  }
1182
1182
  namespace Components {
1183
1183
  namespace Schemas {
@@ -1639,6 +1639,9 @@ export declare module MittwaldAPIV2 {
1639
1639
  name: string;
1640
1640
  referenceType: MittwaldAPIV2.Components.Schemas.ConversationCategoryReferenceType;
1641
1641
  }
1642
+ type ConversationConversationMembers = (MittwaldAPIV2.Components.Schemas.ConversationUser & {
1643
+ active: boolean;
1644
+ })[];
1642
1645
  interface ConversationConversation {
1643
1646
  category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
1644
1647
  conversationId: string;
@@ -1691,6 +1694,23 @@ export declare module MittwaldAPIV2 {
1691
1694
  messageId: string;
1692
1695
  type: "MESSAGE";
1693
1696
  }
1697
+ type ConversationShareableAggregateReference = {
1698
+ aggregate: "user";
1699
+ domain: "user";
1700
+ id: string;
1701
+ } | {
1702
+ aggregate: "customer";
1703
+ domain: "customer";
1704
+ id: string;
1705
+ } | {
1706
+ aggregate: "project";
1707
+ domain: "project";
1708
+ id: string;
1709
+ } | {
1710
+ aggregate: "placementgroup";
1711
+ domain: "project";
1712
+ id: string;
1713
+ };
1694
1714
  interface ConversationStatusUpdate {
1695
1715
  conversationId: string;
1696
1716
  createdAt: string;
@@ -2574,6 +2594,7 @@ export declare module MittwaldAPIV2 {
2574
2594
  addons?: MittwaldAPIV2.Components.Schemas.OrderAddons[];
2575
2595
  amount: number;
2576
2596
  articleId: string;
2597
+ articleName?: string;
2577
2598
  articleTemplateName?: string;
2578
2599
  attributeConfiguration?: MittwaldAPIV2.Components.Schemas.OrderAttributeConfiguration[];
2579
2600
  isInclusive: boolean;
@@ -2933,26 +2954,6 @@ export declare module MittwaldAPIV2 {
2933
2954
  location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
2934
2955
  tokenId: string;
2935
2956
  }
2936
- type ConversationConversationMembers = (MittwaldAPIV2.Components.Schemas.ConversationUser & {
2937
- active: boolean;
2938
- })[];
2939
- type ConversationShareableAggregateReference = {
2940
- aggregate: "user";
2941
- domain: "user";
2942
- id: string;
2943
- } | {
2944
- aggregate: "customer";
2945
- domain: "customer";
2946
- id: string;
2947
- } | {
2948
- aggregate: "project";
2949
- domain: "project";
2950
- id: string;
2951
- } | {
2952
- aggregate: "placementgroup";
2953
- domain: "project";
2954
- id: string;
2955
- };
2956
2957
  interface CommonsAddress {
2957
2958
  street: string;
2958
2959
  houseNumber: string;
@@ -5128,6 +5129,52 @@ export declare module MittwaldAPIV2 {
5128
5129
  }
5129
5130
  }
5130
5131
  }
5132
+ namespace V2ConversationsConversationIdMembers {
5133
+ namespace Get {
5134
+ namespace Parameters {
5135
+ type Path = {
5136
+ conversationId: string;
5137
+ };
5138
+ type Header = {};
5139
+ type Query = {};
5140
+ }
5141
+ namespace Responses {
5142
+ namespace $200 {
5143
+ namespace Content {
5144
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ConversationConversationMembers;
5145
+ }
5146
+ }
5147
+ namespace $400 {
5148
+ namespace Content {
5149
+ interface ApplicationJson {
5150
+ [k: string]: unknown;
5151
+ }
5152
+ }
5153
+ }
5154
+ namespace $403 {
5155
+ namespace Content {
5156
+ interface ApplicationJson {
5157
+ [k: string]: unknown;
5158
+ }
5159
+ }
5160
+ }
5161
+ namespace $404 {
5162
+ namespace Content {
5163
+ interface ApplicationJson {
5164
+ [k: string]: unknown;
5165
+ }
5166
+ }
5167
+ }
5168
+ namespace Default {
5169
+ namespace Content {
5170
+ interface ApplicationJson {
5171
+ [k: string]: unknown;
5172
+ }
5173
+ }
5174
+ }
5175
+ }
5176
+ }
5177
+ }
5131
5178
  namespace V2ConversationsConversationId {
5132
5179
  namespace Get {
5133
5180
  namespace Parameters {
@@ -9399,6 +9446,49 @@ export declare module MittwaldAPIV2 {
9399
9446
  }
9400
9447
  }
9401
9448
  }
9449
+ namespace V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken {
9450
+ namespace Get {
9451
+ namespace Parameters {
9452
+ type Path = {
9453
+ customerId: string;
9454
+ invoiceId: string;
9455
+ };
9456
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9457
+ type Query = {};
9458
+ }
9459
+ namespace Responses {
9460
+ namespace $200 {
9461
+ namespace Content {
9462
+ interface ApplicationJson {
9463
+ accessToken: string;
9464
+ expiresAt: string;
9465
+ }
9466
+ }
9467
+ }
9468
+ namespace $400 {
9469
+ namespace Content {
9470
+ interface ApplicationJson {
9471
+ [k: string]: unknown;
9472
+ }
9473
+ }
9474
+ }
9475
+ namespace $404 {
9476
+ namespace Content {
9477
+ interface ApplicationJson {
9478
+ [k: string]: unknown;
9479
+ }
9480
+ }
9481
+ }
9482
+ namespace Default {
9483
+ namespace Content {
9484
+ interface ApplicationJson {
9485
+ [k: string]: unknown;
9486
+ }
9487
+ }
9488
+ }
9489
+ }
9490
+ }
9491
+ }
9402
9492
  namespace V2CustomersCustomerIdInvoices {
9403
9493
  namespace Get {
9404
9494
  namespace Parameters {
@@ -9443,12 +9533,12 @@ export declare module MittwaldAPIV2 {
9443
9533
  }
9444
9534
  }
9445
9535
  }
9446
- namespace V2DeliveryboxesDeliveryBoxId { }
9447
- namespace V2DeliveryBoxesDeliveryBoxId {
9536
+ namespace V2ProjectsProjectIdDeliveryboxes { }
9537
+ namespace V2ProjectsProjectIdDeliveryBoxes {
9448
9538
  namespace Get {
9449
9539
  namespace Parameters {
9450
9540
  type Path = {
9451
- deliveryBoxId: string;
9541
+ projectId: string;
9452
9542
  };
9453
9543
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9454
9544
  type Query = {};
@@ -9456,7 +9546,7 @@ export declare module MittwaldAPIV2 {
9456
9546
  namespace Responses {
9457
9547
  namespace $200 {
9458
9548
  namespace Content {
9459
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
9549
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
9460
9550
  }
9461
9551
  }
9462
9552
  namespace $400 {
@@ -9503,18 +9593,24 @@ export declare module MittwaldAPIV2 {
9503
9593
  }
9504
9594
  }
9505
9595
  }
9506
- namespace Delete {
9596
+ namespace Post {
9507
9597
  namespace Parameters {
9508
9598
  type Path = {
9509
- deliveryBoxId: string;
9599
+ projectId: string;
9510
9600
  };
9601
+ interface RequestBody {
9602
+ description: string;
9603
+ password: string;
9604
+ }
9511
9605
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9512
9606
  type Query = {};
9513
9607
  }
9514
9608
  namespace Responses {
9515
- namespace $200 {
9609
+ namespace $201 {
9516
9610
  namespace Content {
9517
- type Empty = unknown;
9611
+ interface ApplicationJson {
9612
+ id: string;
9613
+ }
9518
9614
  }
9519
9615
  }
9520
9616
  namespace $400 {
@@ -9562,12 +9658,12 @@ export declare module MittwaldAPIV2 {
9562
9658
  }
9563
9659
  }
9564
9660
  }
9565
- namespace V2MailaddressesMailAddressId { }
9566
- namespace V2MailAddressesMailAddressId {
9661
+ namespace V2ProjectsProjectIdMailaddresses { }
9662
+ namespace V2ProjectsProjectIdMailAddresses {
9567
9663
  namespace Get {
9568
9664
  namespace Parameters {
9569
9665
  type Path = {
9570
- mailAddressId: string;
9666
+ projectId: string;
9571
9667
  };
9572
9668
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9573
9669
  type Query = {};
@@ -9575,7 +9671,7 @@ export declare module MittwaldAPIV2 {
9575
9671
  namespace Responses {
9576
9672
  namespace $200 {
9577
9673
  namespace Content {
9578
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
9674
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
9579
9675
  }
9580
9676
  }
9581
9677
  namespace $400 {
@@ -9622,18 +9718,21 @@ export declare module MittwaldAPIV2 {
9622
9718
  }
9623
9719
  }
9624
9720
  }
9625
- namespace Delete {
9721
+ namespace Post {
9626
9722
  namespace Parameters {
9627
9723
  type Path = {
9628
- mailAddressId: string;
9724
+ projectId: string;
9629
9725
  };
9726
+ type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9630
9727
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9631
9728
  type Query = {};
9632
9729
  }
9633
9730
  namespace Responses {
9634
- namespace $200 {
9731
+ namespace $201 {
9635
9732
  namespace Content {
9636
- type Empty = unknown;
9733
+ interface ApplicationJson {
9734
+ id: string;
9735
+ }
9637
9736
  }
9638
9737
  }
9639
9738
  namespace $400 {
@@ -9681,14 +9780,12 @@ export declare module MittwaldAPIV2 {
9681
9780
  }
9682
9781
  }
9683
9782
  }
9684
- namespace V2DeliveryboxesIdDescription { }
9685
- namespace V2DeliveryboxesIdPassword { }
9686
- namespace V2ProjectsProjectIdDeliveryboxes { }
9687
- namespace V2ProjectsProjectIdDeliveryBoxes {
9783
+ namespace V2DeliveryboxesDeliveryBoxId { }
9784
+ namespace V2DeliveryBoxesDeliveryBoxId {
9688
9785
  namespace Get {
9689
9786
  namespace Parameters {
9690
9787
  type Path = {
9691
- projectId: string;
9788
+ deliveryBoxId: string;
9692
9789
  };
9693
9790
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9694
9791
  type Query = {};
@@ -9696,7 +9793,7 @@ export declare module MittwaldAPIV2 {
9696
9793
  namespace Responses {
9697
9794
  namespace $200 {
9698
9795
  namespace Content {
9699
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
9796
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
9700
9797
  }
9701
9798
  }
9702
9799
  namespace $400 {
@@ -9743,24 +9840,18 @@ export declare module MittwaldAPIV2 {
9743
9840
  }
9744
9841
  }
9745
9842
  }
9746
- namespace Post {
9843
+ namespace Delete {
9747
9844
  namespace Parameters {
9748
9845
  type Path = {
9749
- projectId: string;
9846
+ deliveryBoxId: string;
9750
9847
  };
9751
- interface RequestBody {
9752
- description: string;
9753
- password: string;
9754
- }
9755
9848
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9756
9849
  type Query = {};
9757
9850
  }
9758
9851
  namespace Responses {
9759
- namespace $201 {
9852
+ namespace $200 {
9760
9853
  namespace Content {
9761
- interface ApplicationJson {
9762
- id: string;
9763
- }
9854
+ type Empty = unknown;
9764
9855
  }
9765
9856
  }
9766
9857
  namespace $400 {
@@ -9808,12 +9899,12 @@ export declare module MittwaldAPIV2 {
9808
9899
  }
9809
9900
  }
9810
9901
  }
9811
- namespace V2ProjectsProjectIdMailaddresses { }
9812
- namespace V2ProjectsProjectIdMailAddresses {
9902
+ namespace V2MailaddressesMailAddressId { }
9903
+ namespace V2MailAddressesMailAddressId {
9813
9904
  namespace Get {
9814
9905
  namespace Parameters {
9815
9906
  type Path = {
9816
- projectId: string;
9907
+ mailAddressId: string;
9817
9908
  };
9818
9909
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9819
9910
  type Query = {};
@@ -9821,7 +9912,7 @@ export declare module MittwaldAPIV2 {
9821
9912
  namespace Responses {
9822
9913
  namespace $200 {
9823
9914
  namespace Content {
9824
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
9915
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
9825
9916
  }
9826
9917
  }
9827
9918
  namespace $400 {
@@ -9868,21 +9959,18 @@ export declare module MittwaldAPIV2 {
9868
9959
  }
9869
9960
  }
9870
9961
  }
9871
- namespace Post {
9962
+ namespace Delete {
9872
9963
  namespace Parameters {
9873
9964
  type Path = {
9874
- projectId: string;
9965
+ mailAddressId: string;
9875
9966
  };
9876
- type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9877
9967
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9878
9968
  type Query = {};
9879
9969
  }
9880
9970
  namespace Responses {
9881
- namespace $201 {
9971
+ namespace $200 {
9882
9972
  namespace Content {
9883
- interface ApplicationJson {
9884
- id: string;
9885
- }
9973
+ type Empty = unknown;
9886
9974
  }
9887
9975
  }
9888
9976
  namespace $400 {
@@ -9930,6 +10018,8 @@ export declare module MittwaldAPIV2 {
9930
10018
  }
9931
10019
  }
9932
10020
  }
10021
+ namespace V2DeliveryboxesIdDescription { }
10022
+ namespace V2DeliveryboxesIdPassword { }
9933
10023
  namespace V2ProjectsProjectIdMailsettings { }
9934
10024
  namespace V2ProjectsProjectIdMailSettings {
9935
10025
  namespace Get {
@@ -14802,94 +14892,5 @@ export declare module MittwaldAPIV2 {
14802
14892
  }
14803
14893
  }
14804
14894
  }
14805
- namespace V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken {
14806
- namespace Get {
14807
- namespace Parameters {
14808
- type Path = {
14809
- customerId: string;
14810
- invoiceId: string;
14811
- };
14812
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14813
- type Query = {};
14814
- }
14815
- namespace Responses {
14816
- namespace $200 {
14817
- namespace Content {
14818
- interface ApplicationJson {
14819
- accessToken: string;
14820
- expiresAt: string;
14821
- }
14822
- }
14823
- }
14824
- namespace $400 {
14825
- namespace Content {
14826
- interface ApplicationJson {
14827
- [k: string]: unknown;
14828
- }
14829
- }
14830
- }
14831
- namespace $404 {
14832
- namespace Content {
14833
- interface ApplicationJson {
14834
- [k: string]: unknown;
14835
- }
14836
- }
14837
- }
14838
- namespace Default {
14839
- namespace Content {
14840
- interface ApplicationJson {
14841
- [k: string]: unknown;
14842
- }
14843
- }
14844
- }
14845
- }
14846
- }
14847
- }
14848
- namespace V2ConversationsConversationIdMembers {
14849
- namespace Get {
14850
- namespace Parameters {
14851
- type Path = {
14852
- conversationId: string;
14853
- };
14854
- type Header = {};
14855
- type Query = {};
14856
- }
14857
- namespace Responses {
14858
- namespace $200 {
14859
- namespace Content {
14860
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ConversationConversationMembers;
14861
- }
14862
- }
14863
- namespace $400 {
14864
- namespace Content {
14865
- interface ApplicationJson {
14866
- [k: string]: unknown;
14867
- }
14868
- }
14869
- }
14870
- namespace $403 {
14871
- namespace Content {
14872
- interface ApplicationJson {
14873
- [k: string]: unknown;
14874
- }
14875
- }
14876
- }
14877
- namespace $404 {
14878
- namespace Content {
14879
- interface ApplicationJson {
14880
- [k: string]: unknown;
14881
- }
14882
- }
14883
- }
14884
- namespace Default {
14885
- namespace Content {
14886
- interface ApplicationJson {
14887
- [k: string]: unknown;
14888
- }
14889
- }
14890
- }
14891
- }
14892
- }
14893
- }
14894
14895
  }
14895
14896
  }
@@ -504,6 +504,18 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
504
504
  status?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceInvoiceSettingsStatus[] | undefined;
505
505
  targetDay?: number | undefined;
506
506
  }>;
507
+ /** Request an Access Token for the Invoice file. */
508
+ invoiceGetFileAccessToken: (conf: {
509
+ customerId: string;
510
+ invoiceId: string;
511
+ headers?: {
512
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
513
+ "x-access-token"?: string | undefined;
514
+ } | undefined;
515
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<{
516
+ accessToken: string;
517
+ expiresAt: string;
518
+ }>;
507
519
  /** List Invoices of a Customer. */
508
520
  invoiceListCustomerInvoices: (conf: {
509
521
  customerId: string;
@@ -574,18 +586,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
574
586
  templateNames?: string[] | undefined;
575
587
  } | undefined;
576
588
  }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
577
- /** Request an Access Token for the Invoice file. */
578
- invoiceGetFileAccessToken: (conf: {
579
- customerId: string;
580
- invoiceId: string;
581
- headers?: {
582
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
583
- "x-access-token"?: string | undefined;
584
- } | undefined;
585
- }) => import("@mittwald/react-use-promise/types").AsyncResource<{
586
- accessToken: string;
587
- expiresAt: string;
588
- }>;
589
589
  };
590
590
  declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
591
591
  /** Get all conversation the authenticated user has created or has access to. */
@@ -612,6 +612,15 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
612
612
  name: string;
613
613
  referenceType: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategoryReferenceType;
614
614
  }>;
615
+ /** Get members of a support conversation. */
616
+ getConversationMembers: (conf: {
617
+ conversationId: string;
618
+ headers?: {
619
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
620
+ } | undefined;
621
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<(import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser & {
622
+ active: boolean;
623
+ })[]>;
615
624
  /** Get a support conversation. */
616
625
  getConversation: (conf: {
617
626
  conversationId: string;
@@ -651,15 +660,6 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
651
660
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
652
661
  } | undefined;
653
662
  } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory[]>;
654
- /** Get members of a support conversation. */
655
- getConversationMembers: (conf: {
656
- conversationId: string;
657
- headers?: {
658
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
659
- } | undefined;
660
- }) => import("@mittwald/react-use-promise/types").AsyncResource<(import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser & {
661
- active: boolean;
662
- })[]>;
663
663
  };
664
664
  declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
665
665
  /** List Cronjobs belonging to a Project. */
@@ -1267,6 +1267,22 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1267
1267
  }) => import("@mittwald/react-use-promise/types").AsyncResource<string>;
1268
1268
  };
1269
1269
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1270
+ /** List DeliveryBoxes belonging to a Project. */
1271
+ listDeliveryBoxes: (conf: {
1272
+ projectId: string;
1273
+ headers?: {
1274
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1275
+ "x-access-token"?: string | undefined;
1276
+ } | undefined;
1277
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[]>;
1278
+ /** List MailAddresses belonging to a Project. */
1279
+ listMailAddresses: (conf: {
1280
+ projectId: string;
1281
+ headers?: {
1282
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1283
+ "x-access-token"?: string | undefined;
1284
+ } | undefined;
1285
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
1270
1286
  /** Get a DeliveryBox. */
1271
1287
  getDeliveryBox: (conf: {
1272
1288
  deliveryBoxId: string;
@@ -1324,22 +1340,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1324
1340
  receivingDisabled: boolean;
1325
1341
  updatedAt: string;
1326
1342
  }>;
1327
- /** List DeliveryBoxes belonging to a Project. */
1328
- listDeliveryBoxes: (conf: {
1329
- projectId: string;
1330
- headers?: {
1331
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1332
- "x-access-token"?: string | undefined;
1333
- } | undefined;
1334
- }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[]>;
1335
- /** List MailAddresses belonging to a Project. */
1336
- listMailAddresses: (conf: {
1337
- projectId: string;
1338
- headers?: {
1339
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1340
- "x-access-token"?: string | undefined;
1341
- } | undefined;
1342
- }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
1343
1343
  /** List mail settings of a Project. */
1344
1344
  listProjectMailSettings: (conf: {
1345
1345
  projectId: string;