@mittwald/api-client 3.1.19 → 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,10 +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
1181
  }
1178
1182
  namespace Components {
1179
1183
  namespace Schemas {
@@ -1635,6 +1639,9 @@ export declare module MittwaldAPIV2 {
1635
1639
  name: string;
1636
1640
  referenceType: MittwaldAPIV2.Components.Schemas.ConversationCategoryReferenceType;
1637
1641
  }
1642
+ type ConversationConversationMembers = (MittwaldAPIV2.Components.Schemas.ConversationUser & {
1643
+ active: boolean;
1644
+ })[];
1638
1645
  interface ConversationConversation {
1639
1646
  category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
1640
1647
  conversationId: string;
@@ -1642,12 +1649,14 @@ export declare module MittwaldAPIV2 {
1642
1649
  createdBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
1643
1650
  lastMessageAt?: string;
1644
1651
  lastMessageBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
1652
+ mainUser: MittwaldAPIV2.Components.Schemas.ConversationUser;
1645
1653
  relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference;
1646
1654
  relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
1647
1655
  sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference;
1648
1656
  shortId: string;
1649
1657
  status: "open" | "closed" | "answered";
1650
1658
  title: string;
1659
+ visibility: "shared" | "private";
1651
1660
  }
1652
1661
  interface ConversationGetConversationIdResponse {
1653
1662
  conversationId: string;
@@ -1685,6 +1694,23 @@ export declare module MittwaldAPIV2 {
1685
1694
  messageId: string;
1686
1695
  type: "MESSAGE";
1687
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
+ };
1688
1714
  interface ConversationStatusUpdate {
1689
1715
  conversationId: string;
1690
1716
  createdAt: string;
@@ -1696,6 +1722,7 @@ export declare module MittwaldAPIV2 {
1696
1722
  type: "STATUS_UPDATE";
1697
1723
  }
1698
1724
  interface ConversationUser {
1725
+ active?: boolean;
1699
1726
  avatarRefId?: string;
1700
1727
  clearName?: string;
1701
1728
  department?: MittwaldAPIV2.Components.Schemas.ConversationDepartment;
@@ -4939,8 +4966,9 @@ export declare module MittwaldAPIV2 {
4939
4966
  type Path = {};
4940
4967
  interface RequestBody {
4941
4968
  categoryId?: string;
4969
+ mainUserId?: string;
4942
4970
  relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference;
4943
- sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference;
4971
+ sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
4944
4972
  title?: string;
4945
4973
  }
4946
4974
  type Header = {};
@@ -5100,6 +5128,52 @@ export declare module MittwaldAPIV2 {
5100
5128
  }
5101
5129
  }
5102
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
+ }
5103
5177
  namespace V2ConversationsConversationId {
5104
5178
  namespace Get {
5105
5179
  namespace Parameters {
@@ -7812,9 +7886,6 @@ export declare module MittwaldAPIV2 {
7812
7886
  }
7813
7887
  }
7814
7888
  namespace V2AppinstallationsAppInstallationIdDatabases { }
7815
- namespace V2DomainsDomainIdContracts { }
7816
- namespace V2ProjectsProjectIdContracts { }
7817
- namespace V2ServersServerIdContracts { }
7818
7889
  namespace V2DomainsDomainIdScreenshotsNewest { }
7819
7890
  namespace V2FileTokenRulesToken { }
7820
7891
  namespace V2FileTypeRulesName { }
@@ -9374,6 +9445,49 @@ export declare module MittwaldAPIV2 {
9374
9445
  }
9375
9446
  }
9376
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
+ }
9377
9491
  namespace V2CustomersCustomerIdInvoices {
9378
9492
  namespace Get {
9379
9493
  namespace Parameters {
@@ -9418,12 +9532,12 @@ export declare module MittwaldAPIV2 {
9418
9532
  }
9419
9533
  }
9420
9534
  }
9421
- namespace V2DeliveryboxesDeliveryBoxId { }
9422
- namespace V2DeliveryBoxesDeliveryBoxId {
9535
+ namespace V2ProjectsProjectIdDeliveryboxes { }
9536
+ namespace V2ProjectsProjectIdDeliveryBoxes {
9423
9537
  namespace Get {
9424
9538
  namespace Parameters {
9425
9539
  type Path = {
9426
- deliveryBoxId: string;
9540
+ projectId: string;
9427
9541
  };
9428
9542
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9429
9543
  type Query = {};
@@ -9431,7 +9545,7 @@ export declare module MittwaldAPIV2 {
9431
9545
  namespace Responses {
9432
9546
  namespace $200 {
9433
9547
  namespace Content {
9434
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
9548
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
9435
9549
  }
9436
9550
  }
9437
9551
  namespace $400 {
@@ -9478,18 +9592,24 @@ export declare module MittwaldAPIV2 {
9478
9592
  }
9479
9593
  }
9480
9594
  }
9481
- namespace Delete {
9595
+ namespace Post {
9482
9596
  namespace Parameters {
9483
9597
  type Path = {
9484
- deliveryBoxId: string;
9598
+ projectId: string;
9485
9599
  };
9600
+ interface RequestBody {
9601
+ description: string;
9602
+ password: string;
9603
+ }
9486
9604
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9487
9605
  type Query = {};
9488
9606
  }
9489
9607
  namespace Responses {
9490
- namespace $200 {
9608
+ namespace $201 {
9491
9609
  namespace Content {
9492
- type Empty = unknown;
9610
+ interface ApplicationJson {
9611
+ id: string;
9612
+ }
9493
9613
  }
9494
9614
  }
9495
9615
  namespace $400 {
@@ -9537,12 +9657,12 @@ export declare module MittwaldAPIV2 {
9537
9657
  }
9538
9658
  }
9539
9659
  }
9540
- namespace V2MailaddressesMailAddressId { }
9541
- namespace V2MailAddressesMailAddressId {
9660
+ namespace V2ProjectsProjectIdMailaddresses { }
9661
+ namespace V2ProjectsProjectIdMailAddresses {
9542
9662
  namespace Get {
9543
9663
  namespace Parameters {
9544
9664
  type Path = {
9545
- mailAddressId: string;
9665
+ projectId: string;
9546
9666
  };
9547
9667
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9548
9668
  type Query = {};
@@ -9550,7 +9670,7 @@ export declare module MittwaldAPIV2 {
9550
9670
  namespace Responses {
9551
9671
  namespace $200 {
9552
9672
  namespace Content {
9553
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
9673
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
9554
9674
  }
9555
9675
  }
9556
9676
  namespace $400 {
@@ -9597,18 +9717,21 @@ export declare module MittwaldAPIV2 {
9597
9717
  }
9598
9718
  }
9599
9719
  }
9600
- namespace Delete {
9720
+ namespace Post {
9601
9721
  namespace Parameters {
9602
9722
  type Path = {
9603
- mailAddressId: string;
9723
+ projectId: string;
9604
9724
  };
9725
+ type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9605
9726
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9606
9727
  type Query = {};
9607
9728
  }
9608
9729
  namespace Responses {
9609
- namespace $200 {
9730
+ namespace $201 {
9610
9731
  namespace Content {
9611
- type Empty = unknown;
9732
+ interface ApplicationJson {
9733
+ id: string;
9734
+ }
9612
9735
  }
9613
9736
  }
9614
9737
  namespace $400 {
@@ -9656,14 +9779,12 @@ export declare module MittwaldAPIV2 {
9656
9779
  }
9657
9780
  }
9658
9781
  }
9659
- namespace V2DeliveryboxesIdDescription { }
9660
- namespace V2DeliveryboxesIdPassword { }
9661
- namespace V2ProjectsProjectIdDeliveryboxes { }
9662
- namespace V2ProjectsProjectIdDeliveryBoxes {
9782
+ namespace V2DeliveryboxesDeliveryBoxId { }
9783
+ namespace V2DeliveryBoxesDeliveryBoxId {
9663
9784
  namespace Get {
9664
9785
  namespace Parameters {
9665
9786
  type Path = {
9666
- projectId: string;
9787
+ deliveryBoxId: string;
9667
9788
  };
9668
9789
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9669
9790
  type Query = {};
@@ -9671,7 +9792,7 @@ export declare module MittwaldAPIV2 {
9671
9792
  namespace Responses {
9672
9793
  namespace $200 {
9673
9794
  namespace Content {
9674
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
9795
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
9675
9796
  }
9676
9797
  }
9677
9798
  namespace $400 {
@@ -9718,24 +9839,18 @@ export declare module MittwaldAPIV2 {
9718
9839
  }
9719
9840
  }
9720
9841
  }
9721
- namespace Post {
9842
+ namespace Delete {
9722
9843
  namespace Parameters {
9723
9844
  type Path = {
9724
- projectId: string;
9845
+ deliveryBoxId: string;
9725
9846
  };
9726
- interface RequestBody {
9727
- description: string;
9728
- password: string;
9729
- }
9730
9847
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9731
9848
  type Query = {};
9732
9849
  }
9733
9850
  namespace Responses {
9734
- namespace $201 {
9851
+ namespace $200 {
9735
9852
  namespace Content {
9736
- interface ApplicationJson {
9737
- id: string;
9738
- }
9853
+ type Empty = unknown;
9739
9854
  }
9740
9855
  }
9741
9856
  namespace $400 {
@@ -9783,12 +9898,12 @@ export declare module MittwaldAPIV2 {
9783
9898
  }
9784
9899
  }
9785
9900
  }
9786
- namespace V2ProjectsProjectIdMailaddresses { }
9787
- namespace V2ProjectsProjectIdMailAddresses {
9901
+ namespace V2MailaddressesMailAddressId { }
9902
+ namespace V2MailAddressesMailAddressId {
9788
9903
  namespace Get {
9789
9904
  namespace Parameters {
9790
9905
  type Path = {
9791
- projectId: string;
9906
+ mailAddressId: string;
9792
9907
  };
9793
9908
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9794
9909
  type Query = {};
@@ -9796,7 +9911,7 @@ export declare module MittwaldAPIV2 {
9796
9911
  namespace Responses {
9797
9912
  namespace $200 {
9798
9913
  namespace Content {
9799
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
9914
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
9800
9915
  }
9801
9916
  }
9802
9917
  namespace $400 {
@@ -9843,21 +9958,18 @@ export declare module MittwaldAPIV2 {
9843
9958
  }
9844
9959
  }
9845
9960
  }
9846
- namespace Post {
9961
+ namespace Delete {
9847
9962
  namespace Parameters {
9848
9963
  type Path = {
9849
- projectId: string;
9964
+ mailAddressId: string;
9850
9965
  };
9851
- type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9852
9966
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9853
9967
  type Query = {};
9854
9968
  }
9855
9969
  namespace Responses {
9856
- namespace $201 {
9970
+ namespace $200 {
9857
9971
  namespace Content {
9858
- interface ApplicationJson {
9859
- id: string;
9860
- }
9972
+ type Empty = unknown;
9861
9973
  }
9862
9974
  }
9863
9975
  namespace $400 {
@@ -9905,6 +10017,8 @@ export declare module MittwaldAPIV2 {
9905
10017
  }
9906
10018
  }
9907
10019
  }
10020
+ namespace V2DeliveryboxesIdDescription { }
10021
+ namespace V2DeliveryboxesIdPassword { }
9908
10022
  namespace V2ProjectsProjectIdMailsettings { }
9909
10023
  namespace V2ProjectsProjectIdMailSettings {
9910
10024
  namespace Get {
@@ -14777,48 +14891,5 @@ export declare module MittwaldAPIV2 {
14777
14891
  }
14778
14892
  }
14779
14893
  }
14780
- namespace V2CustomersCustomerIdInvoicesInvoiceIdFileAccessToken {
14781
- namespace Get {
14782
- namespace Parameters {
14783
- type Path = {
14784
- customerId: string;
14785
- invoiceId: string;
14786
- };
14787
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14788
- type Query = {};
14789
- }
14790
- namespace Responses {
14791
- namespace $200 {
14792
- namespace Content {
14793
- interface ApplicationJson {
14794
- accessToken: string;
14795
- expiresAt: string;
14796
- }
14797
- }
14798
- }
14799
- namespace $400 {
14800
- namespace Content {
14801
- interface ApplicationJson {
14802
- [k: string]: unknown;
14803
- }
14804
- }
14805
- }
14806
- namespace $404 {
14807
- namespace Content {
14808
- interface ApplicationJson {
14809
- [k: string]: unknown;
14810
- }
14811
- }
14812
- }
14813
- namespace Default {
14814
- namespace Content {
14815
- interface ApplicationJson {
14816
- [k: string]: unknown;
14817
- }
14818
- }
14819
- }
14820
- }
14821
- }
14822
- }
14823
14894
  }
14824
14895
  }
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.1.19';
1
+ export declare const MittwaldAPIClientVersion = '3.1.21';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.1.19';
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.19",
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",