@aws-sdk/client-securitylake 3.289.0 → 3.292.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.
Files changed (42) hide show
  1. package/dist-cjs/endpoint/ruleset.js +3 -3
  2. package/dist-cjs/models/models_0.js +11 -2
  3. package/dist-cjs/protocols/Aws_restJson1.js +27 -0
  4. package/dist-es/endpoint/ruleset.js +3 -3
  5. package/dist-es/models/models_0.js +7 -0
  6. package/dist-es/protocols/Aws_restJson1.js +27 -0
  7. package/dist-types/SecurityLake.d.ts +10 -12
  8. package/dist-types/commands/CreateAwsLogSourceCommand.d.ts +28 -0
  9. package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +29 -0
  10. package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +19 -0
  11. package/dist-types/commands/CreateDatalakeCommand.d.ts +30 -0
  12. package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +17 -0
  13. package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  14. package/dist-types/commands/CreateSubscriberCommand.d.ts +33 -0
  15. package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +31 -1
  16. package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +19 -0
  17. package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +29 -0
  18. package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +25 -9
  19. package/dist-types/commands/DeleteDatalakeCommand.d.ts +30 -0
  20. package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +17 -0
  21. package/dist-types/commands/DeleteDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  22. package/dist-types/commands/DeleteSubscriberCommand.d.ts +33 -0
  23. package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +29 -0
  24. package/dist-types/commands/GetDatalakeAutoEnableCommand.d.ts +19 -0
  25. package/dist-types/commands/GetDatalakeCommand.d.ts +22 -0
  26. package/dist-types/commands/GetDatalakeExceptionsExpiryCommand.d.ts +19 -0
  27. package/dist-types/commands/GetDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  28. package/dist-types/commands/GetDatalakeStatusCommand.d.ts +19 -0
  29. package/dist-types/commands/GetSubscriberCommand.d.ts +23 -0
  30. package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +19 -0
  31. package/dist-types/commands/ListLogSourcesCommand.d.ts +22 -0
  32. package/dist-types/commands/ListSubscribersCommand.d.ts +26 -0
  33. package/dist-types/commands/UpdateDatalakeCommand.d.ts +20 -0
  34. package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +19 -0
  35. package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  36. package/dist-types/commands/UpdateSubscriberCommand.d.ts +29 -0
  37. package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +31 -2
  38. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  39. package/dist-types/models/models_0.d.ts +83 -7
  40. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +19 -0
  42. package/package.json +35 -40
@@ -14,8 +14,8 @@ export interface UpdateSubscriptionNotificationConfigurationCommandInput extends
14
14
  export interface UpdateSubscriptionNotificationConfigurationCommandOutput extends UpdateSubscriptionNotificationConfigurationResponse, __MetadataBearer {
15
15
  }
16
16
  /**
17
- * <p>Creates a new subscription notification or adds the existing subscription notification
18
- * setting for the specified subscription ID.</p>
17
+ * <p>Updates an existing notification method for the subscription (SQS or HTTPs endpoint) or
18
+ * switches the notification subscription endpoint for a subscriber.</p>
19
19
  * @example
20
20
  * Use a bare-bones client and the command you need to make an API call.
21
21
  * ```javascript
@@ -30,6 +30,35 @@ export interface UpdateSubscriptionNotificationConfigurationCommandOutput extend
30
30
  * @see {@link UpdateSubscriptionNotificationConfigurationCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link ConcurrentModificationException} (client fault)
45
+ * <p>More than one process tried to modify a resource at the same time. </p>
46
+ *
47
+ * @throws {@link InternalServerException} (server fault)
48
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
49
+ * troubleshooting, perform the operation again. </p>
50
+ *
51
+ * @throws {@link InvalidInputException} (client fault)
52
+ * <p>The request was rejected because a value that's not valid or is out of range was
53
+ * supplied for an input parameter. </p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The resource could not be found.</p>
57
+ *
58
+ * @throws {@link ValidationException} (client fault)
59
+ * <p>Your signing certificate could not be validated. </p>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class UpdateSubscriptionNotificationConfigurationCommand extends $Command<UpdateSubscriptionNotificationConfigurationCommandInput, UpdateSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
35
64
  readonly input: UpdateSubscriptionNotificationConfigurationCommandInput;
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
12
12
  defaultSigningName: string;
13
13
  };
14
14
  export interface EndpointParameters extends __EndpointParameters {
15
- Region: string;
15
+ Region?: string;
16
16
  UseDualStack?: boolean;
17
17
  UseFIPS?: boolean;
18
18
  Endpoint?: string;
@@ -9,6 +9,10 @@ import { SecurityLakeServiceException as __BaseException } from "./SecurityLakeS
9
9
  export declare class AccessDeniedException extends __BaseException {
10
10
  readonly name: "AccessDeniedException";
11
11
  readonly $fault: "client";
12
+ /**
13
+ * <p>A coded string to provide more information about the access denied exception. You can use the error code to check the exception type.</p>
14
+ */
15
+ errorCode?: string;
12
16
  /**
13
17
  * @internal
14
18
  */
@@ -638,8 +642,8 @@ export interface CreateSubscriberResponse {
638
642
  subscriptionId: string | undefined;
639
643
  /**
640
644
  * <p>The Amazon Resource Name (ARN) created by you to provide to the subscriber. For more
641
- * information about ARNs and how to use them in policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html">IAM identifiers in
642
- * the Identity and Access Management (IAM) User Guide</a>. .</p>
645
+ * information about ARNs and how to use them in policies, see <a href="https://docs.aws.amazon.com/security-lake/latest/userguide/subscriber-management.html">Amazon Security Lake User
646
+ * Guide</a>.</p>
643
647
  */
644
648
  roleArn?: string;
645
649
  /**
@@ -650,6 +654,14 @@ export interface CreateSubscriberResponse {
650
654
  * <p>The ARN for the Amazon S3 bucket. </p>
651
655
  */
652
656
  s3BucketArn?: string;
657
+ /**
658
+ * <p>The Amazon Resource Name (ARN) which uniquely defines the AWS RAM resource share. Before accepting the RAM resource share invitation, you can view details related to the RAM resource share.</p>
659
+ */
660
+ resourceShareArn?: string;
661
+ /**
662
+ * <p>The name of the resource share.</p>
663
+ */
664
+ resourceShareName?: string;
653
665
  }
654
666
  /**
655
667
  * <p>The request was rejected because a value that's not valid or is out of range was
@@ -669,7 +681,7 @@ export declare enum HttpsMethod {
669
681
  }
670
682
  export interface CreateSubscriptionNotificationConfigurationRequest {
671
683
  /**
672
- * <p>The subscription ID for the notification subscription/</p>
684
+ * <p>The subscription ID for the notification subscription.</p>
673
685
  */
674
686
  subscriptionId: string | undefined;
675
687
  /**
@@ -695,7 +707,8 @@ export interface CreateSubscriptionNotificationConfigurationRequest {
695
707
  createSqs?: boolean;
696
708
  /**
697
709
  * <p>The Amazon Resource Name (ARN) of the EventBridge API destinations IAM role that you
698
- * created.</p>
710
+ * created. For more information about ARNs and how to use them in policies, see <a href="https://docs.aws.amazon.com//security-lake/latest/userguide/subscriber-data-access.html">Managing data access</a> and <a href="https://docs.aws.amazon.com/security-lake/latest/userguide/security-iam-awsmanpol.html">Amazon Web Services
711
+ * Managed Policies</a> in the Amazon Security Lake User Guide.</p>
699
712
  */
700
713
  roleArn?: string;
701
714
  }
@@ -754,8 +767,8 @@ export interface DeleteDatalakeResponse {
754
767
  }
755
768
  export interface DeleteDatalakeAutoEnableRequest {
756
769
  /**
757
- * <p>Delete Amazon Security Lake with the specified configuration settings to stop ingesting
758
- * security data for new accounts in Security Lake. </p>
770
+ * <p>Remove automatic enablement of configuration settings for new member accounts in
771
+ * Security Lake. </p>
759
772
  */
760
773
  removeFromConfigurationForNewAccounts: AutoEnableNewRegionConfiguration[] | undefined;
761
774
  }
@@ -847,6 +860,44 @@ export declare enum SettingsStatus {
847
860
  INITIALIZED = "INITIALIZED",
848
861
  PENDING = "PENDING"
849
862
  }
863
+ /**
864
+ * <p>The details of the last <code>UpdateDatalake</code> or <code>DeleteDatalake</code>
865
+ * API request which failed.</p>
866
+ */
867
+ export interface LastUpdateFailure {
868
+ /**
869
+ * <p>The reason for the failure of the last <code>UpdateDatalake</code>or
870
+ * <code>DeleteDatalake</code> API request.</p>
871
+ */
872
+ reason?: string;
873
+ /**
874
+ * <p>The reason code for the failure of the last <code>UpdateDatalake</code> or
875
+ * <code>DeleteDatalake</code> API request.</p>
876
+ */
877
+ code?: string;
878
+ }
879
+ /**
880
+ * <p>The status of the last <code>UpdateDatalake</code> or <code>DeleteDatalake</code> API
881
+ * request. This is set to Completed after the configuration is updated, or removed if
882
+ * deletion of the data lake is successful.</p>
883
+ */
884
+ export interface UpdateStatus {
885
+ /**
886
+ * <p>The unique ID for the <code>UpdateDatalake</code> or <code>DeleteDatalake</code> API
887
+ * request.</p>
888
+ */
889
+ lastUpdateRequestId?: string;
890
+ /**
891
+ * <p>The status of the last <code>UpdateDatalake</code> or <code>DeleteDatalake</code> API
892
+ * request that was requested.</p>
893
+ */
894
+ lastUpdateStatus?: SettingsStatus | string;
895
+ /**
896
+ * <p>The details of the last <code>UpdateDatalake</code>or <code>DeleteDatalake</code> API
897
+ * request which failed.</p>
898
+ */
899
+ lastUpdateFailure?: LastUpdateFailure;
900
+ }
850
901
  /**
851
902
  * <p>Provides details of Amazon Security Lake lake configuration object.</p>
852
903
  */
@@ -889,6 +940,11 @@ export interface LakeConfigurationResponse {
889
940
  * <p>Retrieves the status of the configuration operation for an account in Amazon Security Lake. </p>
890
941
  */
891
942
  status?: SettingsStatus | string;
943
+ /**
944
+ * <p>The status of the last <code>UpdateDatalake </code>or <code>DeleteDatalake</code> API
945
+ * request. </p>
946
+ */
947
+ updateStatus?: UpdateStatus;
892
948
  }
893
949
  export interface GetDatalakeResponse {
894
950
  /**
@@ -1056,6 +1112,17 @@ export interface SubscriberResource {
1056
1112
  * <p>The date and time when the subscription was created. </p>
1057
1113
  */
1058
1114
  updatedAt?: Date;
1115
+ /**
1116
+ * <p>The Amazon Resource Name (ARN) which uniquely defines the AWS RAM resource share. Before
1117
+ * accepting the RAM resource share invitation, you can view details related to the RAM
1118
+ * resource share.</p>
1119
+ * <p>This field is available only for Lake Formation subscribers created after March 8, 2023.</p>
1120
+ */
1121
+ resourceShareArn?: string;
1122
+ /**
1123
+ * <p>The name of the resource share.</p>
1124
+ */
1125
+ resourceShareName?: string;
1059
1126
  }
1060
1127
  export interface GetSubscriberResponse {
1061
1128
  /**
@@ -1241,7 +1308,8 @@ export interface UpdateSubscriptionNotificationConfigurationRequest {
1241
1308
  */
1242
1309
  createSqs?: boolean;
1243
1310
  /**
1244
- * <p>The Amazon Resource Name (ARN) specifying the role of the subscriber. </p>
1311
+ * <p>The Amazon Resource Name (ARN) specifying the role of the subscriber. For more information about ARNs and how to use them in policies, see, see the <a href="https://docs.aws.amazon.com//security-lake/latest/userguide/subscriber-data-access.html">Managing data access</a> and <a href="https://docs.aws.amazon.com/security-lake/latest/userguide/security-iam-awsmanpol.html">Amazon Web Services Managed Policies</a>in the Amazon Security Lake User
1312
+ * Guide.</p>
1245
1313
  */
1246
1314
  roleArn?: string;
1247
1315
  }
@@ -1419,6 +1487,14 @@ export declare const FailuresResponseFilterSensitiveLog: (obj: FailuresResponse)
1419
1487
  * @internal
1420
1488
  */
1421
1489
  export declare const GetDatalakeRequestFilterSensitiveLog: (obj: GetDatalakeRequest) => any;
1490
+ /**
1491
+ * @internal
1492
+ */
1493
+ export declare const LastUpdateFailureFilterSensitiveLog: (obj: LastUpdateFailure) => any;
1494
+ /**
1495
+ * @internal
1496
+ */
1497
+ export declare const UpdateStatusFilterSensitiveLog: (obj: UpdateStatus) => any;
1422
1498
  /**
1423
1499
  * @internal
1424
1500
  */
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
27
27
  defaultSigningName: string;
28
28
  };
29
29
  export interface EndpointParameters extends __EndpointParameters {
30
- Region: string;
30
+ Region?: string;
31
31
  UseDualStack?: boolean;
32
32
  UseFIPS?: boolean;
33
33
  Endpoint?: string;
@@ -3,6 +3,7 @@ import { SecurityLakeServiceException as __BaseException } from "./SecurityLakeS
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
+ errorCode?: string;
6
7
  constructor(
7
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
9
  );
@@ -311,6 +312,8 @@ export interface CreateSubscriberResponse {
311
312
  roleArn?: string;
312
313
  snsArn?: string;
313
314
  s3BucketArn?: string;
315
+ resourceShareArn?: string;
316
+ resourceShareName?: string;
314
317
  }
315
318
  export declare class InvalidInputException extends __BaseException {
316
319
  readonly name: "InvalidInputException";
@@ -402,6 +405,15 @@ export declare enum SettingsStatus {
402
405
  INITIALIZED = "INITIALIZED",
403
406
  PENDING = "PENDING",
404
407
  }
408
+ export interface LastUpdateFailure {
409
+ reason?: string;
410
+ code?: string;
411
+ }
412
+ export interface UpdateStatus {
413
+ lastUpdateRequestId?: string;
414
+ lastUpdateStatus?: SettingsStatus | string;
415
+ lastUpdateFailure?: LastUpdateFailure;
416
+ }
405
417
  export interface LakeConfigurationResponse {
406
418
  encryptionKey?: string;
407
419
  retentionSettings?: RetentionSetting[];
@@ -410,6 +422,7 @@ export interface LakeConfigurationResponse {
410
422
  replicationRoleArn?: string;
411
423
  s3BucketArn?: string;
412
424
  status?: SettingsStatus | string;
425
+ updateStatus?: UpdateStatus;
413
426
  }
414
427
  export interface GetDatalakeResponse {
415
428
  configurations: Record<string, LakeConfigurationResponse> | undefined;
@@ -464,6 +477,8 @@ export interface SubscriberResource {
464
477
  externalId?: string;
465
478
  createdAt?: Date;
466
479
  updatedAt?: Date;
480
+ resourceShareArn?: string;
481
+ resourceShareName?: string;
467
482
  }
468
483
  export interface GetSubscriberResponse {
469
484
  subscriber?: SubscriberResource;
@@ -654,6 +669,10 @@ export declare const FailuresResponseFilterSensitiveLog: (
654
669
  export declare const GetDatalakeRequestFilterSensitiveLog: (
655
670
  obj: GetDatalakeRequest
656
671
  ) => any;
672
+ export declare const LastUpdateFailureFilterSensitiveLog: (
673
+ obj: LastUpdateFailure
674
+ ) => any;
675
+ export declare const UpdateStatusFilterSensitiveLog: (obj: UpdateStatus) => any;
657
676
  export declare const LakeConfigurationResponseFilterSensitiveLog: (
658
677
  obj: LakeConfigurationResponse
659
678
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-securitylake",
3
3
  "description": "AWS SDK for JavaScript Securitylake Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.292.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,55 +20,50 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
54
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
53
+ "@aws-sdk/util-user-agent-node": "3.292.0",
54
+ "@aws-sdk/util-utf8": "3.292.0",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
58
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
59
59
  "@tsconfig/node14": "1.0.3",
60
60
  "@types/node": "^14.14.31",
61
61
  "concurrently": "7.0.0",
62
62
  "downlevel-dts": "0.10.1",
63
63
  "rimraf": "3.0.2",
64
- "typedoc": "0.19.2",
64
+ "typedoc": "0.23.23",
65
65
  "typescript": "~4.6.2"
66
66
  },
67
- "overrides": {
68
- "typedoc": {
69
- "typescript": "~4.6.2"
70
- }
71
- },
72
67
  "engines": {
73
68
  "node": ">=14.0.0"
74
69
  },