cdk-comprehend-s3olap 2.0.69 → 2.0.72

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 (54) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +20 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appmesh-2019-01-25.min.json +220 -167
  8. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +464 -31
  9. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
  10. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +227 -33
  11. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.paginators.json +5 -0
  12. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +601 -558
  13. package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +105 -77
  14. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +98 -66
  15. package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +135 -111
  16. package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +405 -123
  17. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +104 -22
  18. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.paginators.json +11 -0
  19. package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +52 -51
  20. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +11 -5
  21. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.examples.json +103 -0
  22. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +252 -141
  23. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.paginators.json +6 -0
  24. package/node_modules/aws-sdk/clients/appmesh.d.ts +70 -3
  25. package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +472 -43
  26. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +100 -2
  27. package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +2 -2
  28. package/node_modules/aws-sdk/clients/dynamodb.d.ts +276 -2
  29. package/node_modules/aws-sdk/clients/ec2.d.ts +53 -0
  30. package/node_modules/aws-sdk/clients/kendra.d.ts +38 -6
  31. package/node_modules/aws-sdk/clients/lakeformation.d.ts +48 -2
  32. package/node_modules/aws-sdk/clients/lambda.d.ts +45 -17
  33. package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +290 -2
  34. package/node_modules/aws-sdk/clients/networkmanager.d.ts +5 -0
  35. package/node_modules/aws-sdk/clients/rds.d.ts +36 -12
  36. package/node_modules/aws-sdk/clients/rekognition.d.ts +170 -3
  37. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +11 -11
  38. package/node_modules/aws-sdk/clients/servicecatalog.d.ts +57 -57
  39. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  40. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +17 -17
  41. package/node_modules/aws-sdk/dist/aws-sdk.js +1355 -873
  42. package/node_modules/aws-sdk/dist/aws-sdk.min.js +71 -71
  43. package/node_modules/aws-sdk/lib/core.js +1 -1
  44. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +252 -2
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/node_modules/esbuild/install.js +4 -4
  47. package/node_modules/esbuild/lib/main.js +7 -7
  48. package/node_modules/esbuild/package.json +22 -22
  49. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  50. package/node_modules/esbuild-linux-64/package.json +1 -1
  51. package/node_modules/object.assign/CHANGELOG.md +4 -0
  52. package/node_modules/object.assign/dist/browser.js +944 -0
  53. package/node_modules/object.assign/package.json +3 -2
  54. package/package.json +10 -10
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1195.0',
23
+ VERSION: '2.1198.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -418,7 +418,7 @@ export namespace DocumentClient {
418
418
  */
419
419
  Code?: BatchStatementErrorCodeEnum;
420
420
  /**
421
- * The error message associated with the PartiQL batch resposne.
421
+ * The error message associated with the PartiQL batch response.
422
422
  */
423
423
  Message?: String;
424
424
  }
@@ -509,6 +509,7 @@ export namespace DocumentClient {
509
509
  }
510
510
  export type ClientRequestToken = string;
511
511
  export type ClientToken = string;
512
+ export type CloudWatchLogGroupArn = string;
512
513
  export type ComparisonOperator = "EQ"|"NE"|"IN"|"LE"|"LT"|"GE"|"GT"|"BETWEEN"|"NOT_NULL"|"NULL"|"CONTAINS"|"NOT_CONTAINS"|"BEGINS_WITH"|string;
513
514
  export interface Condition {
514
515
  /**
@@ -741,6 +742,19 @@ export namespace DocumentClient {
741
742
  */
742
743
  TableDescription?: TableDescription;
743
744
  }
745
+ export type CsvDelimiter = string;
746
+ export type CsvHeader = string;
747
+ export type CsvHeaderList = CsvHeader[];
748
+ export interface CsvOptions {
749
+ /**
750
+ * The delimiter used for separating items in the CSV file being imported.
751
+ */
752
+ Delimiter?: CsvDelimiter;
753
+ /**
754
+ * List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
755
+ */
756
+ HeaderList?: CsvHeaderList;
757
+ }
744
758
  export type _Date = Date;
745
759
  export interface Delete {
746
760
  /**
@@ -977,6 +991,18 @@ export namespace DocumentClient {
977
991
  */
978
992
  ReplicaSettings?: ReplicaSettingsDescriptionList;
979
993
  }
994
+ export interface DescribeImportInput {
995
+ /**
996
+ * The Amazon Resource Name (ARN) associated with the table you're importing to.
997
+ */
998
+ ImportArn: ImportArn;
999
+ }
1000
+ export interface DescribeImportOutput {
1001
+ /**
1002
+ * Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
1003
+ */
1004
+ ImportTableDescription: ImportTableDescription;
1005
+ }
980
1006
  export interface DescribeKinesisStreamingDestinationInput {
981
1007
  /**
982
1008
  * The name of the table being described.
@@ -1062,6 +1088,7 @@ export namespace DocumentClient {
1062
1088
  CachePeriodInMinutes: Long;
1063
1089
  }
1064
1090
  export type Endpoints = Endpoint[];
1091
+ export type ErrorCount = number;
1065
1092
  export type ExceptionDescription = string;
1066
1093
  export type ExceptionName = string;
1067
1094
  export interface ExecuteStatementInput {
@@ -1251,7 +1278,7 @@ export namespace DocumentClient {
1251
1278
  */
1252
1279
  ExportTime?: ExportTime;
1253
1280
  /**
1254
- * Providing a ClientToken makes the call to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an IdempotentParameterMismatch exception.
1281
+ * Providing a ClientToken makes the call to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an ImportConflictException.
1255
1282
  */
1256
1283
  ClientToken?: ClientToken;
1257
1284
  /**
@@ -1508,8 +1535,167 @@ export namespace DocumentClient {
1508
1535
  export type GlobalTableGlobalSecondaryIndexSettingsUpdateList = GlobalTableGlobalSecondaryIndexSettingsUpdate[];
1509
1536
  export type GlobalTableList = GlobalTable[];
1510
1537
  export type GlobalTableStatus = "CREATING"|"ACTIVE"|"DELETING"|"UPDATING"|string;
1538
+ export type ImportArn = string;
1539
+ export type ImportEndTime = Date;
1540
+ export type ImportNextToken = string;
1541
+ export type ImportStartTime = Date;
1542
+ export type ImportStatus = "IN_PROGRESS"|"COMPLETED"|"CANCELLING"|"CANCELLED"|"FAILED"|string;
1543
+ export interface ImportSummary {
1544
+ /**
1545
+ * The Amazon Resource Number (ARN) corresponding to the import request.
1546
+ */
1547
+ ImportArn?: ImportArn;
1548
+ /**
1549
+ * The status of the import operation.
1550
+ */
1551
+ ImportStatus?: ImportStatus;
1552
+ /**
1553
+ * The Amazon Resource Number (ARN) of the table being imported into.
1554
+ */
1555
+ TableArn?: TableArn;
1556
+ /**
1557
+ * The path and S3 bucket of the source file that is being imported. This includes the S3Bucket (required), S3KeyPrefix (optional) and S3BucketOwner (optional if the bucket is owned by the requester).
1558
+ */
1559
+ S3BucketSource?: S3BucketSource;
1560
+ /**
1561
+ * The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with this import task.
1562
+ */
1563
+ CloudWatchLogGroupArn?: CloudWatchLogGroupArn;
1564
+ /**
1565
+ * The format of the source data. Valid values are CSV, DYNAMODB_JSON or ION.
1566
+ */
1567
+ InputFormat?: InputFormat;
1568
+ /**
1569
+ * The time at which this import task began.
1570
+ */
1571
+ StartTime?: ImportStartTime;
1572
+ /**
1573
+ * The time at which this import task ended. (Does this include the successful complete creation of the table it was imported to?)
1574
+ */
1575
+ EndTime?: ImportEndTime;
1576
+ }
1577
+ export type ImportSummaryList = ImportSummary[];
1578
+ export interface ImportTableDescription {
1579
+ /**
1580
+ * The Amazon Resource Number (ARN) corresponding to the import request.
1581
+ */
1582
+ ImportArn?: ImportArn;
1583
+ /**
1584
+ * The status of the import.
1585
+ */
1586
+ ImportStatus?: ImportStatus;
1587
+ /**
1588
+ * The Amazon Resource Number (ARN) of the table being imported into.
1589
+ */
1590
+ TableArn?: TableArn;
1591
+ /**
1592
+ * The table id corresponding to the table created by import table process.
1593
+ */
1594
+ TableId?: TableId;
1595
+ /**
1596
+ * The client token that was provided for the import task. Reusing the client token on retry makes a call to ImportTable idempotent.
1597
+ */
1598
+ ClientToken?: ClientToken;
1599
+ /**
1600
+ * Values for the S3 bucket the source file is imported from. Includes bucket name (required), key prefix (optional) and bucket account owner ID (optional).
1601
+ */
1602
+ S3BucketSource?: S3BucketSource;
1603
+ /**
1604
+ * The number of errors occurred on importing the source file into the target table.
1605
+ */
1606
+ ErrorCount?: ErrorCount;
1607
+ /**
1608
+ * The Amazon Resource Number (ARN) of the Cloudwatch Log Group associated with the target table.
1609
+ */
1610
+ CloudWatchLogGroupArn?: CloudWatchLogGroupArn;
1611
+ /**
1612
+ * The format of the source data going into the target table.
1613
+ */
1614
+ InputFormat?: InputFormat;
1615
+ /**
1616
+ * The format options for the data that was imported into the target table. There is one value, CsvOption.
1617
+ */
1618
+ InputFormatOptions?: InputFormatOptions;
1619
+ /**
1620
+ * The compression options for the data that has been imported into the target table. The values are NONE, GZIP, or ZSTD.
1621
+ */
1622
+ InputCompressionType?: InputCompressionType;
1623
+ /**
1624
+ * The parameters for the new table that is being imported into.
1625
+ */
1626
+ TableCreationParameters?: TableCreationParameters;
1627
+ /**
1628
+ * The time when this import task started.
1629
+ */
1630
+ StartTime?: ImportStartTime;
1631
+ /**
1632
+ * The time at which the creation of the table associated with this import task completed.
1633
+ */
1634
+ EndTime?: ImportEndTime;
1635
+ /**
1636
+ * The total size of data processed from the source file, in Bytes.
1637
+ */
1638
+ ProcessedSizeBytes?: Long;
1639
+ /**
1640
+ * The total number of items processed from the source file.
1641
+ */
1642
+ ProcessedItemCount?: ProcessedItemCount;
1643
+ /**
1644
+ * The number of items successfully imported into the new table.
1645
+ */
1646
+ ImportedItemCount?: ImportedItemCount;
1647
+ /**
1648
+ * The error code corresponding to the failure that the import job ran into during execution.
1649
+ */
1650
+ FailureCode?: FailureCode;
1651
+ /**
1652
+ * The error message corresponding to the failure that the import job ran into during execution.
1653
+ */
1654
+ FailureMessage?: FailureMessage;
1655
+ }
1656
+ export interface ImportTableInput {
1657
+ /**
1658
+ * Providing a ClientToken makes the call to ImportTableInput idempotent, meaning that multiple identical calls have the same effect as one single call. A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent. If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an IdempotentParameterMismatch exception.
1659
+ */
1660
+ ClientToken?: ClientToken;
1661
+ /**
1662
+ * The S3 bucket that provides the source for the import.
1663
+ */
1664
+ S3BucketSource: S3BucketSource;
1665
+ /**
1666
+ * The format of the source data. Valid values for ImportFormat are CSV, DYNAMODB_JSON or ION.
1667
+ */
1668
+ InputFormat: InputFormat;
1669
+ /**
1670
+ * Additional properties that specify how the input is formatted,
1671
+ */
1672
+ InputFormatOptions?: InputFormatOptions;
1673
+ /**
1674
+ * Type of compression to be used on the input coming from the imported table.
1675
+ */
1676
+ InputCompressionType?: InputCompressionType;
1677
+ /**
1678
+ * Parameters for the table to import the data into.
1679
+ */
1680
+ TableCreationParameters: TableCreationParameters;
1681
+ }
1682
+ export interface ImportTableOutput {
1683
+ /**
1684
+ * Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
1685
+ */
1686
+ ImportTableDescription: ImportTableDescription;
1687
+ }
1688
+ export type ImportedItemCount = number;
1511
1689
  export type IndexName = string;
1512
1690
  export type IndexStatus = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|string;
1691
+ export type InputCompressionType = "GZIP"|"ZSTD"|"NONE"|string;
1692
+ export type InputFormat = "DYNAMODB_JSON"|"ION"|"CSV"|string;
1693
+ export interface InputFormatOptions {
1694
+ /**
1695
+ * The options for imported source files in CSV format. The values are Delimiter and HeaderList.
1696
+ */
1697
+ Csv?: CsvOptions;
1698
+ }
1513
1699
  export type Integer = number;
1514
1700
  export type IntegerObject = number;
1515
1701
  export type ItemCollectionKeyAttributeMap = {[key: string]: AttributeValue};
@@ -1728,6 +1914,31 @@ export namespace DocumentClient {
1728
1914
  */
1729
1915
  LastEvaluatedGlobalTableName?: TableName;
1730
1916
  }
1917
+ export interface ListImportsInput {
1918
+ /**
1919
+ * The Amazon Resource Name (ARN) associated with the table that was imported to.
1920
+ */
1921
+ TableArn?: TableArn;
1922
+ /**
1923
+ * The number of ImportSummary objects returned in a single page.
1924
+ */
1925
+ PageSize?: ListImportsMaxLimit;
1926
+ /**
1927
+ * An optional string that, if supplied, must be copied from the output of a previous call to ListImports. When provided in this manner, the API fetches the next page of results.
1928
+ */
1929
+ NextToken?: ImportNextToken;
1930
+ }
1931
+ export type ListImportsMaxLimit = number;
1932
+ export interface ListImportsOutput {
1933
+ /**
1934
+ * A list of ImportSummary objects.
1935
+ */
1936
+ ImportSummaryList?: ImportSummaryList;
1937
+ /**
1938
+ * If this value is returned, there are additional results to be displayed. To retrieve them, call ListImports again, with NextToken set to this value.
1939
+ */
1940
+ NextToken?: ImportNextToken;
1941
+ }
1731
1942
  export interface ListTablesInput {
1732
1943
  /**
1733
1944
  * The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
@@ -1874,6 +2085,7 @@ export namespace DocumentClient {
1874
2085
  export type PositiveIntegerObject = number;
1875
2086
  export type PositiveLongObject = number;
1876
2087
  export type PreparedStatementParameters = AttributeValue[];
2088
+ export type ProcessedItemCount = number;
1877
2089
  export interface Projection {
1878
2090
  /**
1879
2091
  * The set of attributes that are projected into the index: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - In addition to the attributes described in KEYS_ONLY, the secondary index will include other non-key attributes that you specify. ALL - All of the table attributes are projected into the index.
@@ -2455,6 +2667,20 @@ export namespace DocumentClient {
2455
2667
  export type ReturnValuesOnConditionCheckFailure = "ALL_OLD"|"NONE"|string;
2456
2668
  export type S3Bucket = string;
2457
2669
  export type S3BucketOwner = string;
2670
+ export interface S3BucketSource {
2671
+ /**
2672
+ * The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.
2673
+ */
2674
+ S3BucketOwner?: S3BucketOwner;
2675
+ /**
2676
+ * The S3 bucket that is being imported from.
2677
+ */
2678
+ S3Bucket: S3Bucket;
2679
+ /**
2680
+ * The key prefix shared by all S3 Objects that are being imported.
2681
+ */
2682
+ S3KeyPrefix?: S3Prefix;
2683
+ }
2458
2684
  export type S3Prefix = string;
2459
2685
  export type S3SseAlgorithm = "AES256"|"KMS"|string;
2460
2686
  export type S3SseKmsKeyId = string;
@@ -2686,6 +2912,30 @@ export namespace DocumentClient {
2686
2912
  LastUpdateDateTime?: _Date;
2687
2913
  }
2688
2914
  export type TableCreationDateTime = Date;
2915
+ export interface TableCreationParameters {
2916
+ /**
2917
+ * The name of the table created as part of the import operation.
2918
+ */
2919
+ TableName: TableName;
2920
+ /**
2921
+ * The attributes of the table created as part of the import operation.
2922
+ */
2923
+ AttributeDefinitions: AttributeDefinitions;
2924
+ /**
2925
+ * The primary key and option sort key of the table created as part of the import operation.
2926
+ */
2927
+ KeySchema: KeySchema;
2928
+ /**
2929
+ * The billing mode for provisioning the table created as part of the import operation.
2930
+ */
2931
+ BillingMode?: BillingMode;
2932
+ ProvisionedThroughput?: ProvisionedThroughput;
2933
+ SSESpecification?: SSESpecification;
2934
+ /**
2935
+ * The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.
2936
+ */
2937
+ GlobalSecondaryIndexes?: GlobalSecondaryIndexList;
2938
+ }
2689
2939
  export interface TableDescription {
2690
2940
  /**
2691
2941
  * An array of AttributeDefinition objects. Each of these objects describes one attribute in the table and index key schema. Each AttributeDefinition object in this array is composed of: AttributeName - The name of the attribute. AttributeType - The data type for the attribute.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1195.0",
4
+ "version": "2.1198.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -89,8 +89,8 @@ function validateBinaryVersion(...command) {
89
89
  const stdout = child_process.execFileSync(command.shift(), command, {
90
90
  stdio: "pipe"
91
91
  }).toString().trim();
92
- if (stdout !== "0.15.3") {
93
- throw new Error(`Expected ${JSON.stringify("0.15.3")} but got ${JSON.stringify(stdout)}`);
92
+ if (stdout !== "0.15.5") {
93
+ throw new Error(`Expected ${JSON.stringify("0.15.5")} but got ${JSON.stringify(stdout)}`);
94
94
  }
95
95
  }
96
96
  function isYarn() {
@@ -142,7 +142,7 @@ function installUsingNPM(pkg, subpath, binPath) {
142
142
  try {
143
143
  fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
144
144
  child_process.execSync(
145
- `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.3"}`,
145
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.5"}`,
146
146
  { cwd: installDir, stdio: "pipe", env }
147
147
  );
148
148
  const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
@@ -193,7 +193,7 @@ function maybeOptimizePackage(binPath) {
193
193
  }
194
194
  }
195
195
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
196
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.3"}.tgz`;
196
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.5"}.tgz`;
197
197
  console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
198
198
  try {
199
199
  fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
@@ -758,8 +758,8 @@ function createChannel(streamIn) {
758
758
  if (isFirstPacket) {
759
759
  isFirstPacket = false;
760
760
  let binaryVersion = String.fromCharCode(...bytes);
761
- if (binaryVersion !== "0.15.3") {
762
- throw new Error(`Cannot start service: Host version "${"0.15.3"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
761
+ if (binaryVersion !== "0.15.5") {
762
+ throw new Error(`Cannot start service: Host version "${"0.15.5"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
763
763
  }
764
764
  return;
765
765
  }
@@ -1886,7 +1886,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1886
1886
  }
1887
1887
  }
1888
1888
  var _a;
1889
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.3";
1889
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.5";
1890
1890
  var esbuildCommandAndArgs = () => {
1891
1891
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1892
1892
  throw new Error(
@@ -1952,7 +1952,7 @@ var fsAsync = {
1952
1952
  }
1953
1953
  }
1954
1954
  };
1955
- var version = "0.15.3";
1955
+ var version = "0.15.5";
1956
1956
  var build = (options) => ensureServiceIsRunning().build(options);
1957
1957
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1958
1958
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2063,7 +2063,7 @@ var ensureServiceIsRunning = () => {
2063
2063
  if (longLivedService)
2064
2064
  return longLivedService;
2065
2065
  let [command, args] = esbuildCommandAndArgs();
2066
- let child = child_process.spawn(command, args.concat(`--service=${"0.15.3"}`, "--ping"), {
2066
+ let child = child_process.spawn(command, args.concat(`--service=${"0.15.5"}`, "--ping"), {
2067
2067
  windowsHide: true,
2068
2068
  stdio: ["pipe", "pipe", "inherit"],
2069
2069
  cwd: defaultWD
@@ -2177,7 +2177,7 @@ var runServiceSync = (callback) => {
2177
2177
  esbuild: node_exports
2178
2178
  });
2179
2179
  callback(service);
2180
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.3"}`), {
2180
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.5"}`), {
2181
2181
  cwd: defaultWD,
2182
2182
  windowsHide: true,
2183
2183
  input: stdin,
@@ -2193,7 +2193,7 @@ var workerThreadService = null;
2193
2193
  var startWorkerThreadService = (worker_threads2) => {
2194
2194
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2195
2195
  let worker = new worker_threads2.Worker(__filename, {
2196
- workerData: { workerPort, defaultWD, esbuildVersion: "0.15.3" },
2196
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.15.5" },
2197
2197
  transferList: [workerPort],
2198
2198
  execArgv: []
2199
2199
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.15.3",
3
+ "version": "0.15.5",
4
4
  "description": "An extremely fast JavaScript and CSS bundler and minifier.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "scripts": {
@@ -15,27 +15,27 @@
15
15
  "esbuild": "bin/esbuild"
16
16
  },
17
17
  "optionalDependencies": {
18
- "@esbuild/linux-loong64": "0.15.3",
19
- "esbuild-android-64": "0.15.3",
20
- "esbuild-android-arm64": "0.15.3",
21
- "esbuild-darwin-64": "0.15.3",
22
- "esbuild-darwin-arm64": "0.15.3",
23
- "esbuild-freebsd-64": "0.15.3",
24
- "esbuild-freebsd-arm64": "0.15.3",
25
- "esbuild-linux-32": "0.15.3",
26
- "esbuild-linux-64": "0.15.3",
27
- "esbuild-linux-arm": "0.15.3",
28
- "esbuild-linux-arm64": "0.15.3",
29
- "esbuild-linux-mips64le": "0.15.3",
30
- "esbuild-linux-ppc64le": "0.15.3",
31
- "esbuild-linux-riscv64": "0.15.3",
32
- "esbuild-linux-s390x": "0.15.3",
33
- "esbuild-netbsd-64": "0.15.3",
34
- "esbuild-openbsd-64": "0.15.3",
35
- "esbuild-sunos-64": "0.15.3",
36
- "esbuild-windows-32": "0.15.3",
37
- "esbuild-windows-64": "0.15.3",
38
- "esbuild-windows-arm64": "0.15.3"
18
+ "@esbuild/linux-loong64": "0.15.5",
19
+ "esbuild-android-64": "0.15.5",
20
+ "esbuild-android-arm64": "0.15.5",
21
+ "esbuild-darwin-64": "0.15.5",
22
+ "esbuild-darwin-arm64": "0.15.5",
23
+ "esbuild-freebsd-64": "0.15.5",
24
+ "esbuild-freebsd-arm64": "0.15.5",
25
+ "esbuild-linux-32": "0.15.5",
26
+ "esbuild-linux-64": "0.15.5",
27
+ "esbuild-linux-arm": "0.15.5",
28
+ "esbuild-linux-arm64": "0.15.5",
29
+ "esbuild-linux-mips64le": "0.15.5",
30
+ "esbuild-linux-ppc64le": "0.15.5",
31
+ "esbuild-linux-riscv64": "0.15.5",
32
+ "esbuild-linux-s390x": "0.15.5",
33
+ "esbuild-netbsd-64": "0.15.5",
34
+ "esbuild-openbsd-64": "0.15.5",
35
+ "esbuild-sunos-64": "0.15.5",
36
+ "esbuild-windows-32": "0.15.5",
37
+ "esbuild-windows-64": "0.15.5",
38
+ "esbuild-windows-arm64": "0.15.5"
39
39
  },
40
40
  "license": "MIT"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.15.3",
3
+ "version": "0.15.5",
4
4
  "description": "The Linux 64-bit binary for esbuild, a JavaScript bundler.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "license": "MIT",
@@ -1,3 +1,7 @@
1
+ 4.1.4 / 2022-08-16
2
+ ==================
3
+ * [meta] fix `npmignore` integration (#83)
4
+
1
5
  4.1.3 / 2022-08-05
2
6
  ==================
3
7
  * [Refactor] make steps closer to actual spec