@mittwald/api-client 4.268.0 → 4.269.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.
@@ -331,6 +331,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
331
331
  contributorRejectContributorInternal: this.requestFunctionFactory(descriptors.contributorRejectContributorInternal),
332
332
  /** Accept a contributor verification request */
333
333
  contributorVerifyContributorInternal: this.requestFunctionFactory(descriptors.contributorVerifyContributorInternal),
334
+ /** Schedule an Extension Instance Variant change for the next possible date. */
335
+ extensionScheduleExtensionVariantChange: this.requestFunctionFactory(descriptors.extensionScheduleExtensionVariantChange),
336
+ /** Cancel an Extension Instance Variant Change. */
337
+ extensionCancelExtensionVariantChange: this.requestFunctionFactory(descriptors.extensionCancelExtensionVariantChange),
334
338
  };
335
339
  /** The conversation API allows you to manage your support conversations. */
336
340
  conversation = {
@@ -2620,3 +2620,15 @@ export const contributorVerifyContributorInternal = {
2620
2620
  method: "POST",
2621
2621
  operationId: "contributor-verify-contributor-internal",
2622
2622
  };
2623
+ /** Schedule an Extension Instance Variant change for the next possible date. */
2624
+ export const extensionScheduleExtensionVariantChange = {
2625
+ path: "/v2/extension-instances/{extensionInstanceId}/contract/variant-change",
2626
+ method: "POST",
2627
+ operationId: "extension-schedule-extension-variant-change",
2628
+ };
2629
+ /** Cancel an Extension Instance Variant Change. */
2630
+ export const extensionCancelExtensionVariantChange = {
2631
+ path: "/v2/extension-instances/{extensionInstanceId}/contract/variant-change",
2632
+ method: "DELETE",
2633
+ operationId: "extension-cancel-extension-variant-change",
2634
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.267.0';
1
+ export const MittwaldAPIClientVersion = '4.268.0';
@@ -1132,9 +1132,14 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1132
1132
  "x-access-token"?: string | undefined;
1133
1133
  } | undefined;
1134
1134
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1135
+ contractPeriodEndDate?: string | undefined;
1135
1136
  currentPrice?: number | undefined;
1136
1137
  interactionDeadline?: string | undefined;
1137
1138
  interactionRequired: boolean;
1139
+ pendingVariantChange?: {
1140
+ effectiveDate: string;
1141
+ targetVariantKey: string;
1142
+ } | undefined;
1138
1143
  status: "notStarted" | "pending" | "active" | "terminationPending";
1139
1144
  terminationTargetDate?: string | undefined;
1140
1145
  variantDescription?: string | undefined;
@@ -9110,9 +9110,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9110
9110
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9111
9111
  }>;
9112
9112
  }, import("@mittwald/api-client-commons").Response<{
9113
+ contractPeriodEndDate?: string | undefined;
9113
9114
  currentPrice?: number | undefined;
9114
9115
  interactionDeadline?: string | undefined;
9115
9116
  interactionRequired: boolean;
9117
+ pendingVariantChange?: {
9118
+ effectiveDate: string;
9119
+ targetVariantKey: string;
9120
+ } | undefined;
9116
9121
  status: "notStarted" | "pending" | "active" | "terminationPending";
9117
9122
  terminationTargetDate?: string | undefined;
9118
9123
  variantDescription?: string | undefined;
@@ -9139,9 +9144,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9139
9144
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
9140
9145
  }>;
9141
9146
  }, import("@mittwald/api-client-commons").Response<{
9147
+ contractPeriodEndDate?: string | undefined;
9142
9148
  currentPrice?: number | undefined;
9143
9149
  interactionDeadline?: string | undefined;
9144
9150
  interactionRequired: boolean;
9151
+ pendingVariantChange?: {
9152
+ effectiveDate: string;
9153
+ targetVariantKey: string;
9154
+ } | undefined;
9145
9155
  status: "notStarted" | "pending" | "active" | "terminationPending";
9146
9156
  terminationTargetDate?: string | undefined;
9147
9157
  variantDescription?: string | undefined;
@@ -10454,6 +10464,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10454
10464
  data: {
10455
10465
  pricePlan: {
10456
10466
  variants: import("./types.js").MittwaldAPIV2.Components.Schemas.ExtensionVariant[];
10467
+ isDowngradeAllowed?: boolean | undefined;
10468
+ isUpgradeAllowed?: boolean | undefined;
10457
10469
  };
10458
10470
  dryRun?: boolean | undefined;
10459
10471
  };
@@ -10761,6 +10773,123 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10761
10773
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10762
10774
  [x: string]: unknown;
10763
10775
  }, 429, "application/json">>>;
10776
+ /** Schedule an Extension Instance Variant change for the next possible date. */
10777
+ extensionScheduleExtensionVariantChange: (request: {
10778
+ extensionInstanceId: string;
10779
+ data?: {
10780
+ targetVariantKey?: string | undefined;
10781
+ } | undefined;
10782
+ headers?: {
10783
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10784
+ "x-access-token"?: string | undefined;
10785
+ } | undefined;
10786
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10787
+ data: {
10788
+ targetVariantKey?: string | undefined;
10789
+ };
10790
+ } & {
10791
+ pathParameters: {
10792
+ extensionInstanceId: string;
10793
+ };
10794
+ } & {
10795
+ headers?: Partial<{
10796
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10797
+ }>;
10798
+ } & {
10799
+ headers: {
10800
+ "x-access-token"?: string | undefined;
10801
+ } & Partial<{
10802
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10803
+ }>;
10804
+ }, import("@mittwald/api-client-commons").Response<{
10805
+ effectiveDate?: string | undefined;
10806
+ extensionInstanceId?: string | undefined;
10807
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
10808
+ [x: string]: unknown;
10809
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10810
+ [x: string]: unknown;
10811
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10812
+ [x: string]: unknown;
10813
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10814
+ data: {
10815
+ targetVariantKey?: string | undefined;
10816
+ };
10817
+ } & {
10818
+ pathParameters: {
10819
+ extensionInstanceId: string;
10820
+ };
10821
+ } & {
10822
+ headers?: Partial<{
10823
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10824
+ }>;
10825
+ } & {
10826
+ headers: {
10827
+ "x-access-token"?: string | undefined;
10828
+ } & Partial<{
10829
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10830
+ }>;
10831
+ }, import("@mittwald/api-client-commons").Response<{
10832
+ effectiveDate?: string | undefined;
10833
+ extensionInstanceId?: string | undefined;
10834
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
10835
+ [x: string]: unknown;
10836
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10837
+ [x: string]: unknown;
10838
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10839
+ [x: string]: unknown;
10840
+ }, 429, "application/json">>>;
10841
+ /** Cancel an Extension Instance Variant Change. */
10842
+ extensionCancelExtensionVariantChange: (request: {
10843
+ extensionInstanceId: string;
10844
+ headers?: {
10845
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10846
+ "x-access-token"?: string | undefined;
10847
+ } | undefined;
10848
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10849
+ headers?: Partial<{
10850
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10851
+ }>;
10852
+ } & {
10853
+ pathParameters: {
10854
+ extensionInstanceId: string;
10855
+ };
10856
+ } & {
10857
+ headers: {
10858
+ "x-access-token"?: string | undefined;
10859
+ } & Partial<{
10860
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10861
+ }>;
10862
+ }, import("@mittwald/api-client-commons").Response<{
10863
+ extensionInstanceId: string;
10864
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10865
+ [x: string]: unknown;
10866
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10867
+ [x: string]: unknown;
10868
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10869
+ [x: string]: unknown;
10870
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10871
+ headers?: Partial<{
10872
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10873
+ }>;
10874
+ } & {
10875
+ pathParameters: {
10876
+ extensionInstanceId: string;
10877
+ };
10878
+ } & {
10879
+ headers: {
10880
+ "x-access-token"?: string | undefined;
10881
+ } & Partial<{
10882
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10883
+ }>;
10884
+ }, import("@mittwald/api-client-commons").Response<{
10885
+ extensionInstanceId: string;
10886
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
10887
+ [x: string]: unknown;
10888
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
10889
+ [x: string]: unknown;
10890
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
10891
+ [x: string]: unknown;
10892
+ }, 429, "application/json">>>;
10764
10893
  };
10765
10894
  /** The conversation API allows you to manage your support conversations. */
10766
10895
  readonly conversation: {
@@ -877,3 +877,7 @@ export declare const sslDeleteCertificate: OpenAPIOperation<RequestType<Simplify
877
877
  export declare const contributorRejectContributorInternal: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsReject.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsReject.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsReject.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsReject.Post.Responses.$201.Content.Empty>, 201, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsReject.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsReject.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsReject.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
878
878
  /** Accept a contributor verification request */
879
879
  export declare const contributorVerifyContributorInternal: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsVerify.Post.Responses.$201.Content.Empty>, 201, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsVerify.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.InternalV2ContributorsContributorIdActionsVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
880
+ /** Schedule an Extension Instance Variant change for the next possible date. */
881
+ export declare const extensionScheduleExtensionVariantChange: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
882
+ /** Cancel an Extension Instance Variant Change. */
883
+ export declare const extensionCancelExtensionVariantChange: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1750,6 +1750,14 @@ export declare namespace MittwaldAPIV2 {
1750
1750
  type RequestData = InferredRequestData<typeof descriptors.contributorVerifyContributorInternal>;
1751
1751
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorVerifyContributorInternal, TStatus>;
1752
1752
  }
1753
+ namespace ExtensionScheduleExtensionVariantChange {
1754
+ type RequestData = InferredRequestData<typeof descriptors.extensionScheduleExtensionVariantChange>;
1755
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionScheduleExtensionVariantChange, TStatus>;
1756
+ }
1757
+ namespace ExtensionCancelExtensionVariantChange {
1758
+ type RequestData = InferredRequestData<typeof descriptors.extensionCancelExtensionVariantChange>;
1759
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionCancelExtensionVariantChange, TStatus>;
1760
+ }
1753
1761
  }
1754
1762
  namespace Components {
1755
1763
  namespace Schemas {
@@ -2105,18 +2113,31 @@ export declare namespace MittwaldAPIV2 {
2105
2113
  * PricePlan with Variants.
2106
2114
  */
2107
2115
  interface ExtensionPricePlan {
2116
+ /**
2117
+ * Indicates whether downgrading between variants is allowed.
2118
+ */
2119
+ isDowngradeAllowed?: boolean;
2120
+ /**
2121
+ * Indicates whether upgrading between variants is allowed.
2122
+ */
2123
+ isUpgradeAllowed?: boolean;
2108
2124
  variants: MittwaldAPIV2.Components.Schemas.ExtensionVariant[];
2109
2125
  }
2110
2126
  /**
2111
2127
  * A strategy for Contracts that will be paid periodically.
2112
2128
  */
2113
2129
  interface ExtensionSubscriptionBasedContract {
2130
+ contractPeriodEndDate?: string;
2114
2131
  /**
2115
2132
  * monthly price in Euro Cent
2116
2133
  */
2117
2134
  currentPrice?: number;
2118
2135
  interactionDeadline?: string;
2119
2136
  interactionRequired: boolean;
2137
+ pendingVariantChange?: {
2138
+ effectiveDate: string;
2139
+ targetVariantKey: string;
2140
+ };
2120
2141
  status: "notStarted" | "pending" | "active" | "terminationPending";
2121
2142
  terminationTargetDate?: string;
2122
2143
  variantDescription?: string;
@@ -27841,5 +27862,114 @@ export declare namespace MittwaldAPIV2 {
27841
27862
  }
27842
27863
  }
27843
27864
  }
27865
+ namespace V2ExtensionInstancesExtensionInstanceIdContractVariantChange {
27866
+ namespace Post {
27867
+ namespace Parameters {
27868
+ type Path = {
27869
+ extensionInstanceId: string;
27870
+ };
27871
+ interface RequestBody {
27872
+ /**
27873
+ * The target variant key to change to.
27874
+ */
27875
+ targetVariantKey?: string;
27876
+ }
27877
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27878
+ type Query = {};
27879
+ }
27880
+ namespace Responses {
27881
+ namespace $201 {
27882
+ namespace Content {
27883
+ interface ApplicationJson {
27884
+ /**
27885
+ * The Date the variant change will be executed.
27886
+ */
27887
+ effectiveDate?: string;
27888
+ /**
27889
+ * The ID of the Extension Instance the variant change was scheduled for.
27890
+ */
27891
+ extensionInstanceId?: string;
27892
+ }
27893
+ }
27894
+ }
27895
+ namespace $400 {
27896
+ namespace Content {
27897
+ interface ApplicationJson {
27898
+ [k: string]: unknown;
27899
+ }
27900
+ }
27901
+ }
27902
+ namespace $404 {
27903
+ namespace Content {
27904
+ interface ApplicationJson {
27905
+ [k: string]: unknown;
27906
+ }
27907
+ }
27908
+ }
27909
+ namespace $429 {
27910
+ namespace Content {
27911
+ interface ApplicationJson {
27912
+ [k: string]: unknown;
27913
+ }
27914
+ }
27915
+ }
27916
+ namespace Default {
27917
+ namespace Content {
27918
+ interface ApplicationJson {
27919
+ [k: string]: unknown;
27920
+ }
27921
+ }
27922
+ }
27923
+ }
27924
+ }
27925
+ namespace Delete {
27926
+ namespace Parameters {
27927
+ type Path = {
27928
+ extensionInstanceId: string;
27929
+ };
27930
+ interface RequestBody {
27931
+ }
27932
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27933
+ type Query = {};
27934
+ }
27935
+ namespace Responses {
27936
+ namespace $200 {
27937
+ namespace Content {
27938
+ interface ApplicationJson {
27939
+ extensionInstanceId: string;
27940
+ }
27941
+ }
27942
+ }
27943
+ namespace $400 {
27944
+ namespace Content {
27945
+ interface ApplicationJson {
27946
+ [k: string]: unknown;
27947
+ }
27948
+ }
27949
+ }
27950
+ namespace $404 {
27951
+ namespace Content {
27952
+ interface ApplicationJson {
27953
+ [k: string]: unknown;
27954
+ }
27955
+ }
27956
+ }
27957
+ namespace $429 {
27958
+ namespace Content {
27959
+ interface ApplicationJson {
27960
+ [k: string]: unknown;
27961
+ }
27962
+ }
27963
+ }
27964
+ namespace Default {
27965
+ namespace Content {
27966
+ interface ApplicationJson {
27967
+ [k: string]: unknown;
27968
+ }
27969
+ }
27970
+ }
27971
+ }
27972
+ }
27973
+ }
27844
27974
  }
27845
27975
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.267.0';
1
+ export declare const MittwaldAPIClientVersion = '4.268.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.268.0",
3
+ "version": "4.269.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",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^4.268.0",
49
+ "@mittwald/api-client-commons": "^4.269.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.268.0",
53
+ "@mittwald/api-code-generator": "^4.269.0",
54
54
  "@mittwald/react-use-promise": "^2.6.2",
55
55
  "@types/node": "^22.18.11",
56
56
  "@types/react": "^18.3.26",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "dcdce3ebcc3e48d689d819ef4d11f777917a2a6a"
83
+ "gitHead": "5349c564aacec5c19e35cc6a1659c5fe129cb2a3"
84
84
  }