@mittwald/api-client 3.1.20 → 3.1.21

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;
@@ -2933,26 +2953,6 @@ export declare module MittwaldAPIV2 {
2933
2953
  location?: MittwaldAPIV2.Components.Schemas.SignupLocation;
2934
2954
  tokenId: string;
2935
2955
  }
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
2956
  interface CommonsAddress {
2957
2957
  street: string;
2958
2958
  houseNumber: string;
@@ -5128,6 +5128,52 @@ export declare module MittwaldAPIV2 {
5128
5128
  }
5129
5129
  }
5130
5130
  }
5131
+ namespace V2ConversationsConversationIdMembers {
5132
+ namespace Get {
5133
+ namespace Parameters {
5134
+ type Path = {
5135
+ conversationId: string;
5136
+ };
5137
+ type Header = {};
5138
+ type Query = {};
5139
+ }
5140
+ namespace Responses {
5141
+ namespace $200 {
5142
+ namespace Content {
5143
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ConversationConversationMembers;
5144
+ }
5145
+ }
5146
+ namespace $400 {
5147
+ namespace Content {
5148
+ interface ApplicationJson {
5149
+ [k: string]: unknown;
5150
+ }
5151
+ }
5152
+ }
5153
+ namespace $403 {
5154
+ namespace Content {
5155
+ interface ApplicationJson {
5156
+ [k: string]: unknown;
5157
+ }
5158
+ }
5159
+ }
5160
+ namespace $404 {
5161
+ namespace Content {
5162
+ interface ApplicationJson {
5163
+ [k: string]: unknown;
5164
+ }
5165
+ }
5166
+ }
5167
+ namespace Default {
5168
+ namespace Content {
5169
+ interface ApplicationJson {
5170
+ [k: string]: unknown;
5171
+ }
5172
+ }
5173
+ }
5174
+ }
5175
+ }
5176
+ }
5131
5177
  namespace V2ConversationsConversationId {
5132
5178
  namespace Get {
5133
5179
  namespace Parameters {
@@ -9399,6 +9445,49 @@ export declare module MittwaldAPIV2 {
9399
9445
  }
9400
9446
  }
9401
9447
  }
9448
+ namespace V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken {
9449
+ namespace Get {
9450
+ namespace Parameters {
9451
+ type Path = {
9452
+ customerId: string;
9453
+ invoiceId: string;
9454
+ };
9455
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9456
+ type Query = {};
9457
+ }
9458
+ namespace Responses {
9459
+ namespace $200 {
9460
+ namespace Content {
9461
+ interface ApplicationJson {
9462
+ accessToken: string;
9463
+ expiresAt: string;
9464
+ }
9465
+ }
9466
+ }
9467
+ namespace $400 {
9468
+ namespace Content {
9469
+ interface ApplicationJson {
9470
+ [k: string]: unknown;
9471
+ }
9472
+ }
9473
+ }
9474
+ namespace $404 {
9475
+ namespace Content {
9476
+ interface ApplicationJson {
9477
+ [k: string]: unknown;
9478
+ }
9479
+ }
9480
+ }
9481
+ namespace Default {
9482
+ namespace Content {
9483
+ interface ApplicationJson {
9484
+ [k: string]: unknown;
9485
+ }
9486
+ }
9487
+ }
9488
+ }
9489
+ }
9490
+ }
9402
9491
  namespace V2CustomersCustomerIdInvoices {
9403
9492
  namespace Get {
9404
9493
  namespace Parameters {
@@ -9443,12 +9532,12 @@ export declare module MittwaldAPIV2 {
9443
9532
  }
9444
9533
  }
9445
9534
  }
9446
- namespace V2DeliveryboxesDeliveryBoxId { }
9447
- namespace V2DeliveryBoxesDeliveryBoxId {
9535
+ namespace V2ProjectsProjectIdDeliveryboxes { }
9536
+ namespace V2ProjectsProjectIdDeliveryBoxes {
9448
9537
  namespace Get {
9449
9538
  namespace Parameters {
9450
9539
  type Path = {
9451
- deliveryBoxId: string;
9540
+ projectId: string;
9452
9541
  };
9453
9542
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9454
9543
  type Query = {};
@@ -9456,7 +9545,7 @@ export declare module MittwaldAPIV2 {
9456
9545
  namespace Responses {
9457
9546
  namespace $200 {
9458
9547
  namespace Content {
9459
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
9548
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
9460
9549
  }
9461
9550
  }
9462
9551
  namespace $400 {
@@ -9503,18 +9592,24 @@ export declare module MittwaldAPIV2 {
9503
9592
  }
9504
9593
  }
9505
9594
  }
9506
- namespace Delete {
9595
+ namespace Post {
9507
9596
  namespace Parameters {
9508
9597
  type Path = {
9509
- deliveryBoxId: string;
9598
+ projectId: string;
9510
9599
  };
9600
+ interface RequestBody {
9601
+ description: string;
9602
+ password: string;
9603
+ }
9511
9604
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9512
9605
  type Query = {};
9513
9606
  }
9514
9607
  namespace Responses {
9515
- namespace $200 {
9608
+ namespace $201 {
9516
9609
  namespace Content {
9517
- type Empty = unknown;
9610
+ interface ApplicationJson {
9611
+ id: string;
9612
+ }
9518
9613
  }
9519
9614
  }
9520
9615
  namespace $400 {
@@ -9562,12 +9657,12 @@ export declare module MittwaldAPIV2 {
9562
9657
  }
9563
9658
  }
9564
9659
  }
9565
- namespace V2MailaddressesMailAddressId { }
9566
- namespace V2MailAddressesMailAddressId {
9660
+ namespace V2ProjectsProjectIdMailaddresses { }
9661
+ namespace V2ProjectsProjectIdMailAddresses {
9567
9662
  namespace Get {
9568
9663
  namespace Parameters {
9569
9664
  type Path = {
9570
- mailAddressId: string;
9665
+ projectId: string;
9571
9666
  };
9572
9667
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9573
9668
  type Query = {};
@@ -9575,7 +9670,7 @@ export declare module MittwaldAPIV2 {
9575
9670
  namespace Responses {
9576
9671
  namespace $200 {
9577
9672
  namespace Content {
9578
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
9673
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
9579
9674
  }
9580
9675
  }
9581
9676
  namespace $400 {
@@ -9622,18 +9717,21 @@ export declare module MittwaldAPIV2 {
9622
9717
  }
9623
9718
  }
9624
9719
  }
9625
- namespace Delete {
9720
+ namespace Post {
9626
9721
  namespace Parameters {
9627
9722
  type Path = {
9628
- mailAddressId: string;
9723
+ projectId: string;
9629
9724
  };
9725
+ type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9630
9726
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9631
9727
  type Query = {};
9632
9728
  }
9633
9729
  namespace Responses {
9634
- namespace $200 {
9730
+ namespace $201 {
9635
9731
  namespace Content {
9636
- type Empty = unknown;
9732
+ interface ApplicationJson {
9733
+ id: string;
9734
+ }
9637
9735
  }
9638
9736
  }
9639
9737
  namespace $400 {
@@ -9681,14 +9779,12 @@ export declare module MittwaldAPIV2 {
9681
9779
  }
9682
9780
  }
9683
9781
  }
9684
- namespace V2DeliveryboxesIdDescription { }
9685
- namespace V2DeliveryboxesIdPassword { }
9686
- namespace V2ProjectsProjectIdDeliveryboxes { }
9687
- namespace V2ProjectsProjectIdDeliveryBoxes {
9782
+ namespace V2DeliveryboxesDeliveryBoxId { }
9783
+ namespace V2DeliveryBoxesDeliveryBoxId {
9688
9784
  namespace Get {
9689
9785
  namespace Parameters {
9690
9786
  type Path = {
9691
- projectId: string;
9787
+ deliveryBoxId: string;
9692
9788
  };
9693
9789
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9694
9790
  type Query = {};
@@ -9696,7 +9792,7 @@ export declare module MittwaldAPIV2 {
9696
9792
  namespace Responses {
9697
9793
  namespace $200 {
9698
9794
  namespace Content {
9699
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
9795
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
9700
9796
  }
9701
9797
  }
9702
9798
  namespace $400 {
@@ -9743,24 +9839,18 @@ export declare module MittwaldAPIV2 {
9743
9839
  }
9744
9840
  }
9745
9841
  }
9746
- namespace Post {
9842
+ namespace Delete {
9747
9843
  namespace Parameters {
9748
9844
  type Path = {
9749
- projectId: string;
9845
+ deliveryBoxId: string;
9750
9846
  };
9751
- interface RequestBody {
9752
- description: string;
9753
- password: string;
9754
- }
9755
9847
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9756
9848
  type Query = {};
9757
9849
  }
9758
9850
  namespace Responses {
9759
- namespace $201 {
9851
+ namespace $200 {
9760
9852
  namespace Content {
9761
- interface ApplicationJson {
9762
- id: string;
9763
- }
9853
+ type Empty = unknown;
9764
9854
  }
9765
9855
  }
9766
9856
  namespace $400 {
@@ -9808,12 +9898,12 @@ export declare module MittwaldAPIV2 {
9808
9898
  }
9809
9899
  }
9810
9900
  }
9811
- namespace V2ProjectsProjectIdMailaddresses { }
9812
- namespace V2ProjectsProjectIdMailAddresses {
9901
+ namespace V2MailaddressesMailAddressId { }
9902
+ namespace V2MailAddressesMailAddressId {
9813
9903
  namespace Get {
9814
9904
  namespace Parameters {
9815
9905
  type Path = {
9816
- projectId: string;
9906
+ mailAddressId: string;
9817
9907
  };
9818
9908
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9819
9909
  type Query = {};
@@ -9821,7 +9911,7 @@ export declare module MittwaldAPIV2 {
9821
9911
  namespace Responses {
9822
9912
  namespace $200 {
9823
9913
  namespace Content {
9824
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
9914
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
9825
9915
  }
9826
9916
  }
9827
9917
  namespace $400 {
@@ -9868,21 +9958,18 @@ export declare module MittwaldAPIV2 {
9868
9958
  }
9869
9959
  }
9870
9960
  }
9871
- namespace Post {
9961
+ namespace Delete {
9872
9962
  namespace Parameters {
9873
9963
  type Path = {
9874
- projectId: string;
9964
+ mailAddressId: string;
9875
9965
  };
9876
- type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9877
9966
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9878
9967
  type Query = {};
9879
9968
  }
9880
9969
  namespace Responses {
9881
- namespace $201 {
9970
+ namespace $200 {
9882
9971
  namespace Content {
9883
- interface ApplicationJson {
9884
- id: string;
9885
- }
9972
+ type Empty = unknown;
9886
9973
  }
9887
9974
  }
9888
9975
  namespace $400 {
@@ -9930,6 +10017,8 @@ export declare module MittwaldAPIV2 {
9930
10017
  }
9931
10018
  }
9932
10019
  }
10020
+ namespace V2DeliveryboxesIdDescription { }
10021
+ namespace V2DeliveryboxesIdPassword { }
9933
10022
  namespace V2ProjectsProjectIdMailsettings { }
9934
10023
  namespace V2ProjectsProjectIdMailSettings {
9935
10024
  namespace Get {
@@ -14802,94 +14891,5 @@ export declare module MittwaldAPIV2 {
14802
14891
  }
14803
14892
  }
14804
14893
  }
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
14894
  }
14895
14895
  }
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.1.20';
1
+ export declare const MittwaldAPIClientVersion = '3.1.21';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.1.20';
1
+ export const MittwaldAPIClientVersion = '3.1.21';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "3.1.20",
3
+ "version": "3.1.21",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",