@mittwald/api-client 4.121.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>;
@@ -2092,6 +2100,7 @@ export declare namespace MittwaldAPIV2 {
2092
2100
  title?: string;
2093
2101
  useFormalTerm?: boolean;
2094
2102
  }
2103
+ type CustomerCustomerFlag = "agency" | "employee";
2095
2104
  interface CustomerCustomerMeta {
2096
2105
  avatarRefId?: string;
2097
2106
  customerId: string;
@@ -2111,8 +2120,10 @@ export declare namespace MittwaldAPIV2 {
2111
2120
  customerId: string;
2112
2121
  customerNumber: string;
2113
2122
  executingUserRoles?: MittwaldAPIV2.Components.Schemas.CustomerRole[];
2123
+ flags?: MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[];
2114
2124
  isBanned?: boolean;
2115
2125
  isInDefaultOfPayment?: boolean;
2126
+ levelOfUndeliverableDunningNotice?: "first" | "second";
2116
2127
  memberCount: number;
2117
2128
  name: string;
2118
2129
  owner?: MittwaldAPIV2.Components.Schemas.CustomerContact;
@@ -2684,9 +2695,6 @@ export declare namespace MittwaldAPIV2 {
2684
2695
  }
2685
2696
  interface MarketplacePublicKey {
2686
2697
  algorithm: string;
2687
- /**
2688
- * base64 encoded public key
2689
- */
2690
2698
  key: string;
2691
2699
  serial: string;
2692
2700
  }
@@ -5671,8 +5679,12 @@ export declare namespace MittwaldAPIV2 {
5671
5679
  };
5672
5680
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
5673
5681
  type Query = {
5682
+ searchTerm?: string;
5674
5683
  withExportsOnly?: boolean;
5675
5684
  sortOrder?: MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder;
5685
+ limit?: number;
5686
+ skip?: number;
5687
+ page?: number;
5676
5688
  };
5677
5689
  }
5678
5690
  namespace Responses {
@@ -11987,6 +11999,59 @@ export declare namespace MittwaldAPIV2 {
11987
11999
  }
11988
12000
  }
11989
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
+ }
11990
12055
  namespace V2ExtensionInstancesExtensionInstanceIdScopes {
11991
12056
  namespace Patch {
11992
12057
  namespace Parameters {
@@ -12249,24 +12314,23 @@ export declare namespace MittwaldAPIV2 {
12249
12314
  }
12250
12315
  }
12251
12316
  }
12252
- namespace V2ExtensionInstancesExtensionInstanceIdActionsDisable {
12253
- namespace Post {
12317
+ namespace V2ContributorsContributorIdExtensionsExtensionId {
12318
+ namespace Get {
12254
12319
  namespace Parameters {
12255
12320
  type Path = {
12256
- extensionInstanceId: string;
12321
+ contributorId: string;
12322
+ extensionId: string;
12257
12323
  };
12258
12324
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12259
12325
  type Query = {};
12260
12326
  }
12261
12327
  namespace Responses {
12262
- namespace $204 {
12328
+ namespace $200 {
12263
12329
  namespace Content {
12264
- interface ApplicationJson {
12265
- [k: string]: unknown;
12266
- }
12330
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12267
12331
  }
12268
12332
  }
12269
- namespace $400 {
12333
+ namespace $404 {
12270
12334
  namespace Content {
12271
12335
  interface ApplicationJson {
12272
12336
  [k: string]: unknown;
@@ -12289,48 +12353,25 @@ export declare namespace MittwaldAPIV2 {
12289
12353
  }
12290
12354
  }
12291
12355
  }
12292
- }
12293
- namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsDryRunWebhookKind {
12294
- namespace Post {
12356
+ namespace Delete {
12295
12357
  namespace Parameters {
12296
12358
  type Path = {
12297
12359
  contributorId: string;
12298
12360
  extensionId: string;
12299
- extensionInstanceId: string;
12300
- webhookKind: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookKind;
12301
12361
  };
12362
+ interface RequestBody {
12363
+ reason?: string;
12364
+ }
12302
12365
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12303
- type Query = {
12304
- contextId?: string;
12305
- scopes?: string[];
12306
- instanceDisabled?: boolean;
12307
- createdAt?: string;
12308
- secret?: string;
12309
- };
12366
+ type Query = {};
12310
12367
  }
12311
12368
  namespace Responses {
12312
- namespace $200 {
12369
+ namespace $204 {
12313
12370
  namespace Content {
12314
- interface ApplicationJson {
12315
- /**
12316
- * The error message of an internal error.
12317
- */
12318
- errorMessage?: string;
12319
- responseBody?: string;
12320
- /**
12321
- * The http status code that the external application responded with.
12322
- */
12323
- responseCode?: number;
12324
- responseHeaders?: string;
12325
- routeCalled: string;
12326
- /**
12327
- * This shows if the response of the external application has been accepted as successful.
12328
- */
12329
- successful: boolean;
12330
- }
12371
+ type Empty = unknown;
12331
12372
  }
12332
12373
  }
12333
- namespace $400 {
12374
+ namespace $404 {
12334
12375
  namespace Content {
12335
12376
  interface ApplicationJson {
12336
12377
  [k: string]: unknown;
@@ -12353,25 +12394,51 @@ export declare namespace MittwaldAPIV2 {
12353
12394
  }
12354
12395
  }
12355
12396
  }
12356
- }
12357
- namespace V2ExtensionInstancesExtensionInstanceIdActionsEnable {
12358
- namespace Post {
12397
+ namespace Patch {
12359
12398
  namespace Parameters {
12360
12399
  type Path = {
12361
- extensionInstanceId: string;
12400
+ contributorId: string;
12401
+ extensionId: string;
12362
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
+ }
12363
12418
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12364
12419
  type Query = {};
12365
12420
  }
12366
12421
  namespace Responses {
12367
- namespace $204 {
12422
+ namespace $200 {
12423
+ namespace Content {
12424
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12425
+ }
12426
+ }
12427
+ namespace $400 {
12368
12428
  namespace Content {
12369
12429
  interface ApplicationJson {
12370
12430
  [k: string]: unknown;
12371
12431
  }
12372
12432
  }
12373
12433
  }
12374
- namespace $400 {
12434
+ namespace $404 {
12435
+ namespace Content {
12436
+ interface ApplicationJson {
12437
+ [k: string]: unknown;
12438
+ }
12439
+ }
12440
+ }
12441
+ namespace $409 {
12375
12442
  namespace Content {
12376
12443
  interface ApplicationJson {
12377
12444
  [k: string]: unknown;
@@ -12395,32 +12462,24 @@ export declare namespace MittwaldAPIV2 {
12395
12462
  }
12396
12463
  }
12397
12464
  }
12398
- namespace V2ExtensionInstancesExtensionInstanceIdSessionSessionId {
12465
+ namespace V2ExtensionInstancesExtensionInstanceIdActionsDisable {
12399
12466
  namespace Post {
12400
12467
  namespace Parameters {
12401
12468
  type Path = {
12402
12469
  extensionInstanceId: string;
12403
- sessionId: string;
12404
12470
  };
12405
12471
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12406
12472
  type Query = {};
12407
12473
  }
12408
12474
  namespace Responses {
12409
- namespace $200 {
12410
- namespace Content {
12411
- interface ApplicationJson {
12412
- sessionKeyJwt?: string;
12413
- }
12414
- }
12415
- }
12416
- namespace $400 {
12475
+ namespace $204 {
12417
12476
  namespace Content {
12418
12477
  interface ApplicationJson {
12419
12478
  [k: string]: unknown;
12420
12479
  }
12421
12480
  }
12422
12481
  }
12423
- namespace $404 {
12482
+ namespace $400 {
12424
12483
  namespace Content {
12425
12484
  interface ApplicationJson {
12426
12485
  [k: string]: unknown;
@@ -12444,22 +12503,47 @@ export declare namespace MittwaldAPIV2 {
12444
12503
  }
12445
12504
  }
12446
12505
  }
12447
- namespace V2ContributorsContributorId {
12448
- namespace Get {
12506
+ namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdActionsDryRunWebhookKind {
12507
+ namespace Post {
12449
12508
  namespace Parameters {
12450
12509
  type Path = {
12451
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;
12452
12522
  };
12453
- type Header = {};
12454
- type Query = {};
12455
12523
  }
12456
12524
  namespace Responses {
12457
12525
  namespace $200 {
12458
12526
  namespace Content {
12459
- 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
+ }
12460
12544
  }
12461
12545
  }
12462
- namespace $404 {
12546
+ namespace $400 {
12463
12547
  namespace Content {
12464
12548
  interface ApplicationJson {
12465
12549
  [k: string]: unknown;
@@ -12483,23 +12567,24 @@ export declare namespace MittwaldAPIV2 {
12483
12567
  }
12484
12568
  }
12485
12569
  }
12486
- namespace V2CustomersCustomerIdExtensionsExtensionId {
12487
- namespace Get {
12570
+ namespace V2ExtensionInstancesExtensionInstanceIdActionsEnable {
12571
+ namespace Post {
12488
12572
  namespace Parameters {
12489
12573
  type Path = {
12490
- customerId: string;
12491
- extensionId: string;
12574
+ extensionInstanceId: string;
12492
12575
  };
12493
12576
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12494
12577
  type Query = {};
12495
12578
  }
12496
12579
  namespace Responses {
12497
- namespace $200 {
12580
+ namespace $204 {
12498
12581
  namespace Content {
12499
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
12582
+ interface ApplicationJson {
12583
+ [k: string]: unknown;
12584
+ }
12500
12585
  }
12501
12586
  }
12502
- namespace $404 {
12587
+ namespace $400 {
12503
12588
  namespace Content {
12504
12589
  interface ApplicationJson {
12505
12590
  [k: string]: unknown;
@@ -12523,12 +12608,12 @@ export declare namespace MittwaldAPIV2 {
12523
12608
  }
12524
12609
  }
12525
12610
  }
12526
- namespace V2ProjectsProjectIdExtensionsExtensionId {
12527
- namespace Get {
12611
+ namespace V2ExtensionInstancesExtensionInstanceIdSessionsSessionId {
12612
+ namespace Post {
12528
12613
  namespace Parameters {
12529
12614
  type Path = {
12530
- projectId: string;
12531
- extensionId: string;
12615
+ extensionInstanceId: string;
12616
+ sessionId: string;
12532
12617
  };
12533
12618
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12534
12619
  type Query = {};
@@ -12536,7 +12621,16 @@ export declare namespace MittwaldAPIV2 {
12536
12621
  namespace Responses {
12537
12622
  namespace $200 {
12538
12623
  namespace Content {
12539
- 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
+ }
12540
12634
  }
12541
12635
  }
12542
12636
  namespace $404 {
@@ -12563,11 +12657,11 @@ export declare namespace MittwaldAPIV2 {
12563
12657
  }
12564
12658
  }
12565
12659
  }
12566
- namespace V2ExtensionsExtensionId {
12660
+ namespace V2ContributorsContributorId {
12567
12661
  namespace Get {
12568
12662
  namespace Parameters {
12569
12663
  type Path = {
12570
- extensionId: string;
12664
+ contributorId: string;
12571
12665
  };
12572
12666
  type Header = {};
12573
12667
  type Query = {};
@@ -12575,7 +12669,7 @@ export declare namespace MittwaldAPIV2 {
12575
12669
  namespace Responses {
12576
12670
  namespace $200 {
12577
12671
  namespace Content {
12578
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtension;
12672
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceContributor;
12579
12673
  }
12580
12674
  }
12581
12675
  namespace $404 {
@@ -12602,11 +12696,11 @@ export declare namespace MittwaldAPIV2 {
12602
12696
  }
12603
12697
  }
12604
12698
  }
12605
- namespace V2ContributorsContributorIdExtensionsExtensionId {
12699
+ namespace V2CustomersCustomerIdExtensionsExtensionId {
12606
12700
  namespace Get {
12607
12701
  namespace Parameters {
12608
12702
  type Path = {
12609
- contributorId: string;
12703
+ customerId: string;
12610
12704
  extensionId: string;
12611
12705
  };
12612
12706
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
@@ -12615,7 +12709,7 @@ export declare namespace MittwaldAPIV2 {
12615
12709
  namespace Responses {
12616
12710
  namespace $200 {
12617
12711
  namespace Content {
12618
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12712
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
12619
12713
  }
12620
12714
  }
12621
12715
  namespace $404 {
@@ -12641,51 +12735,63 @@ export declare namespace MittwaldAPIV2 {
12641
12735
  }
12642
12736
  }
12643
12737
  }
12644
- namespace Patch {
12738
+ }
12739
+ namespace V2ProjectsProjectIdExtensionsExtensionId {
12740
+ namespace Get {
12645
12741
  namespace Parameters {
12646
12742
  type Path = {
12647
- contributorId: string;
12743
+ projectId: string;
12648
12744
  extensionId: string;
12649
12745
  };
12650
- interface RequestBody {
12651
- deprecation?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation;
12652
- description?: string;
12653
- detailedDescriptions?: MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions;
12654
- externalFrontends?: MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[];
12655
- frontendFragments?: {
12656
- [k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
12657
- };
12658
- name?: string;
12659
- scopes?: string[];
12660
- subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
12661
- support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
12662
- tags?: string[];
12663
- webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
12664
- }
12665
12746
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
12666
12747
  type Query = {};
12667
12748
  }
12668
12749
  namespace Responses {
12669
12750
  namespace $200 {
12670
12751
  namespace Content {
12671
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension;
12752
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
12672
12753
  }
12673
12754
  }
12674
- namespace $400 {
12755
+ namespace $404 {
12675
12756
  namespace Content {
12676
12757
  interface ApplicationJson {
12677
12758
  [k: string]: unknown;
12678
12759
  }
12679
12760
  }
12680
12761
  }
12681
- namespace $404 {
12762
+ namespace $429 {
12682
12763
  namespace Content {
12683
12764
  interface ApplicationJson {
12684
12765
  [k: string]: unknown;
12685
12766
  }
12686
12767
  }
12687
12768
  }
12688
- 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 {
12689
12795
  namespace Content {
12690
12796
  interface ApplicationJson {
12691
12797
  [k: string]: unknown;
@@ -12709,14 +12815,18 @@ export declare namespace MittwaldAPIV2 {
12709
12815
  }
12710
12816
  }
12711
12817
  }
12712
- namespace V2WebhookPublicKeysSerial {
12818
+ namespace V2WebhookPublicKeysSerial { }
12819
+ namespace V2PublicKeysSerial {
12713
12820
  namespace Get {
12714
12821
  namespace Parameters {
12715
12822
  type Path = {
12716
12823
  serial: string;
12717
12824
  };
12718
12825
  type Header = {};
12719
- type Query = {};
12826
+ type Query = {
12827
+ purpose?: "webhook" | "session_token";
12828
+ format?: "raw" | "spki";
12829
+ };
12720
12830
  }
12721
12831
  namespace Responses {
12722
12832
  namespace $200 {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.120.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.121.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": "90daab9ab063106ee7d06da77c2c32dfa4468628"
83
+ "gitHead": "bcbe0972147f6228406ddde3458d8b2f33929bf6"
84
84
  }