@mittwald/api-client 4.122.0 → 4.123.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.
@@ -634,6 +634,10 @@ export declare namespace MittwaldAPIV2 {
634
634
  type RequestData = InferredRequestData<typeof descriptors.extensionAuthenticateInstance>;
635
635
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionAuthenticateInstance, TStatus>;
636
636
  }
637
+ namespace ExtensionAuthenticateWithSessionToken {
638
+ type RequestData = InferredRequestData<typeof descriptors.extensionAuthenticateWithSessionToken>;
639
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionAuthenticateWithSessionToken, TStatus>;
640
+ }
637
641
  namespace ExtensionConsentToExtensionScopes {
638
642
  type RequestData = InferredRequestData<typeof descriptors.extensionConsentToExtensionScopes>;
639
643
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionConsentToExtensionScopes, TStatus>;
@@ -658,6 +662,18 @@ export declare namespace MittwaldAPIV2 {
658
662
  type RequestData = InferredRequestData<typeof descriptors.extensionDeleteExtensionInstance>;
659
663
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionDeleteExtensionInstance, TStatus>;
660
664
  }
665
+ namespace ExtensionGetOwnExtension {
666
+ type RequestData = InferredRequestData<typeof descriptors.extensionGetOwnExtension>;
667
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetOwnExtension, TStatus>;
668
+ }
669
+ namespace ExtensionDeleteExtension {
670
+ type RequestData = InferredRequestData<typeof descriptors.extensionDeleteExtension>;
671
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionDeleteExtension, TStatus>;
672
+ }
673
+ namespace ExtensionPatchExtension {
674
+ type RequestData = InferredRequestData<typeof descriptors.extensionPatchExtension>;
675
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionPatchExtension, TStatus>;
676
+ }
661
677
  namespace ExtensionDisableExtensionInstance {
662
678
  type RequestData = InferredRequestData<typeof descriptors.extensionDisableExtensionInstance>;
663
679
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionDisableExtensionInstance, TStatus>;
@@ -670,9 +686,9 @@ export declare namespace MittwaldAPIV2 {
670
686
  type RequestData = InferredRequestData<typeof descriptors.extensionEnableExtensionInstance>;
671
687
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionEnableExtensionInstance, TStatus>;
672
688
  }
673
- namespace ExtensionGenerateSessionKey {
674
- type RequestData = InferredRequestData<typeof descriptors.extensionGenerateSessionKey>;
675
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGenerateSessionKey, TStatus>;
689
+ namespace ExtensionGenerateSessionToken {
690
+ type RequestData = InferredRequestData<typeof descriptors.extensionGenerateSessionToken>;
691
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGenerateSessionToken, TStatus>;
676
692
  }
677
693
  namespace ExtensionGetContributor {
678
694
  type RequestData = InferredRequestData<typeof descriptors.extensionGetContributor>;
@@ -690,14 +706,6 @@ export declare namespace MittwaldAPIV2 {
690
706
  type RequestData = InferredRequestData<typeof descriptors.extensionGetExtension>;
691
707
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtension, TStatus>;
692
708
  }
693
- namespace ExtensionGetOwnExtension {
694
- type RequestData = InferredRequestData<typeof descriptors.extensionGetOwnExtension>;
695
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetOwnExtension, TStatus>;
696
- }
697
- namespace ExtensionPatchExtension {
698
- type RequestData = InferredRequestData<typeof descriptors.extensionPatchExtension>;
699
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionPatchExtension, TStatus>;
700
- }
701
709
  namespace ExtensionGetPublicKey {
702
710
  type RequestData = InferredRequestData<typeof descriptors.extensionGetPublicKey>;
703
711
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetPublicKey, TStatus>;
@@ -2687,9 +2695,6 @@ export declare namespace MittwaldAPIV2 {
2687
2695
  }
2688
2696
  interface MarketplacePublicKey {
2689
2697
  algorithm: string;
2690
- /**
2691
- * base64 encoded public key
2692
- */
2693
2698
  key: string;
2694
2699
  serial: string;
2695
2700
  }
@@ -11994,6 +11999,59 @@ export declare namespace MittwaldAPIV2 {
11994
11999
  }
11995
12000
  }
11996
12001
  }
12002
+ namespace V2AuthenticateSessionToken {
12003
+ namespace Post {
12004
+ namespace Parameters {
12005
+ type Path = {};
12006
+ interface RequestBody {
12007
+ /**
12008
+ * The secret you you generated for your extension.
12009
+ */
12010
+ extensionSecret?: string;
12011
+ /**
12012
+ * The session token you received from the mStudio.
12013
+ */
12014
+ sessionToken: string;
12015
+ }
12016
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12017
+ type Query = {};
12018
+ }
12019
+ namespace Responses {
12020
+ namespace $201 {
12021
+ namespace Content {
12022
+ interface ApplicationJson {
12023
+ expiry: string;
12024
+ /**
12025
+ * Set this in the 'x-access-token' header when performing domain actions.
12026
+ */
12027
+ publicToken: string;
12028
+ }
12029
+ }
12030
+ }
12031
+ namespace $400 {
12032
+ namespace Content {
12033
+ interface ApplicationJson {
12034
+ [k: string]: unknown;
12035
+ }
12036
+ }
12037
+ }
12038
+ namespace $404 {
12039
+ namespace Content {
12040
+ interface ApplicationJson {
12041
+ [k: string]: unknown;
12042
+ }
12043
+ }
12044
+ }
12045
+ namespace Default {
12046
+ namespace Content {
12047
+ interface ApplicationJson {
12048
+ [k: string]: unknown;
12049
+ }
12050
+ }
12051
+ }
12052
+ }
12053
+ }
12054
+ }
11997
12055
  namespace V2ExtensionInstancesExtensionInstanceIdScopes {
11998
12056
  namespace Patch {
11999
12057
  namespace Parameters {
@@ -12256,24 +12314,23 @@ export declare namespace MittwaldAPIV2 {
12256
12314
  }
12257
12315
  }
12258
12316
  }
12259
- namespace V2ExtensionInstancesExtensionInstanceIdActionsDisable {
12260
- namespace Post {
12317
+ namespace V2ContributorsContributorIdExtensionsExtensionId {
12318
+ namespace Get {
12261
12319
  namespace Parameters {
12262
12320
  type Path = {
12263
- extensionInstanceId: string;
12321
+ contributorId: string;
12322
+ extensionId: string;
12264
12323
  };
12265
12324
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12266
12325
  type Query = {};
12267
12326
  }
12268
12327
  namespace Responses {
12269
- namespace $204 {
12328
+ namespace $200 {
12270
12329
  namespace Content {
12271
- interface ApplicationJson {
12272
- [k: string]: unknown;
12273
- }
12330
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12274
12331
  }
12275
12332
  }
12276
- namespace $400 {
12333
+ namespace $404 {
12277
12334
  namespace Content {
12278
12335
  interface ApplicationJson {
12279
12336
  [k: string]: unknown;
@@ -12296,48 +12353,25 @@ export declare namespace MittwaldAPIV2 {
12296
12353
  }
12297
12354
  }
12298
12355
  }
12299
- }
12300
- namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsDryRunWebhookKind {
12301
- namespace Post {
12356
+ namespace Delete {
12302
12357
  namespace Parameters {
12303
12358
  type Path = {
12304
12359
  contributorId: string;
12305
12360
  extensionId: string;
12306
- extensionInstanceId: string;
12307
- webhookKind: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
12308
12361
  };
12362
+ interface RequestBody {
12363
+ reason?: string;
12364
+ }
12309
12365
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12310
- type Query = {
12311
- contextId?: string;
12312
- scopes?: string[];
12313
- instanceDisabled?: boolean;
12314
- createdAt?: string;
12315
- secret?: string;
12316
- };
12366
+ type Query = {};
12317
12367
  }
12318
12368
  namespace Responses {
12319
- namespace $200 {
12369
+ namespace $204 {
12320
12370
  namespace Content {
12321
- interface ApplicationJson {
12322
- /**
12323
- * The error message of an internal error.
12324
- */
12325
- errorMessage?: string;
12326
- responseBody?: string;
12327
- /**
12328
- * The http status code that the external application responded with.
12329
- */
12330
- responseCode?: number;
12331
- responseHeaders?: string;
12332
- routeCalled: string;
12333
- /**
12334
- * This shows if the response of the external application has been accepted as successful.
12335
- */
12336
- successful: boolean;
12337
- }
12371
+ type Empty = unknown;
12338
12372
  }
12339
12373
  }
12340
- namespace $400 {
12374
+ namespace $404 {
12341
12375
  namespace Content {
12342
12376
  interface ApplicationJson {
12343
12377
  [k: string]: unknown;
@@ -12360,25 +12394,51 @@ export declare namespace MittwaldAPIV2 {
12360
12394
  }
12361
12395
  }
12362
12396
  }
12363
- }
12364
- namespace V2ExtensionInstancesExtensionInstanceIdActionsEnable {
12365
- namespace Post {
12397
+ namespace Patch {
12366
12398
  namespace Parameters {
12367
12399
  type Path = {
12368
- extensionInstanceId: string;
12400
+ contributorId: string;
12401
+ extensionId: string;
12369
12402
  };
12403
+ interface RequestBody {
12404
+ deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
12405
+ description?: string;
12406
+ detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
12407
+ externalFrontends?: MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[];
12408
+ frontendFragments?: {
12409
+ [k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
12410
+ };
12411
+ name?: string;
12412
+ scopes?: string[];
12413
+ subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
12414
+ support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
12415
+ tags?: string[];
12416
+ webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
12417
+ }
12370
12418
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12371
12419
  type Query = {};
12372
12420
  }
12373
12421
  namespace Responses {
12374
- namespace $204 {
12422
+ namespace $200 {
12423
+ namespace Content {
12424
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12425
+ }
12426
+ }
12427
+ namespace $400 {
12375
12428
  namespace Content {
12376
12429
  interface ApplicationJson {
12377
12430
  [k: string]: unknown;
12378
12431
  }
12379
12432
  }
12380
12433
  }
12381
- namespace $400 {
12434
+ namespace $404 {
12435
+ namespace Content {
12436
+ interface ApplicationJson {
12437
+ [k: string]: unknown;
12438
+ }
12439
+ }
12440
+ }
12441
+ namespace $409 {
12382
12442
  namespace Content {
12383
12443
  interface ApplicationJson {
12384
12444
  [k: string]: unknown;
@@ -12402,32 +12462,24 @@ export declare namespace MittwaldAPIV2 {
12402
12462
  }
12403
12463
  }
12404
12464
  }
12405
- namespace V2ExtensionInstancesExtensionInstanceIdSessionSessionId {
12465
+ namespace V2ExtensionInstancesExtensionInstanceIdActionsDisable {
12406
12466
  namespace Post {
12407
12467
  namespace Parameters {
12408
12468
  type Path = {
12409
12469
  extensionInstanceId: string;
12410
- sessionId: string;
12411
12470
  };
12412
12471
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12413
12472
  type Query = {};
12414
12473
  }
12415
12474
  namespace Responses {
12416
- namespace $200 {
12417
- namespace Content {
12418
- interface ApplicationJson {
12419
- sessionKeyJwt?: string;
12420
- }
12421
- }
12422
- }
12423
- namespace $400 {
12475
+ namespace $204 {
12424
12476
  namespace Content {
12425
12477
  interface ApplicationJson {
12426
12478
  [k: string]: unknown;
12427
12479
  }
12428
12480
  }
12429
12481
  }
12430
- namespace $404 {
12482
+ namespace $400 {
12431
12483
  namespace Content {
12432
12484
  interface ApplicationJson {
12433
12485
  [k: string]: unknown;
@@ -12451,22 +12503,47 @@ export declare namespace MittwaldAPIV2 {
12451
12503
  }
12452
12504
  }
12453
12505
  }
12454
- namespace V2ContributorsContributorId {
12455
- namespace Get {
12506
+ namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsDryRunWebhookKind {
12507
+ namespace Post {
12456
12508
  namespace Parameters {
12457
12509
  type Path = {
12458
12510
  contributorId: string;
12511
+ extensionId: string;
12512
+ extensionInstanceId: string;
12513
+ webhookKind: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
12514
+ };
12515
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12516
+ type Query = {
12517
+ contextId?: string;
12518
+ scopes?: string[];
12519
+ instanceDisabled?: boolean;
12520
+ createdAt?: string;
12521
+ secret?: string;
12459
12522
  };
12460
- type Header = {};
12461
- type Query = {};
12462
12523
  }
12463
12524
  namespace Responses {
12464
12525
  namespace $200 {
12465
12526
  namespace Content {
12466
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceContributor;
12527
+ interface ApplicationJson {
12528
+ /**
12529
+ * The error message of an internal error.
12530
+ */
12531
+ errorMessage?: string;
12532
+ responseBody?: string;
12533
+ /**
12534
+ * The http status code that the external application responded with.
12535
+ */
12536
+ responseCode?: number;
12537
+ responseHeaders?: string;
12538
+ routeCalled: string;
12539
+ /**
12540
+ * This shows if the response of the external application has been accepted as successful.
12541
+ */
12542
+ successful: boolean;
12543
+ }
12467
12544
  }
12468
12545
  }
12469
- namespace $404 {
12546
+ namespace $400 {
12470
12547
  namespace Content {
12471
12548
  interface ApplicationJson {
12472
12549
  [k: string]: unknown;
@@ -12490,23 +12567,24 @@ export declare namespace MittwaldAPIV2 {
12490
12567
  }
12491
12568
  }
12492
12569
  }
12493
- namespace V2CustomersCustomerIdExtensionsExtensionId {
12494
- namespace Get {
12570
+ namespace V2ExtensionInstancesExtensionInstanceIdActionsEnable {
12571
+ namespace Post {
12495
12572
  namespace Parameters {
12496
12573
  type Path = {
12497
- customerId: string;
12498
- extensionId: string;
12574
+ extensionInstanceId: string;
12499
12575
  };
12500
12576
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12501
12577
  type Query = {};
12502
12578
  }
12503
12579
  namespace Responses {
12504
- namespace $200 {
12580
+ namespace $204 {
12505
12581
  namespace Content {
12506
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
12582
+ interface ApplicationJson {
12583
+ [k: string]: unknown;
12584
+ }
12507
12585
  }
12508
12586
  }
12509
- namespace $404 {
12587
+ namespace $400 {
12510
12588
  namespace Content {
12511
12589
  interface ApplicationJson {
12512
12590
  [k: string]: unknown;
@@ -12530,12 +12608,12 @@ export declare namespace MittwaldAPIV2 {
12530
12608
  }
12531
12609
  }
12532
12610
  }
12533
- namespace V2ProjectsProjectIdExtensionsExtensionId {
12534
- namespace Get {
12611
+ namespace V2ExtensionInstancesExtensionInstanceIdSessionsSessionId {
12612
+ namespace Post {
12535
12613
  namespace Parameters {
12536
12614
  type Path = {
12537
- projectId: string;
12538
- extensionId: string;
12615
+ extensionInstanceId: string;
12616
+ sessionId: string;
12539
12617
  };
12540
12618
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12541
12619
  type Query = {};
@@ -12543,7 +12621,16 @@ export declare namespace MittwaldAPIV2 {
12543
12621
  namespace Responses {
12544
12622
  namespace $200 {
12545
12623
  namespace Content {
12546
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
12624
+ interface ApplicationJson {
12625
+ sessionToken: string;
12626
+ }
12627
+ }
12628
+ }
12629
+ namespace $400 {
12630
+ namespace Content {
12631
+ interface ApplicationJson {
12632
+ [k: string]: unknown;
12633
+ }
12547
12634
  }
12548
12635
  }
12549
12636
  namespace $404 {
@@ -12570,11 +12657,11 @@ export declare namespace MittwaldAPIV2 {
12570
12657
  }
12571
12658
  }
12572
12659
  }
12573
- namespace V2ExtensionsExtensionId {
12660
+ namespace V2ContributorsContributorId {
12574
12661
  namespace Get {
12575
12662
  namespace Parameters {
12576
12663
  type Path = {
12577
- extensionId: string;
12664
+ contributorId: string;
12578
12665
  };
12579
12666
  type Header = {};
12580
12667
  type Query = {};
@@ -12582,7 +12669,7 @@ export declare namespace MittwaldAPIV2 {
12582
12669
  namespace Responses {
12583
12670
  namespace $200 {
12584
12671
  namespace Content {
12585
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtension;
12672
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceContributor;
12586
12673
  }
12587
12674
  }
12588
12675
  namespace $404 {
@@ -12609,11 +12696,11 @@ export declare namespace MittwaldAPIV2 {
12609
12696
  }
12610
12697
  }
12611
12698
  }
12612
- namespace V2ContributorsContributorIdExtensionsExtensionId {
12699
+ namespace V2CustomersCustomerIdExtensionsExtensionId {
12613
12700
  namespace Get {
12614
12701
  namespace Parameters {
12615
12702
  type Path = {
12616
- contributorId: string;
12703
+ customerId: string;
12617
12704
  extensionId: string;
12618
12705
  };
12619
12706
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
@@ -12622,7 +12709,7 @@ export declare namespace MittwaldAPIV2 {
12622
12709
  namespace Responses {
12623
12710
  namespace $200 {
12624
12711
  namespace Content {
12625
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12712
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
12626
12713
  }
12627
12714
  }
12628
12715
  namespace $404 {
@@ -12648,51 +12735,63 @@ export declare namespace MittwaldAPIV2 {
12648
12735
  }
12649
12736
  }
12650
12737
  }
12651
- namespace Patch {
12738
+ }
12739
+ namespace V2ProjectsProjectIdExtensionsExtensionId {
12740
+ namespace Get {
12652
12741
  namespace Parameters {
12653
12742
  type Path = {
12654
- contributorId: string;
12743
+ projectId: string;
12655
12744
  extensionId: string;
12656
12745
  };
12657
- interface RequestBody {
12658
- deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
12659
- description?: string;
12660
- detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
12661
- externalFrontends?: MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[];
12662
- frontendFragments?: {
12663
- [k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
12664
- };
12665
- name?: string;
12666
- scopes?: string[];
12667
- subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
12668
- support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
12669
- tags?: string[];
12670
- webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
12671
- }
12672
12746
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12673
12747
  type Query = {};
12674
12748
  }
12675
12749
  namespace Responses {
12676
12750
  namespace $200 {
12677
12751
  namespace Content {
12678
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12752
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
12679
12753
  }
12680
12754
  }
12681
- namespace $400 {
12755
+ namespace $404 {
12682
12756
  namespace Content {
12683
12757
  interface ApplicationJson {
12684
12758
  [k: string]: unknown;
12685
12759
  }
12686
12760
  }
12687
12761
  }
12688
- namespace $404 {
12762
+ namespace $429 {
12689
12763
  namespace Content {
12690
12764
  interface ApplicationJson {
12691
12765
  [k: string]: unknown;
12692
12766
  }
12693
12767
  }
12694
12768
  }
12695
- namespace $409 {
12769
+ namespace Default {
12770
+ namespace Content {
12771
+ interface ApplicationJson {
12772
+ [k: string]: unknown;
12773
+ }
12774
+ }
12775
+ }
12776
+ }
12777
+ }
12778
+ }
12779
+ namespace V2ExtensionsExtensionId {
12780
+ namespace Get {
12781
+ namespace Parameters {
12782
+ type Path = {
12783
+ extensionId: string;
12784
+ };
12785
+ type Header = {};
12786
+ type Query = {};
12787
+ }
12788
+ namespace Responses {
12789
+ namespace $200 {
12790
+ namespace Content {
12791
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtension;
12792
+ }
12793
+ }
12794
+ namespace $404 {
12696
12795
  namespace Content {
12697
12796
  interface ApplicationJson {
12698
12797
  [k: string]: unknown;
@@ -12716,14 +12815,18 @@ export declare namespace MittwaldAPIV2 {
12716
12815
  }
12717
12816
  }
12718
12817
  }
12719
- namespace V2WebhookPublicKeysSerial {
12818
+ namespace V2WebhookPublicKeysSerial { }
12819
+ namespace V2PublicKeysSerial {
12720
12820
  namespace Get {
12721
12821
  namespace Parameters {
12722
12822
  type Path = {
12723
12823
  serial: string;
12724
12824
  };
12725
12825
  type Header = {};
12726
- type Query = {};
12826
+ type Query = {
12827
+ purpose?: "webhook" | "session_token";
12828
+ format?: "raw" | "spki";
12829
+ };
12727
12830
  }
12728
12831
  namespace Responses {
12729
12832
  namespace $200 {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.121.0';
1
+ export declare const MittwaldAPIClientVersion = '4.122.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.122.0",
3
+ "version": "4.123.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",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "b4f1c1c7503e65d0f6bb24ebd61184eba0f1b69e"
83
+ "gitHead": "bcbe0972147f6228406ddde3458d8b2f33929bf6"
84
84
  }