cdk-docker-image-deployment 0.0.124 → 0.0.126

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 (29) hide show
  1. package/.jsii +4 -4
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +12 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/amplifybackend-2020-08-11.min.json +3 -0
  8. package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.min.json +38 -14
  9. package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +66 -49
  10. package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +70 -15
  11. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +226 -209
  12. package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +263 -261
  13. package/node_modules/aws-sdk/clients/amplifybackend.d.ts +6 -2
  14. package/node_modules/aws-sdk/clients/applicationautoscaling.d.ts +58 -30
  15. package/node_modules/aws-sdk/clients/apprunner.d.ts +13 -2
  16. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +8 -8
  17. package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
  18. package/node_modules/aws-sdk/clients/emrserverless.d.ts +61 -5
  19. package/node_modules/aws-sdk/clients/lightsail.d.ts +3 -3
  20. package/node_modules/aws-sdk/clients/mwaa.d.ts +3 -3
  21. package/node_modules/aws-sdk/clients/rds.d.ts +34 -7
  22. package/node_modules/aws-sdk/clients/ssm.d.ts +10 -1
  23. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  24. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +7 -7
  25. package/node_modules/aws-sdk/dist/aws-sdk.js +530 -487
  26. package/node_modules/aws-sdk/dist/aws-sdk.min.js +97 -97
  27. package/node_modules/aws-sdk/lib/core.js +1 -1
  28. package/node_modules/aws-sdk/package.json +1 -1
  29. package/package.json +8 -8
@@ -147,7 +147,7 @@ declare namespace EMRServerless {
147
147
  */
148
148
  arn: ApplicationArn;
149
149
  /**
150
- * The EMR release version associated with the application.
150
+ * The EMR release associated with the application.
151
151
  */
152
152
  releaseLabel: ReleaseLabel;
153
153
  /**
@@ -198,6 +198,14 @@ declare namespace EMRServerless {
198
198
  * The CPU architecture of an application.
199
199
  */
200
200
  architecture?: Architecture;
201
+ /**
202
+ * The image configuration applied to all worker types.
203
+ */
204
+ imageConfiguration?: ImageConfiguration;
205
+ /**
206
+ * The specification applied to each worker type.
207
+ */
208
+ workerTypeSpecifications?: WorkerTypeSpecificationMap;
201
209
  }
202
210
  export type ApplicationArn = string;
203
211
  export type ApplicationId = string;
@@ -219,7 +227,7 @@ declare namespace EMRServerless {
219
227
  */
220
228
  arn: ApplicationArn;
221
229
  /**
222
- * The EMR release version associated with the application.
230
+ * The EMR release associated with the application.
223
231
  */
224
232
  releaseLabel: ReleaseLabel;
225
233
  /**
@@ -319,7 +327,7 @@ declare namespace EMRServerless {
319
327
  */
320
328
  name?: ApplicationName;
321
329
  /**
322
- * The EMR release version associated with the application.
330
+ * The EMR release associated with the application.
323
331
  */
324
332
  releaseLabel: ReleaseLabel;
325
333
  /**
@@ -358,6 +366,14 @@ declare namespace EMRServerless {
358
366
  * The CPU architecture of an application.
359
367
  */
360
368
  architecture?: Architecture;
369
+ /**
370
+ * The image configuration for all worker types. You can either set this parameter or imageConfiguration for each worker type in workerTypeSpecifications.
371
+ */
372
+ imageConfiguration?: ImageConfigurationInput;
373
+ /**
374
+ * The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.
375
+ */
376
+ workerTypeSpecifications?: WorkerTypeSpecificationInputMap;
361
377
  }
362
378
  export interface CreateApplicationResponse {
363
379
  /**
@@ -450,6 +466,24 @@ declare namespace EMRServerless {
450
466
  }
451
467
  export type HiveCliParameters = string;
452
468
  export type IAMRoleArn = string;
469
+ export interface ImageConfiguration {
470
+ /**
471
+ * The image URI.
472
+ */
473
+ imageUri: ImageUri;
474
+ /**
475
+ * The SHA256 digest of the image URI. This indicates which specific image the application is configured for. The image digest doesn't exist until an application has started.
476
+ */
477
+ resolvedImageDigest?: ImageDigest;
478
+ }
479
+ export interface ImageConfigurationInput {
480
+ /**
481
+ * The URI of an image in the Amazon ECR registry. This field is required when you create a new application. If you leave this field blank in an update, Amazon EMR will remove the image configuration.
482
+ */
483
+ imageUri?: ImageUri;
484
+ }
485
+ export type ImageDigest = string;
486
+ export type ImageUri = string;
453
487
  export type InitScriptPath = string;
454
488
  export interface InitialCapacityConfig {
455
489
  /**
@@ -516,7 +550,7 @@ declare namespace EMRServerless {
516
550
  */
517
551
  stateDetails: String256;
518
552
  /**
519
- * The EMR release version associated with the application your job is running on.
553
+ * The EMR release associated with the application your job is running on.
520
554
  */
521
555
  releaseLabel: ReleaseLabel;
522
556
  /**
@@ -586,7 +620,7 @@ declare namespace EMRServerless {
586
620
  */
587
621
  stateDetails: String256;
588
622
  /**
589
- * The EMR release version associated with the application your job is running on.
623
+ * The EMR release associated with the application your job is running on.
590
624
  */
591
625
  releaseLabel: ReleaseLabel;
592
626
  /**
@@ -888,6 +922,14 @@ declare namespace EMRServerless {
888
922
  * The CPU architecture of an application.
889
923
  */
890
924
  architecture?: Architecture;
925
+ /**
926
+ * The image configuration to be used for all worker types. You can either set this parameter or imageConfiguration for each worker type in WorkerTypeSpecificationInput.
927
+ */
928
+ imageConfiguration?: ImageConfigurationInput;
929
+ /**
930
+ * The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.
931
+ */
932
+ workerTypeSpecifications?: WorkerTypeSpecificationInputMap;
891
933
  }
892
934
  export interface UpdateApplicationResponse {
893
935
  /**
@@ -912,6 +954,20 @@ declare namespace EMRServerless {
912
954
  */
913
955
  disk?: DiskSize;
914
956
  }
957
+ export interface WorkerTypeSpecification {
958
+ /**
959
+ * The image configuration for a worker type.
960
+ */
961
+ imageConfiguration?: ImageConfiguration;
962
+ }
963
+ export interface WorkerTypeSpecificationInput {
964
+ /**
965
+ * The image configuration for a worker type.
966
+ */
967
+ imageConfiguration?: ImageConfigurationInput;
968
+ }
969
+ export type WorkerTypeSpecificationInputMap = {[key: string]: WorkerTypeSpecificationInput};
970
+ export type WorkerTypeSpecificationMap = {[key: string]: WorkerTypeSpecification};
915
971
  export type WorkerTypeString = string;
916
972
  /**
917
973
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
@@ -2733,7 +2733,7 @@ declare namespace Lightsail {
2733
2733
  }
2734
2734
  export interface CreateDomainRequest {
2735
2735
  /**
2736
- * The domain name to manage (e.g., example.com). You cannot register a new domain name using Lightsail. You must register a domain name using Amazon Route 53 or another domain name registrar. If you have already registered your domain, you can enter its name in this parameter to manage the DNS records for that domain using Lightsail.
2736
+ * The domain name to manage (e.g., example.com).
2737
2737
  */
2738
2738
  domainName: DomainName;
2739
2739
  /**
@@ -3201,7 +3201,7 @@ declare namespace Lightsail {
3201
3201
  */
3202
3202
  diskName: ResourceName;
3203
3203
  /**
3204
- * A Boolean value to indicate whether to delete the enabled add-ons for the disk.
3204
+ * A Boolean value to indicate whether to delete all add-ons for the disk.
3205
3205
  */
3206
3206
  forceDeleteAddOns?: boolean;
3207
3207
  }
@@ -3269,7 +3269,7 @@ declare namespace Lightsail {
3269
3269
  */
3270
3270
  instanceName: ResourceName;
3271
3271
  /**
3272
- * A Boolean value to indicate whether to delete the enabled add-ons for the disk.
3272
+ * A Boolean value to indicate whether to delete all add-ons for the instance.
3273
3273
  */
3274
3274
  forceDeleteAddOns?: boolean;
3275
3275
  }
@@ -128,7 +128,7 @@ declare namespace MWAA {
128
128
  */
129
129
  AirflowConfigurationOptions?: AirflowConfigurationOptions;
130
130
  /**
131
- * The Apache Airflow version for your environment. If no value is specified, it defaults to the latest version. Valid values: 1.10.12, 2.0.2, and 2.2.2. To learn more, see Apache Airflow versions on Amazon Managed Workflows for Apache Airflow (MWAA).
131
+ * The Apache Airflow version for your environment. If no value is specified, it defaults to the latest version. Valid values: 1.10.12, 2.0.2, 2.2.2, and 2.4.3. For more information, see Apache Airflow versions on Amazon Managed Workflows for Apache Airflow (MWAA).
132
132
  */
133
133
  AirflowVersion?: AirflowVersion;
134
134
  /**
@@ -253,7 +253,7 @@ declare namespace MWAA {
253
253
  */
254
254
  AirflowConfigurationOptions?: AirflowConfigurationOptions;
255
255
  /**
256
- * The Apache Airflow version on your environment. Valid values: 1.10.12, 2.0.2, and 2.2.2.
256
+ * The Apache Airflow version on your environment. Valid values: 1.10.12, 2.0.2, 2.2.2, and 2.4.3.
257
257
  */
258
258
  AirflowVersion?: AirflowVersion;
259
259
  /**
@@ -614,7 +614,7 @@ declare namespace MWAA {
614
614
  */
615
615
  AirflowConfigurationOptions?: AirflowConfigurationOptions;
616
616
  /**
617
- * The Apache Airflow version for your environment. If no value is specified, defaults to the latest version. Valid values: 1.10.12, 2.0.2, and 2.2.2.
617
+ * The Apache Airflow version for your environment. If no value is specified, defaults to the latest version. Valid values: 1.10.12, 2.0.2, 2.2.2, and 2.4.3.
618
618
  */
619
619
  AirflowVersion?: AirflowVersion;
620
620
  /**
@@ -414,11 +414,11 @@ declare class RDS extends Service {
414
414
  */
415
415
  describeBlueGreenDeployments(callback?: (err: AWSError, data: RDS.Types.DescribeBlueGreenDeploymentsResponse) => void): Request<RDS.Types.DescribeBlueGreenDeploymentsResponse, AWSError>;
416
416
  /**
417
- * Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account.
417
+ * Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
418
418
  */
419
419
  describeCertificates(params: RDS.Types.DescribeCertificatesMessage, callback?: (err: AWSError, data: RDS.Types.CertificateMessage) => void): Request<RDS.Types.CertificateMessage, AWSError>;
420
420
  /**
421
- * Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account.
421
+ * Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
422
422
  */
423
423
  describeCertificates(callback?: (err: AWSError, data: RDS.Types.CertificateMessage) => void): Request<RDS.Types.CertificateMessage, AWSError>;
424
424
  /**
@@ -1439,6 +1439,7 @@ declare namespace RDS {
1439
1439
  export type Boolean = boolean;
1440
1440
  export type BooleanOptional = boolean;
1441
1441
  export type BucketName = string;
1442
+ export type CACertificateIdentifiersList = String[];
1442
1443
  export interface CancelExportTaskMessage {
1443
1444
  /**
1444
1445
  * The identifier of the snapshot export task to cancel.
@@ -1479,6 +1480,16 @@ declare namespace RDS {
1479
1480
  */
1480
1481
  CustomerOverrideValidTill?: TStamp;
1481
1482
  }
1483
+ export interface CertificateDetails {
1484
+ /**
1485
+ * The CA identifier of the CA certificate used for the DB instance's server certificate.
1486
+ */
1487
+ CAIdentifier?: String;
1488
+ /**
1489
+ * The expiration date of the DB instance’s server certificate.
1490
+ */
1491
+ ValidTill?: TStamp;
1492
+ }
1482
1493
  export type CertificateList = Certificate[];
1483
1494
  export interface CertificateMessage {
1484
1495
  /**
@@ -2259,6 +2270,10 @@ declare namespace RDS {
2259
2270
  * The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager. This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB instance. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region.
2260
2271
  */
2261
2272
  MasterUserSecretKmsKeyId?: String;
2273
+ /**
2274
+ * Specifies the CA certificate identifier to use for the DB instance’s server certificate. This setting doesn't apply to RDS Custom. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
2275
+ */
2276
+ CACertificateIdentifier?: String;
2262
2277
  }
2263
2278
  export interface CreateDBInstanceReadReplicaMessage {
2264
2279
  /**
@@ -3393,6 +3408,14 @@ declare namespace RDS {
3393
3408
  * JSON string that lists the installation files and parameters that RDS Custom uses to create a custom engine version (CEV). RDS Custom applies the patches in the order in which they're listed in the manifest. You can set the Oracle home, Oracle base, and UNIX/Linux user and group using the installation parameters. For more information, see JSON fields in the CEV manifest in the Amazon RDS User Guide.
3394
3409
  */
3395
3410
  CustomDBEngineVersionManifest?: CustomDBEngineVersionManifest;
3411
+ /**
3412
+ * A value that indicates whether the engine version supports rotating the server certificate without rebooting the DB instance.
3413
+ */
3414
+ SupportsCertificateRotationWithoutRestart?: BooleanOptional;
3415
+ /**
3416
+ * A list of the supported CA certificate identifiers. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
3417
+ */
3418
+ SupportedCACertificateIdentifiers?: CACertificateIdentifiersList;
3396
3419
  }
3397
3420
  export type DBEngineVersionList = DBEngineVersion[];
3398
3421
  export interface DBEngineVersionMessage {
@@ -3575,7 +3598,7 @@ declare namespace RDS {
3575
3598
  */
3576
3599
  DbiResourceId?: String;
3577
3600
  /**
3578
- * The identifier of the CA certificate for this DB instance.
3601
+ * The identifier of the CA certificate for this DB instance. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
3579
3602
  */
3580
3603
  CACertificateIdentifier?: String;
3581
3604
  /**
@@ -3719,6 +3742,10 @@ declare namespace RDS {
3719
3742
  * Contains the secret managed by RDS in Amazon Web Services Secrets Manager for the master user password. For more information, see Password management with Amazon Web Services Secrets Manager in the Amazon RDS User Guide.
3720
3743
  */
3721
3744
  MasterUserSecret?: MasterUserSecret;
3745
+ /**
3746
+ * The details of the DB instance's server certificate.
3747
+ */
3748
+ CertificateDetails?: CertificateDetails;
3722
3749
  }
3723
3750
  export interface DBInstanceAutomatedBackup {
3724
3751
  /**
@@ -6131,7 +6158,7 @@ declare namespace RDS {
6131
6158
  */
6132
6159
  DBClusterIdentifier: String;
6133
6160
  /**
6134
- * The new DB cluster identifier for the DB cluster when renaming a DB cluster. This value is stored as a lowercase string. Constraints: Must contain from 1 to 63 letters, numbers, or hyphens The first character must be a letter Can't end with a hyphen or contain two consecutive hyphens Example: my-cluster2 Valid for: Aurora DB clusters only
6161
+ * The new DB cluster identifier for the DB cluster when renaming a DB cluster. This value is stored as a lowercase string. Constraints: Must contain from 1 to 63 letters, numbers, or hyphens The first character must be a letter Can't end with a hyphen or contain two consecutive hyphens Example: my-cluster2 Valid for: Aurora DB clusters and Multi-AZ DB clusters
6135
6162
  */
6136
6163
  NewDBClusterIdentifier?: String;
6137
6164
  /**
@@ -6408,7 +6435,7 @@ declare namespace RDS {
6408
6435
  */
6409
6436
  TdeCredentialPassword?: String;
6410
6437
  /**
6411
- * Specifies the certificate to associate with the DB instance. This setting doesn't apply to RDS Custom.
6438
+ * Specifies the CA certificate identifier to use for the DB instance’s server certificate. This setting doesn't apply to RDS Custom. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
6412
6439
  */
6413
6440
  CACertificateIdentifier?: String;
6414
6441
  /**
@@ -7348,7 +7375,7 @@ declare namespace RDS {
7348
7375
  */
7349
7376
  StorageType?: String;
7350
7377
  /**
7351
- * The identifier of the CA certificate for the DB instance.
7378
+ * The identifier of the CA certificate for the DB instance. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
7352
7379
  */
7353
7380
  CACertificateIdentifier?: String;
7354
7381
  /**
@@ -8833,7 +8860,7 @@ declare namespace RDS {
8833
8860
  */
8834
8861
  IamRoleArn: String;
8835
8862
  /**
8836
- * The ID of the Amazon Web Services KMS key to use to encrypt the snapshot exported to Amazon S3. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. The caller of this operation must be authorized to execute the following operations. These can be set in the Amazon Web Services KMS key policy: GrantOperation.Encrypt GrantOperation.Decrypt GrantOperation.GenerateDataKey GrantOperation.GenerateDataKeyWithoutPlaintext GrantOperation.ReEncryptFrom GrantOperation.ReEncryptTo GrantOperation.CreateGrant GrantOperation.DescribeKey GrantOperation.RetireGrant
8863
+ * The ID of the Amazon Web Services KMS key to use to encrypt the snapshot exported to Amazon S3. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. The caller of this operation must be authorized to run the following operations. These can be set in the Amazon Web Services KMS key policy: kms:Encrypt kms:Decrypt kms:GenerateDataKey kms:GenerateDataKeyWithoutPlaintext kms:ReEncryptFrom kms:ReEncryptTo kms:CreateGrant kms:DescribeKey kms:RetireGrant
8837
8864
  */
8838
8865
  KmsKeyId: String;
8839
8866
  /**
@@ -4399,6 +4399,14 @@ declare namespace SSM {
4399
4399
  * The document version required by the current document.
4400
4400
  */
4401
4401
  Version?: DocumentVersion;
4402
+ /**
4403
+ * The document type of the required SSM document.
4404
+ */
4405
+ RequireType?: RequireType;
4406
+ /**
4407
+ * An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
4408
+ */
4409
+ VersionName?: DocumentVersionName;
4402
4410
  }
4403
4411
  export type DocumentRequiresList = DocumentRequires[];
4404
4412
  export type DocumentReviewAction = "SendForReview"|"UpdateReview"|"Approve"|"Reject"|string;
@@ -4452,7 +4460,7 @@ declare namespace SSM {
4452
4460
  export type DocumentSha1 = string;
4453
4461
  export type DocumentStatus = "Creating"|"Active"|"Updating"|"Deleting"|"Failed"|string;
4454
4462
  export type DocumentStatusInformation = string;
4455
- export type DocumentType = "Command"|"Policy"|"Automation"|"Session"|"Package"|"ApplicationConfiguration"|"ApplicationConfigurationSchema"|"DeploymentStrategy"|"ChangeCalendar"|"Automation.ChangeTemplate"|"ProblemAnalysis"|"ProblemAnalysisTemplate"|"CloudFormation"|"ConformancePackTemplate"|string;
4463
+ export type DocumentType = "Command"|"Policy"|"Automation"|"Session"|"Package"|"ApplicationConfiguration"|"ApplicationConfigurationSchema"|"DeploymentStrategy"|"ChangeCalendar"|"Automation.ChangeTemplate"|"ProblemAnalysis"|"ProblemAnalysisTemplate"|"CloudFormation"|"ConformancePackTemplate"|"QuickSetup"|string;
4456
4464
  export type DocumentVersion = string;
4457
4465
  export interface DocumentVersionInfo {
4458
4466
  /**
@@ -8379,6 +8387,7 @@ declare namespace SSM {
8379
8387
  }
8380
8388
  export interface RemoveTagsFromResourceResult {
8381
8389
  }
8390
+ export type RequireType = string;
8382
8391
  export interface ResetServiceSettingRequest {
8383
8392
  /**
8384
8393
  * The Amazon Resource Name (ARN) of the service setting to reset. The setting ID can be one of the following. /ssm/automation/customer-script-log-destination /ssm/automation/customer-script-log-group-name /ssm/documents/console/public-sharing-permission /ssm/managed-instance/activation-tier /ssm/opsinsights/opscenter /ssm/parameter-store/default-parameter-tier /ssm/parameter-store/high-throughput-enabled
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1287.0',
86
+ VERSION: '2.1289.0',
87
87
 
88
88
  /**
89
89
  * @api private