@mittwald/api-client 4.81.1 → 4.83.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.
@@ -196,6 +196,10 @@ const buildMarketplaceApi = (baseClient) => ({
196
196
  extensionGetExtensionInstance: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstance, baseClient.marketplace.extensionGetExtensionInstance).getApiResource,
197
197
  /** Get a Contributor. */
198
198
  extensionGetContributor: new ApiCallAsyncResourceFactory(descriptors.extensionGetContributor, baseClient.marketplace.extensionGetContributor).getApiResource,
199
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
200
+ extensionGetExtensionInstanceForCustomer: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstanceForCustomer, baseClient.marketplace.extensionGetExtensionInstanceForCustomer).getApiResource,
201
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
202
+ extensionGetExtensionInstanceForProject: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstanceForProject, baseClient.marketplace.extensionGetExtensionInstanceForProject).getApiResource,
199
203
  /** Get an Extension. */
200
204
  extensionGetExtension: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtension, baseClient.marketplace.extensionGetExtension).getApiResource,
201
205
  /** Get the public key to verify the webhook signature. */
@@ -172,6 +172,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
172
172
  extensionEnableExtensionInstance: this.requestFunctionFactory(descriptors.extensionEnableExtensionInstance),
173
173
  /** Get a Contributor. */
174
174
  extensionGetContributor: this.requestFunctionFactory(descriptors.extensionGetContributor),
175
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
176
+ extensionGetExtensionInstanceForCustomer: this.requestFunctionFactory(descriptors.extensionGetExtensionInstanceForCustomer),
177
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
178
+ extensionGetExtensionInstanceForProject: this.requestFunctionFactory(descriptors.extensionGetExtensionInstanceForProject),
175
179
  /** Get an Extension. */
176
180
  extensionGetExtension: this.requestFunctionFactory(descriptors.extensionGetExtension),
177
181
  /** Get the public key to verify the webhook signature. */
@@ -964,6 +964,18 @@ export const extensionGetContributor = {
964
964
  method: "GET",
965
965
  operationId: "extension-get-contributor",
966
966
  };
967
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
968
+ export const extensionGetExtensionInstanceForCustomer = {
969
+ path: "/v2/customers/{customerId}/extensions/{extensionId}",
970
+ method: "GET",
971
+ operationId: "extension-get-extension-instance-for-customer",
972
+ };
973
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
974
+ export const extensionGetExtensionInstanceForProject = {
975
+ path: "/v2/projects/{projectId}/extensions/{extensionId}",
976
+ method: "GET",
977
+ operationId: "extension-get-extension-instance-for-project",
978
+ };
967
979
  /** Get an Extension. */
968
980
  export const extensionGetExtension = {
969
981
  path: "/v2/extensions/{extensionId}",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.81.0';
1
+ export const MittwaldAPIClientVersion = '4.82.0';
@@ -1403,6 +1403,50 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1403
1403
  state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
1404
1404
  url?: string | undefined;
1405
1405
  }>;
1406
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
1407
+ extensionGetExtensionInstanceForCustomer: (conf: {
1408
+ customerId: string;
1409
+ extensionId: string;
1410
+ headers?: {
1411
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1412
+ "x-access-token"?: string | undefined;
1413
+ } | undefined;
1414
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1415
+ aggregateReference: {
1416
+ aggregate: string;
1417
+ domain: string;
1418
+ id: string;
1419
+ };
1420
+ consentedScopes: string[];
1421
+ createdAt?: string | undefined;
1422
+ disabled: boolean;
1423
+ extensionId: string;
1424
+ id: string;
1425
+ pendingInstallation: boolean;
1426
+ pendingRemoval: boolean;
1427
+ }>;
1428
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
1429
+ extensionGetExtensionInstanceForProject: (conf: {
1430
+ projectId: string;
1431
+ extensionId: string;
1432
+ headers?: {
1433
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1434
+ "x-access-token"?: string | undefined;
1435
+ } | undefined;
1436
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1437
+ aggregateReference: {
1438
+ aggregate: string;
1439
+ domain: string;
1440
+ id: string;
1441
+ };
1442
+ consentedScopes: string[];
1443
+ createdAt?: string | undefined;
1444
+ disabled: boolean;
1445
+ extensionId: string;
1446
+ id: string;
1447
+ pendingInstallation: boolean;
1448
+ pendingRemoval: boolean;
1449
+ }>;
1406
1450
  /** Get an Extension. */
1407
1451
  extensionGetExtension: (conf: {
1408
1452
  extensionId: string;
@@ -4925,6 +4925,152 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4925
4925
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4926
4926
  [x: string]: unknown;
4927
4927
  }, 429, "application/json">>>;
4928
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
4929
+ extensionGetExtensionInstanceForCustomer: (request: {
4930
+ customerId: string;
4931
+ extensionId: string;
4932
+ headers?: {
4933
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4934
+ "x-access-token"?: string | undefined;
4935
+ } | undefined;
4936
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4937
+ headers?: Partial<{
4938
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4939
+ }>;
4940
+ } & {
4941
+ pathParameters: {
4942
+ customerId: string;
4943
+ extensionId: string;
4944
+ };
4945
+ } & {
4946
+ headers: {
4947
+ "x-access-token"?: string | undefined;
4948
+ } & Partial<{
4949
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4950
+ }>;
4951
+ }, import("@mittwald/api-client-commons").Response<{
4952
+ aggregateReference: {
4953
+ aggregate: string;
4954
+ domain: string;
4955
+ id: string;
4956
+ };
4957
+ consentedScopes: string[];
4958
+ createdAt?: string | undefined;
4959
+ disabled: boolean;
4960
+ extensionId: string;
4961
+ id: string;
4962
+ pendingInstallation: boolean;
4963
+ pendingRemoval: boolean;
4964
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4965
+ [x: string]: unknown;
4966
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4967
+ [x: string]: unknown;
4968
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4969
+ headers?: Partial<{
4970
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4971
+ }>;
4972
+ } & {
4973
+ pathParameters: {
4974
+ customerId: string;
4975
+ extensionId: string;
4976
+ };
4977
+ } & {
4978
+ headers: {
4979
+ "x-access-token"?: string | undefined;
4980
+ } & Partial<{
4981
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4982
+ }>;
4983
+ }, import("@mittwald/api-client-commons").Response<{
4984
+ aggregateReference: {
4985
+ aggregate: string;
4986
+ domain: string;
4987
+ id: string;
4988
+ };
4989
+ consentedScopes: string[];
4990
+ createdAt?: string | undefined;
4991
+ disabled: boolean;
4992
+ extensionId: string;
4993
+ id: string;
4994
+ pendingInstallation: boolean;
4995
+ pendingRemoval: boolean;
4996
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4997
+ [x: string]: unknown;
4998
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
4999
+ [x: string]: unknown;
5000
+ }, 429, "application/json">>>;
5001
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
5002
+ extensionGetExtensionInstanceForProject: (request: {
5003
+ projectId: string;
5004
+ extensionId: string;
5005
+ headers?: {
5006
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5007
+ "x-access-token"?: string | undefined;
5008
+ } | undefined;
5009
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5010
+ headers?: Partial<{
5011
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5012
+ }>;
5013
+ } & {
5014
+ pathParameters: {
5015
+ projectId: string;
5016
+ extensionId: string;
5017
+ };
5018
+ } & {
5019
+ headers: {
5020
+ "x-access-token"?: string | undefined;
5021
+ } & Partial<{
5022
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5023
+ }>;
5024
+ }, import("@mittwald/api-client-commons").Response<{
5025
+ aggregateReference: {
5026
+ aggregate: string;
5027
+ domain: string;
5028
+ id: string;
5029
+ };
5030
+ consentedScopes: string[];
5031
+ createdAt?: string | undefined;
5032
+ disabled: boolean;
5033
+ extensionId: string;
5034
+ id: string;
5035
+ pendingInstallation: boolean;
5036
+ pendingRemoval: boolean;
5037
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5038
+ [x: string]: unknown;
5039
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5040
+ [x: string]: unknown;
5041
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5042
+ headers?: Partial<{
5043
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5044
+ }>;
5045
+ } & {
5046
+ pathParameters: {
5047
+ projectId: string;
5048
+ extensionId: string;
5049
+ };
5050
+ } & {
5051
+ headers: {
5052
+ "x-access-token"?: string | undefined;
5053
+ } & Partial<{
5054
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5055
+ }>;
5056
+ }, import("@mittwald/api-client-commons").Response<{
5057
+ aggregateReference: {
5058
+ aggregate: string;
5059
+ domain: string;
5060
+ id: string;
5061
+ };
5062
+ consentedScopes: string[];
5063
+ createdAt?: string | undefined;
5064
+ disabled: boolean;
5065
+ extensionId: string;
5066
+ id: string;
5067
+ pendingInstallation: boolean;
5068
+ pendingRemoval: boolean;
5069
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5070
+ [x: string]: unknown;
5071
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5072
+ [x: string]: unknown;
5073
+ }, 429, "application/json">>>;
4928
5074
  /** Get an Extension. */
4929
5075
  extensionGetExtension: (request: {
4930
5076
  extensionId: string;
@@ -20052,6 +20198,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20052
20198
  allDomains?: boolean | undefined;
20053
20199
  domains?: import("./types.js").MittwaldAPIV2.Components.Schemas.DirectusDomain[] | undefined;
20054
20200
  notes?: string | undefined;
20201
+ userId?: string | undefined;
20055
20202
  };
20056
20203
  headers?: {
20057
20204
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -20092,6 +20239,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20092
20239
  projectName: string;
20093
20240
  system: "kc" | "mstudio";
20094
20241
  };
20242
+ userId?: string | undefined;
20095
20243
  };
20096
20244
  } & {
20097
20245
  headers?: Partial<{
@@ -20137,6 +20285,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
20137
20285
  projectName: string;
20138
20286
  system: "kc" | "mstudio";
20139
20287
  };
20288
+ userId?: string | undefined;
20140
20289
  };
20141
20290
  } & {
20142
20291
  headers?: Partial<{
@@ -325,6 +325,10 @@ export declare const extensionDryRunWebhook: OpenAPIOperation<RequestType<Simpli
325
325
  export declare const extensionEnableExtensionInstance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$204.Content.ApplicationJson>, 204, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
326
326
  /** Get a Contributor. */
327
327
  export declare const extensionGetContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
328
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
329
+ export declare const extensionGetExtensionInstanceForCustomer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
330
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
331
+ export declare const extensionGetExtensionInstanceForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
328
332
  /** Get an Extension. */
329
333
  export declare const extensionGetExtension: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
330
334
  /** Get the public key to verify the webhook signature. */
@@ -646,6 +646,14 @@ export declare namespace MittwaldAPIV2 {
646
646
  type RequestData = InferredRequestData<typeof descriptors.extensionGetContributor>;
647
647
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetContributor, TStatus>;
648
648
  }
649
+ namespace ExtensionGetExtensionInstanceForCustomer {
650
+ type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceForCustomer>;
651
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceForCustomer, TStatus>;
652
+ }
653
+ namespace ExtensionGetExtensionInstanceForProject {
654
+ type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceForProject>;
655
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceForProject, TStatus>;
656
+ }
649
657
  namespace ExtensionGetExtension {
650
658
  type RequestData = InferredRequestData<typeof descriptors.extensionGetExtension>;
651
659
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtension, TStatus>;
@@ -3228,6 +3236,9 @@ export declare namespace MittwaldAPIV2 {
3228
3236
  authCode?: string;
3229
3237
  domain: string;
3230
3238
  handleData: {
3239
+ /**
3240
+ * @deprecated
3241
+ */
3231
3242
  adminC?: MittwaldAPIV2.Components.Schemas.OrderDomainHandleField[];
3232
3243
  /**
3233
3244
  * @minItems 1
@@ -11729,6 +11740,86 @@ export declare namespace MittwaldAPIV2 {
11729
11740
  }
11730
11741
  }
11731
11742
  }
11743
+ namespace V2CustomersCustomerIdExtensionsExtensionId {
11744
+ namespace Get {
11745
+ namespace Parameters {
11746
+ type Path = {
11747
+ customerId: string;
11748
+ extensionId: string;
11749
+ };
11750
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11751
+ type Query = {};
11752
+ }
11753
+ namespace Responses {
11754
+ namespace $200 {
11755
+ namespace Content {
11756
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
11757
+ }
11758
+ }
11759
+ namespace $404 {
11760
+ namespace Content {
11761
+ interface ApplicationJson {
11762
+ [k: string]: unknown;
11763
+ }
11764
+ }
11765
+ }
11766
+ namespace $429 {
11767
+ namespace Content {
11768
+ interface ApplicationJson {
11769
+ [k: string]: unknown;
11770
+ }
11771
+ }
11772
+ }
11773
+ namespace Default {
11774
+ namespace Content {
11775
+ interface ApplicationJson {
11776
+ [k: string]: unknown;
11777
+ }
11778
+ }
11779
+ }
11780
+ }
11781
+ }
11782
+ }
11783
+ namespace V2ProjectsProjectIdExtensionsExtensionId {
11784
+ namespace Get {
11785
+ namespace Parameters {
11786
+ type Path = {
11787
+ projectId: string;
11788
+ extensionId: string;
11789
+ };
11790
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11791
+ type Query = {};
11792
+ }
11793
+ namespace Responses {
11794
+ namespace $200 {
11795
+ namespace Content {
11796
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
11797
+ }
11798
+ }
11799
+ namespace $404 {
11800
+ namespace Content {
11801
+ interface ApplicationJson {
11802
+ [k: string]: unknown;
11803
+ }
11804
+ }
11805
+ }
11806
+ namespace $429 {
11807
+ namespace Content {
11808
+ interface ApplicationJson {
11809
+ [k: string]: unknown;
11810
+ }
11811
+ }
11812
+ }
11813
+ namespace Default {
11814
+ namespace Content {
11815
+ interface ApplicationJson {
11816
+ [k: string]: unknown;
11817
+ }
11818
+ }
11819
+ }
11820
+ }
11821
+ }
11822
+ }
11732
11823
  namespace V2ExtensionsExtensionId {
11733
11824
  namespace Get {
11734
11825
  namespace Parameters {
@@ -16804,6 +16895,7 @@ export declare namespace MittwaldAPIV2 {
16804
16895
  */
16805
16896
  system: "kc" | "mstudio";
16806
16897
  };
16898
+ userId?: string;
16807
16899
  }
16808
16900
  type Header = {};
16809
16901
  type Query = {};
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.81.0';
1
+ export declare const MittwaldAPIClientVersion = '4.82.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.81.1",
3
+ "version": "4.83.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": "8e38c1714657790a9ad03b681979e6efa05b858a"
83
+ "gitHead": "49d640939a65ddc415c1ab91b070e5f0cbe8353e"
84
84
  }