From 0a76b6f1b6599ecf1c7c2c87e4bf950c5f0e9d99 Mon Sep 17 00:00:00 2001 From: github-team-tf-cdk Date: Tue, 18 Apr 2023 20:35:29 +0000 Subject: [PATCH 1/2] chore(deps)!: Updated CDKTF version to --- .projen/deps.json | 6 +- .projenrc.js | 2 +- docs/dataLocalFile.csharp.md | 20 +- docs/dataLocalFile.go.md | 30 +- docs/dataLocalFile.java.md | 26 +- docs/dataLocalFile.python.md | 28 +- docs/dataLocalFile.typescript.md | 18 +- docs/dataLocalSensitiveFile.csharp.md | 20 +- docs/dataLocalSensitiveFile.go.md | 30 +- docs/dataLocalSensitiveFile.java.md | 26 +- docs/dataLocalSensitiveFile.python.md | 28 +- docs/dataLocalSensitiveFile.typescript.md | 18 +- docs/file.csharp.md | 32 +- docs/file.go.md | 42 +- docs/file.java.md | 50 +- docs/file.python.md | 52 +- docs/file.typescript.md | 30 +- docs/provider.csharp.md | 6 +- docs/provider.go.md | 16 +- docs/provider.java.md | 8 +- docs/provider.python.md | 8 +- docs/provider.typescript.md | 6 +- docs/sensitiveFile.csharp.md | 30 +- docs/sensitiveFile.go.md | 40 +- docs/sensitiveFile.java.md | 46 +- docs/sensitiveFile.python.md | 48 +- docs/sensitiveFile.typescript.md | 28 +- package.json | 8 +- src/data-local-file/README.md | 2 +- src/data-local-file/index.ts | 8 +- src/data-local-sensitive-file/README.md | 2 +- src/data-local-sensitive-file/index.ts | 8 +- src/file/README.md | 2 +- src/file/index.ts | 20 +- src/provider/README.md | 2 +- src/provider/index.ts | 8 +- src/sensitive-file/README.md | 2 +- src/sensitive-file/index.ts | 18 +- yarn.lock | 2109 +++++++++++++++++++-- 39 files changed, 2371 insertions(+), 512 deletions(-) diff --git a/.projen/deps.json b/.projen/deps.json index 05934127..21efcff7 100644 --- a/.projen/deps.json +++ b/.projen/deps.json @@ -17,12 +17,12 @@ }, { "name": "cdktf-cli", - "version": "^0.15.0", + "version": "^0.16.0", "type": "build" }, { "name": "cdktf", - "version": "^0.15.0", + "version": "^0.16.0", "type": "build" }, { @@ -93,7 +93,7 @@ }, { "name": "cdktf", - "version": "^0.15.0", + "version": "^0.16.0", "type": "peer" }, { diff --git a/.projenrc.js b/.projenrc.js index 89d61260..3f1bcd13 100644 --- a/.projenrc.js +++ b/.projenrc.js @@ -7,7 +7,7 @@ const { CdktfProviderProject } = require("@cdktf/provider-project"); const project = new CdktfProviderProject({ useCustomGithubRunner: false, terraformProvider: "hashicorp/local@~> 2.1", - cdktfVersion: "^0.15.0", + cdktfVersion: "^0.16.0", constructsVersion: "^10.0.0", minNodeVersion: "16.14.0", jsiiVersion: "^1.53.0", diff --git a/docs/dataLocalFile.csharp.md b/docs/dataLocalFile.csharp.md index 226f42b4..b33a15ff 100644 --- a/docs/dataLocalFile.csharp.md +++ b/docs/dataLocalFile.csharp.md @@ -1,6 +1,6 @@ # `data_local_file` -Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terraform.io/docs/providers/local/d/file). +Refer to the Terraform Registory for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file). # `dataLocalFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terra ### DataLocalFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file local_file}. #### Initializers @@ -338,7 +338,7 @@ DataLocalFile.IsTerraformDataSource(object X); | TerraformMetaArguments | System.Collections.Generic.IDictionary | *No description.* | | TerraformResourceType | string | *No description.* | | TerraformGeneratorMetadata | HashiCorp.Cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | string[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -432,10 +432,10 @@ public TerraformProviderGeneratorMetadata TerraformGeneratorMetadata { get; } ##### `Count`Optional ```csharp -public double Count { get; } +public object Count { get; } ``` -- *Type:* double +- *Type:* object --- @@ -618,7 +618,7 @@ using HashiCorp.Cdktf.Providers.Local; new DataLocalFileConfig { object Connection = null, - double Count = null, + object Count = null, ITerraformDependable[] DependsOn = null, ITerraformIterator ForEach = null, TerraformResourceLifecycle Lifecycle = null, @@ -633,7 +633,7 @@ new DataLocalFileConfig { | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | object | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | HashiCorp.Cdktf.ITerraformDependable[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -656,10 +656,10 @@ public object Connection { get; set; } ##### `Count`Optional ```csharp -public double Count { get; set; } +public object Count { get; set; } ``` -- *Type:* double +- *Type:* object --- @@ -725,7 +725,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} --- diff --git a/docs/dataLocalFile.go.md b/docs/dataLocalFile.go.md index e584900a..a958546b 100644 --- a/docs/dataLocalFile.go.md +++ b/docs/dataLocalFile.go.md @@ -1,6 +1,6 @@ # `data_local_file` -Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terraform.io/docs/providers/local/d/file). +Refer to the Terraform Registory for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file). # `dataLocalFile` Submodule @@ -8,12 +8,12 @@ Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terra ### DataLocalFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file local_file}. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" datalocalfile.NewDataLocalFile(scope Construct, id *string, config DataLocalFileConfig) DataLocalFile ``` @@ -270,7 +270,7 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" datalocalfile.DataLocalFile_IsConstruct(x interface{}) *bool ``` @@ -302,7 +302,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" datalocalfile.DataLocalFile_IsTerraformElement(x interface{}) *bool ``` @@ -316,7 +316,7 @@ datalocalfile.DataLocalFile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" datalocalfile.DataLocalFile_IsTerraformDataSource(x interface{}) *bool ``` @@ -338,7 +338,7 @@ datalocalfile.DataLocalFile_IsTerraformDataSource(x interface{}) *bool | TerraformMetaArguments | *map[string]interface{} | *No description.* | | TerraformResourceType | *string | *No description.* | | TerraformGeneratorMetadata | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]*string | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -432,10 +432,10 @@ func TerraformGeneratorMetadata() TerraformProviderGeneratorMetadata ##### `Count`Optional ```go -func Count() *f64 +func Count() interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -614,11 +614,11 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" &datalocalfile.DataLocalFileConfig { Connection: interface{}, - Count: *f64, + Count: interface{}, DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable, ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator, Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle, @@ -633,7 +633,7 @@ import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | interface{} | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -656,10 +656,10 @@ Connection interface{} ##### `Count`Optional ```go -Count *f64 +Count interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -725,7 +725,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} --- diff --git a/docs/dataLocalFile.java.md b/docs/dataLocalFile.java.md index 2e828da5..61a7f5ab 100644 --- a/docs/dataLocalFile.java.md +++ b/docs/dataLocalFile.java.md @@ -1,6 +1,6 @@ # `data_local_file` -Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terraform.io/docs/providers/local/d/file). +Refer to the Terraform Registory for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file). # `dataLocalFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terra ### DataLocalFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file local_file}. #### Initializers @@ -19,6 +19,7 @@ DataLocalFile.Builder.create(Construct scope, java.lang.String id) // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -35,7 +36,7 @@ DataLocalFile.Builder.create(Construct scope, java.lang.String id) | scope | software.constructs.Construct | The scope in which to define this construct. | | id | java.lang.String | The scoped construct ID. | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -71,7 +72,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -113,7 +114,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} --- @@ -405,7 +406,7 @@ DataLocalFile.isTerraformDataSource(java.lang.Object x) | terraformMetaArguments | java.util.Map | *No description.* | | terraformResourceType | java.lang.String | *No description.* | | terraformGeneratorMetadata | com.hashicorp.cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -499,10 +500,10 @@ public TerraformProviderGeneratorMetadata getTerraformGeneratorMetadata(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -687,6 +688,7 @@ DataLocalFileConfig.builder() // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -703,7 +705,7 @@ DataLocalFileConfig.builder() | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -726,10 +728,10 @@ public java.lang.Object getConnection(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -795,7 +797,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} --- diff --git a/docs/dataLocalFile.python.md b/docs/dataLocalFile.python.md index c49f6c9f..27e99ced 100644 --- a/docs/dataLocalFile.python.md +++ b/docs/dataLocalFile.python.md @@ -1,6 +1,6 @@ # `data_local_file` -Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terraform.io/docs/providers/local/d/file). +Refer to the Terraform Registory for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file). # `dataLocalFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terra ### DataLocalFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file local_file}. #### Initializers @@ -19,7 +19,7 @@ dataLocalFile.DataLocalFile( scope: Construct, id: str, connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -34,7 +34,7 @@ dataLocalFile.DataLocalFile( | scope | constructs.Construct | The scope in which to define this construct. | | id | str | The scoped construct ID. | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -70,7 +70,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -112,7 +112,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} --- @@ -435,7 +435,7 @@ dataLocalFile.DataLocalFile.is_terraform_data_source( | terraform_meta_arguments | typing.Mapping[typing.Any] | *No description.* | | terraform_resource_type | str | *No description.* | | terraform_generator_metadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[str] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -529,10 +529,10 @@ terraform_generator_metadata: TerraformProviderGeneratorMetadata ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -715,7 +715,7 @@ from cdktf_cdktf_provider_local import data_local_file dataLocalFile.DataLocalFileConfig( connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -730,7 +730,7 @@ dataLocalFile.DataLocalFileConfig( | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -753,10 +753,10 @@ connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -822,7 +822,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} --- diff --git a/docs/dataLocalFile.typescript.md b/docs/dataLocalFile.typescript.md index f474cf25..35fcc174 100644 --- a/docs/dataLocalFile.typescript.md +++ b/docs/dataLocalFile.typescript.md @@ -1,6 +1,6 @@ # `data_local_file` -Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terraform.io/docs/providers/local/d/file). +Refer to the Terraform Registory for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file). # `dataLocalFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terra ### DataLocalFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file local_file}. #### Initializers @@ -338,7 +338,7 @@ dataLocalFile.DataLocalFile.isTerraformDataSource(x: any) | terraformMetaArguments | {[ key: string ]: any} | *No description.* | | terraformResourceType | string | *No description.* | | terraformGeneratorMetadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | string[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -432,10 +432,10 @@ public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata; ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -624,7 +624,7 @@ const dataLocalFileConfig: dataLocalFile.DataLocalFileConfig = { ... } | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | cdktf.SSHProvisionerConnection \| cdktf.WinrmProvisionerConnection | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | cdktf.ITerraformDependable[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -647,10 +647,10 @@ public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnectio ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -716,7 +716,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} --- diff --git a/docs/dataLocalSensitiveFile.csharp.md b/docs/dataLocalSensitiveFile.csharp.md index adbebaa4..27221c00 100644 --- a/docs/dataLocalSensitiveFile.csharp.md +++ b/docs/dataLocalSensitiveFile.csharp.md @@ -1,6 +1,6 @@ # `data_local_sensitive_file` -Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://www.terraform.io/docs/providers/local/d/sensitive_file). +Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file). # `dataLocalSensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https:/ ### DataLocalSensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file local_sensitive_file}. #### Initializers @@ -338,7 +338,7 @@ DataLocalSensitiveFile.IsTerraformDataSource(object X); | TerraformMetaArguments | System.Collections.Generic.IDictionary | *No description.* | | TerraformResourceType | string | *No description.* | | TerraformGeneratorMetadata | HashiCorp.Cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | string[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -432,10 +432,10 @@ public TerraformProviderGeneratorMetadata TerraformGeneratorMetadata { get; } ##### `Count`Optional ```csharp -public double Count { get; } +public object Count { get; } ``` -- *Type:* double +- *Type:* object --- @@ -618,7 +618,7 @@ using HashiCorp.Cdktf.Providers.Local; new DataLocalSensitiveFileConfig { object Connection = null, - double Count = null, + object Count = null, ITerraformDependable[] DependsOn = null, ITerraformIterator ForEach = null, TerraformResourceLifecycle Lifecycle = null, @@ -633,7 +633,7 @@ new DataLocalSensitiveFileConfig { | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | object | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | HashiCorp.Cdktf.ITerraformDependable[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -656,10 +656,10 @@ public object Connection { get; set; } ##### `Count`Optional ```csharp -public double Count { get; set; } +public object Count { get; set; } ``` -- *Type:* double +- *Type:* object --- @@ -725,7 +725,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} --- diff --git a/docs/dataLocalSensitiveFile.go.md b/docs/dataLocalSensitiveFile.go.md index d5099f99..daace883 100644 --- a/docs/dataLocalSensitiveFile.go.md +++ b/docs/dataLocalSensitiveFile.go.md @@ -1,6 +1,6 @@ # `data_local_sensitive_file` -Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://www.terraform.io/docs/providers/local/d/sensitive_file). +Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file). # `dataLocalSensitiveFile` Submodule @@ -8,12 +8,12 @@ Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https:/ ### DataLocalSensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file local_sensitive_file}. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" datalocalsensitivefile.NewDataLocalSensitiveFile(scope Construct, id *string, config DataLocalSensitiveFileConfig) DataLocalSensitiveFile ``` @@ -270,7 +270,7 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" datalocalsensitivefile.DataLocalSensitiveFile_IsConstruct(x interface{}) *bool ``` @@ -302,7 +302,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformElement(x interface{}) *bool ``` @@ -316,7 +316,7 @@ datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformElement(x interface{}) ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformDataSource(x interface{}) *bool ``` @@ -338,7 +338,7 @@ datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformDataSource(x interface{ | TerraformMetaArguments | *map[string]interface{} | *No description.* | | TerraformResourceType | *string | *No description.* | | TerraformGeneratorMetadata | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]*string | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -432,10 +432,10 @@ func TerraformGeneratorMetadata() TerraformProviderGeneratorMetadata ##### `Count`Optional ```go -func Count() *f64 +func Count() interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -614,11 +614,11 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" &datalocalsensitivefile.DataLocalSensitiveFileConfig { Connection: interface{}, - Count: *f64, + Count: interface{}, DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable, ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator, Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle, @@ -633,7 +633,7 @@ import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | interface{} | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -656,10 +656,10 @@ Connection interface{} ##### `Count`Optional ```go -Count *f64 +Count interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -725,7 +725,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} --- diff --git a/docs/dataLocalSensitiveFile.java.md b/docs/dataLocalSensitiveFile.java.md index c25587c2..ac23ecf6 100644 --- a/docs/dataLocalSensitiveFile.java.md +++ b/docs/dataLocalSensitiveFile.java.md @@ -1,6 +1,6 @@ # `data_local_sensitive_file` -Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://www.terraform.io/docs/providers/local/d/sensitive_file). +Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file). # `dataLocalSensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https:/ ### DataLocalSensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file local_sensitive_file}. #### Initializers @@ -19,6 +19,7 @@ DataLocalSensitiveFile.Builder.create(Construct scope, java.lang.String id) // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -35,7 +36,7 @@ DataLocalSensitiveFile.Builder.create(Construct scope, java.lang.String id) | scope | software.constructs.Construct | The scope in which to define this construct. | | id | java.lang.String | The scoped construct ID. | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -71,7 +72,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -113,7 +114,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} --- @@ -405,7 +406,7 @@ DataLocalSensitiveFile.isTerraformDataSource(java.lang.Object x) | terraformMetaArguments | java.util.Map | *No description.* | | terraformResourceType | java.lang.String | *No description.* | | terraformGeneratorMetadata | com.hashicorp.cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -499,10 +500,10 @@ public TerraformProviderGeneratorMetadata getTerraformGeneratorMetadata(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -687,6 +688,7 @@ DataLocalSensitiveFileConfig.builder() // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -703,7 +705,7 @@ DataLocalSensitiveFileConfig.builder() | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -726,10 +728,10 @@ public java.lang.Object getConnection(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -795,7 +797,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} --- diff --git a/docs/dataLocalSensitiveFile.python.md b/docs/dataLocalSensitiveFile.python.md index ad772a03..95ae6178 100644 --- a/docs/dataLocalSensitiveFile.python.md +++ b/docs/dataLocalSensitiveFile.python.md @@ -1,6 +1,6 @@ # `data_local_sensitive_file` -Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://www.terraform.io/docs/providers/local/d/sensitive_file). +Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file). # `dataLocalSensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https:/ ### DataLocalSensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file local_sensitive_file}. #### Initializers @@ -19,7 +19,7 @@ dataLocalSensitiveFile.DataLocalSensitiveFile( scope: Construct, id: str, connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -34,7 +34,7 @@ dataLocalSensitiveFile.DataLocalSensitiveFile( | scope | constructs.Construct | The scope in which to define this construct. | | id | str | The scoped construct ID. | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -70,7 +70,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -112,7 +112,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} --- @@ -435,7 +435,7 @@ dataLocalSensitiveFile.DataLocalSensitiveFile.is_terraform_data_source( | terraform_meta_arguments | typing.Mapping[typing.Any] | *No description.* | | terraform_resource_type | str | *No description.* | | terraform_generator_metadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[str] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -529,10 +529,10 @@ terraform_generator_metadata: TerraformProviderGeneratorMetadata ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -715,7 +715,7 @@ from cdktf_cdktf_provider_local import data_local_sensitive_file dataLocalSensitiveFile.DataLocalSensitiveFileConfig( connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -730,7 +730,7 @@ dataLocalSensitiveFile.DataLocalSensitiveFileConfig( | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -753,10 +753,10 @@ connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -822,7 +822,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} --- diff --git a/docs/dataLocalSensitiveFile.typescript.md b/docs/dataLocalSensitiveFile.typescript.md index bda9905b..50d2829e 100644 --- a/docs/dataLocalSensitiveFile.typescript.md +++ b/docs/dataLocalSensitiveFile.typescript.md @@ -1,6 +1,6 @@ # `data_local_sensitive_file` -Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://www.terraform.io/docs/providers/local/d/sensitive_file). +Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file). # `dataLocalSensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https:/ ### DataLocalSensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/d/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file local_sensitive_file}. #### Initializers @@ -338,7 +338,7 @@ dataLocalSensitiveFile.DataLocalSensitiveFile.isTerraformDataSource(x: any) | terraformMetaArguments | {[ key: string ]: any} | *No description.* | | terraformResourceType | string | *No description.* | | terraformGeneratorMetadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | string[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -432,10 +432,10 @@ public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata; ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -624,7 +624,7 @@ const dataLocalSensitiveFileConfig: dataLocalSensitiveFile.DataLocalSensitiveFil | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | cdktf.SSHProvisionerConnection \| cdktf.WinrmProvisionerConnection | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | cdktf.ITerraformDependable[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -647,10 +647,10 @@ public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnectio ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -716,7 +716,7 @@ Path to the file that will be read. The data source will return an error if the file does not exist. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} --- diff --git a/docs/file.csharp.md b/docs/file.csharp.md index aefa3c24..291481ce 100644 --- a/docs/file.csharp.md +++ b/docs/file.csharp.md @@ -1,6 +1,6 @@ # `local_file` -Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform.io/docs/providers/local/r/file). +Refer to the Terraform Registory for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file). # `file` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform. ### File -Represents a {@link https://www.terraform.io/docs/providers/local/r/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file local_file}. #### Initializers @@ -381,7 +381,7 @@ File.IsTerraformResource(object X); | TerraformResourceType | string | *No description.* | | TerraformGeneratorMetadata | HashiCorp.Cdktf.TerraformProviderGeneratorMetadata | *No description.* | | Connection | object | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | string[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -496,10 +496,10 @@ public object Connection { get; } ##### `Count`Optional ```csharp -public double Count { get; } +public object Count { get; } ``` -- *Type:* double +- *Type:* object --- @@ -792,7 +792,7 @@ using HashiCorp.Cdktf.Providers.Local; new FileConfig { object Connection = null, - double Count = null, + object Count = null, ITerraformDependable[] DependsOn = null, ITerraformIterator ForEach = null, TerraformResourceLifecycle Lifecycle = null, @@ -813,7 +813,7 @@ new FileConfig { | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | object | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | HashiCorp.Cdktf.ITerraformDependable[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -842,10 +842,10 @@ public object Connection { get; set; } ##### `Count`Optional ```csharp -public double Count { get; set; } +public object Count { get; set; } ``` -- *Type:* double +- *Type:* object --- @@ -912,7 +912,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} --- @@ -929,7 +929,7 @@ Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} --- @@ -946,7 +946,7 @@ Content to store in the file, expected to be binary encoded as base64 string. Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} --- @@ -960,7 +960,7 @@ public string DirectoryPermission { get; set; } Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} --- @@ -974,7 +974,7 @@ public string FilePermission { get; set; } Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} --- @@ -994,7 +994,7 @@ Exactly one of these four arguments must be specified. If in need to use *sensitive* content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} --- @@ -1011,7 +1011,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} --- diff --git a/docs/file.go.md b/docs/file.go.md index 76d9cbe4..bb76485f 100644 --- a/docs/file.go.md +++ b/docs/file.go.md @@ -1,6 +1,6 @@ # `local_file` -Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform.io/docs/providers/local/r/file). +Refer to the Terraform Registory for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file). # `file` Submodule @@ -8,12 +8,12 @@ Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform. ### File -Represents a {@link https://www.terraform.io/docs/providers/local/r/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file local_file}. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" +import "github.com/cdktf/cdktf-provider-local-go/local/file" file.NewFile(scope Construct, id *string, config FileConfig) File ``` @@ -312,7 +312,7 @@ func ResetSource() ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" +import "github.com/cdktf/cdktf-provider-local-go/local/file" file.File_IsConstruct(x interface{}) *bool ``` @@ -344,7 +344,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" +import "github.com/cdktf/cdktf-provider-local-go/local/file" file.File_IsTerraformElement(x interface{}) *bool ``` @@ -358,7 +358,7 @@ file.File_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" +import "github.com/cdktf/cdktf-provider-local-go/local/file" file.File_IsTerraformResource(x interface{}) *bool ``` @@ -381,7 +381,7 @@ file.File_IsTerraformResource(x interface{}) *bool | TerraformResourceType | *string | *No description.* | | TerraformGeneratorMetadata | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata | *No description.* | | Connection | interface{} | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]*string | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -496,10 +496,10 @@ func Connection() interface{} ##### `Count`Optional ```go -func Count() *f64 +func Count() interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -788,11 +788,11 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" +import "github.com/cdktf/cdktf-provider-local-go/local/file" &file.FileConfig { Connection: interface{}, - Count: *f64, + Count: interface{}, DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable, ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator, Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle, @@ -813,7 +813,7 @@ import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | interface{} | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -842,10 +842,10 @@ Connection interface{} ##### `Count`Optional ```go -Count *f64 +Count interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -912,7 +912,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} --- @@ -929,7 +929,7 @@ Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} --- @@ -946,7 +946,7 @@ Content to store in the file, expected to be binary encoded as base64 string. Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} --- @@ -960,7 +960,7 @@ DirectoryPermission *string Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} --- @@ -974,7 +974,7 @@ FilePermission *string Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} --- @@ -994,7 +994,7 @@ Exactly one of these four arguments must be specified. If in need to use *sensitive* content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} --- @@ -1011,7 +1011,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} --- diff --git a/docs/file.java.md b/docs/file.java.md index 0bffc336..a599e263 100644 --- a/docs/file.java.md +++ b/docs/file.java.md @@ -1,6 +1,6 @@ # `local_file` -Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform.io/docs/providers/local/r/file). +Refer to the Terraform Registory for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file). # `file` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform. ### File -Represents a {@link https://www.terraform.io/docs/providers/local/r/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file local_file}. #### Initializers @@ -19,6 +19,7 @@ File.Builder.create(Construct scope, java.lang.String id) // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -41,7 +42,7 @@ File.Builder.create(Construct scope, java.lang.String id) | scope | software.constructs.Construct | The scope in which to define this construct. | | id | java.lang.String | The scoped construct ID. | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -83,7 +84,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -126,7 +127,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} --- @@ -139,7 +140,7 @@ Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} --- @@ -152,7 +153,7 @@ Content to store in the file, expected to be binary encoded as base64 string. Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} --- @@ -162,7 +163,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} --- @@ -172,7 +173,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} --- @@ -188,7 +189,7 @@ Exactly one of these four arguments must be specified. If in need to use *sensitive* content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} --- @@ -201,7 +202,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} --- @@ -536,7 +537,7 @@ File.isTerraformResource(java.lang.Object x) | terraformResourceType | java.lang.String | *No description.* | | terraformGeneratorMetadata | com.hashicorp.cdktf.TerraformProviderGeneratorMetadata | *No description.* | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -651,10 +652,10 @@ public java.lang.Object getConnection(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -949,6 +950,7 @@ FileConfig.builder() // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -971,7 +973,7 @@ FileConfig.builder() | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -1000,10 +1002,10 @@ public java.lang.Object getConnection(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -1070,7 +1072,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} --- @@ -1087,7 +1089,7 @@ Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} --- @@ -1104,7 +1106,7 @@ Content to store in the file, expected to be binary encoded as base64 string. Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} --- @@ -1118,7 +1120,7 @@ public java.lang.String getDirectoryPermission(); Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} --- @@ -1132,7 +1134,7 @@ public java.lang.String getFilePermission(); Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} --- @@ -1152,7 +1154,7 @@ Exactly one of these four arguments must be specified. If in need to use *sensitive* content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} --- @@ -1169,7 +1171,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} --- diff --git a/docs/file.python.md b/docs/file.python.md index 3166fb67..81254cae 100644 --- a/docs/file.python.md +++ b/docs/file.python.md @@ -1,6 +1,6 @@ # `local_file` -Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform.io/docs/providers/local/r/file). +Refer to the Terraform Registory for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file). # `file` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform. ### File -Represents a {@link https://www.terraform.io/docs/providers/local/r/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file local_file}. #### Initializers @@ -19,7 +19,7 @@ file.File( scope: Construct, id: str, connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -40,7 +40,7 @@ file.File( | scope | constructs.Construct | The scope in which to define this construct. | | id | str | The scoped construct ID. | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -82,7 +82,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -125,7 +125,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} --- @@ -138,7 +138,7 @@ Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} --- @@ -151,7 +151,7 @@ Content to store in the file, expected to be binary encoded as base64 string. Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} --- @@ -161,7 +161,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} --- @@ -171,7 +171,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} --- @@ -187,7 +187,7 @@ Exactly one of these four arguments must be specified. If in need to use *sensitive* content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} --- @@ -200,7 +200,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} --- @@ -566,7 +566,7 @@ file.File.is_terraform_resource( | terraform_resource_type | str | *No description.* | | terraform_generator_metadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[str] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -681,10 +681,10 @@ connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -977,7 +977,7 @@ from cdktf_cdktf_provider_local import file file.FileConfig( connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -998,7 +998,7 @@ file.FileConfig( | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -1027,10 +1027,10 @@ connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -1097,7 +1097,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} --- @@ -1114,7 +1114,7 @@ Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} --- @@ -1131,7 +1131,7 @@ Content to store in the file, expected to be binary encoded as base64 string. Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} --- @@ -1145,7 +1145,7 @@ directory_permission: str Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} --- @@ -1159,7 +1159,7 @@ file_permission: str Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} --- @@ -1179,7 +1179,7 @@ Exactly one of these four arguments must be specified. If in need to use *sensitive* content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} --- @@ -1196,7 +1196,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} --- diff --git a/docs/file.typescript.md b/docs/file.typescript.md index df7633b6..773ff04a 100644 --- a/docs/file.typescript.md +++ b/docs/file.typescript.md @@ -1,6 +1,6 @@ # `local_file` -Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform.io/docs/providers/local/r/file). +Refer to the Terraform Registory for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file). # `file` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform. ### File -Represents a {@link https://www.terraform.io/docs/providers/local/r/file local_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file local_file}. #### Initializers @@ -381,7 +381,7 @@ file.File.isTerraformResource(x: any) | terraformResourceType | string | *No description.* | | terraformGeneratorMetadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | | connection | cdktf.SSHProvisionerConnection \| cdktf.WinrmProvisionerConnection | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | string[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -496,10 +496,10 @@ public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnectio ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -798,7 +798,7 @@ const fileConfig: file.FileConfig = { ... } | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | cdktf.SSHProvisionerConnection \| cdktf.WinrmProvisionerConnection | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | cdktf.ITerraformDependable[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -827,10 +827,10 @@ public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnectio ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -897,7 +897,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} --- @@ -914,7 +914,7 @@ Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} --- @@ -931,7 +931,7 @@ Content to store in the file, expected to be binary encoded as base64 string. Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} --- @@ -945,7 +945,7 @@ public readonly directoryPermission: string; Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} --- @@ -959,7 +959,7 @@ public readonly filePermission: string; Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} --- @@ -979,7 +979,7 @@ Exactly one of these four arguments must be specified. If in need to use _sensitive_ content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} --- @@ -996,7 +996,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} --- diff --git a/docs/provider.csharp.md b/docs/provider.csharp.md index c93307a2..3a5390b9 100644 --- a/docs/provider.csharp.md +++ b/docs/provider.csharp.md @@ -1,6 +1,6 @@ # `provider` -Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/docs/providers/local). +Refer to the Terraform Registory for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs). # `provider` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/do ### LocalProvider -Represents a {@link https://www.terraform.io/docs/providers/local local}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs local}. #### Initializers @@ -373,7 +373,7 @@ public string Alias { get; set; } Alias name. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} --- diff --git a/docs/provider.go.md b/docs/provider.go.md index c6f1de57..0097361f 100644 --- a/docs/provider.go.md +++ b/docs/provider.go.md @@ -1,6 +1,6 @@ # `provider` -Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/docs/providers/local). +Refer to the Terraform Registory for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs). # `provider` Submodule @@ -8,12 +8,12 @@ Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/do ### LocalProvider -Represents a {@link https://www.terraform.io/docs/providers/local local}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs local}. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/provider" provider.NewLocalProvider(scope Construct, id *string, config LocalProviderConfig) LocalProvider ``` @@ -147,7 +147,7 @@ func ResetAlias() ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/provider" provider.LocalProvider_IsConstruct(x interface{}) *bool ``` @@ -179,7 +179,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/provider" provider.LocalProvider_IsTerraformElement(x interface{}) *bool ``` @@ -193,7 +193,7 @@ provider.LocalProvider_IsTerraformElement(x interface{}) *bool ##### `IsTerraformProvider` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/provider" provider.LocalProvider_IsTerraformProvider(x interface{}) *bool ``` @@ -348,7 +348,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/provider" &provider.LocalProviderConfig { Alias: *string, @@ -373,7 +373,7 @@ Alias *string Alias name. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} --- diff --git a/docs/provider.java.md b/docs/provider.java.md index 3d60eafe..532c5e16 100644 --- a/docs/provider.java.md +++ b/docs/provider.java.md @@ -1,6 +1,6 @@ # `provider` -Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/docs/providers/local). +Refer to the Terraform Registory for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs). # `provider` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/do ### LocalProvider -Represents a {@link https://www.terraform.io/docs/providers/local local}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs local}. #### Initializers @@ -52,7 +52,7 @@ Must be unique amongst siblings in the same scope Alias name. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} --- @@ -379,7 +379,7 @@ public java.lang.String getAlias(); Alias name. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} --- diff --git a/docs/provider.python.md b/docs/provider.python.md index d1c15559..98468726 100644 --- a/docs/provider.python.md +++ b/docs/provider.python.md @@ -1,6 +1,6 @@ # `provider` -Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/docs/providers/local). +Refer to the Terraform Registory for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs). # `provider` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/do ### LocalProvider -Represents a {@link https://www.terraform.io/docs/providers/local local}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs local}. #### Initializers @@ -54,7 +54,7 @@ Must be unique amongst siblings in the same scope Alias name. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} --- @@ -392,7 +392,7 @@ alias: str Alias name. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} --- diff --git a/docs/provider.typescript.md b/docs/provider.typescript.md index c9838c31..a98a04f2 100644 --- a/docs/provider.typescript.md +++ b/docs/provider.typescript.md @@ -1,6 +1,6 @@ # `provider` -Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/docs/providers/local). +Refer to the Terraform Registory for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs). # `provider` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/do ### LocalProvider -Represents a {@link https://www.terraform.io/docs/providers/local local}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs local}. #### Initializers @@ -371,7 +371,7 @@ public readonly alias: string; Alias name. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} --- diff --git a/docs/sensitiveFile.csharp.md b/docs/sensitiveFile.csharp.md index 15ce3b2d..c1f56fb0 100644 --- a/docs/sensitiveFile.csharp.md +++ b/docs/sensitiveFile.csharp.md @@ -1,6 +1,6 @@ # `local_sensitive_file` -Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www.terraform.io/docs/providers/local/r/sensitive_file). +Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file). # `sensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www. ### SensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/r/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file local_sensitive_file}. #### Initializers @@ -374,7 +374,7 @@ SensitiveFile.IsTerraformResource(object X); | TerraformResourceType | string | *No description.* | | TerraformGeneratorMetadata | HashiCorp.Cdktf.TerraformProviderGeneratorMetadata | *No description.* | | Connection | object | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | string[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -487,10 +487,10 @@ public object Connection { get; } ##### `Count`Optional ```csharp -public double Count { get; } +public object Count { get; } ``` -- *Type:* double +- *Type:* object --- @@ -763,7 +763,7 @@ using HashiCorp.Cdktf.Providers.Local; new SensitiveFileConfig { object Connection = null, - double Count = null, + object Count = null, ITerraformDependable[] DependsOn = null, ITerraformIterator ForEach = null, TerraformResourceLifecycle Lifecycle = null, @@ -783,7 +783,7 @@ new SensitiveFileConfig { | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | object | *No description.* | -| Count | double | *No description.* | +| Count | object | *No description.* | | DependsOn | HashiCorp.Cdktf.ITerraformDependable[] | *No description.* | | ForEach | HashiCorp.Cdktf.ITerraformIterator | *No description.* | | Lifecycle | HashiCorp.Cdktf.TerraformResourceLifecycle | *No description.* | @@ -811,10 +811,10 @@ public object Connection { get; set; } ##### `Count`Optional ```csharp -public double Count { get; set; } +public object Count { get; set; } ``` -- *Type:* double +- *Type:* object --- @@ -881,7 +881,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} --- @@ -898,7 +898,7 @@ Sensitive Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} --- @@ -915,7 +915,7 @@ Sensitive Content to store in the file, expected to be binary encoded as base64 Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} --- @@ -929,7 +929,7 @@ public string DirectoryPermission { get; set; } Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} --- @@ -943,7 +943,7 @@ public string FilePermission { get; set; } Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} --- @@ -960,7 +960,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} --- diff --git a/docs/sensitiveFile.go.md b/docs/sensitiveFile.go.md index 6ab0c10e..b68a7f89 100644 --- a/docs/sensitiveFile.go.md +++ b/docs/sensitiveFile.go.md @@ -1,6 +1,6 @@ # `local_sensitive_file` -Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www.terraform.io/docs/providers/local/r/sensitive_file). +Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file). # `sensitiveFile` Submodule @@ -8,12 +8,12 @@ Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www. ### SensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/r/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file local_sensitive_file}. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" sensitivefile.NewSensitiveFile(scope Construct, id *string, config SensitiveFileConfig) SensitiveFile ``` @@ -305,7 +305,7 @@ func ResetSource() ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" sensitivefile.SensitiveFile_IsConstruct(x interface{}) *bool ``` @@ -337,7 +337,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" sensitivefile.SensitiveFile_IsTerraformElement(x interface{}) *bool ``` @@ -351,7 +351,7 @@ sensitivefile.SensitiveFile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" sensitivefile.SensitiveFile_IsTerraformResource(x interface{}) *bool ``` @@ -374,7 +374,7 @@ sensitivefile.SensitiveFile_IsTerraformResource(x interface{}) *bool | TerraformResourceType | *string | *No description.* | | TerraformGeneratorMetadata | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata | *No description.* | | Connection | interface{} | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]*string | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -487,10 +487,10 @@ func Connection() interface{} ##### `Count`Optional ```go -func Count() *f64 +func Count() interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -759,11 +759,11 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" &sensitivefile.SensitiveFileConfig { Connection: interface{}, - Count: *f64, + Count: interface{}, DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable, ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator, Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle, @@ -783,7 +783,7 @@ import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" | **Name** | **Type** | **Description** | | --- | --- | --- | | Connection | interface{} | *No description.* | -| Count | *f64 | *No description.* | +| Count | interface{} | *No description.* | | DependsOn | *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable | *No description.* | | ForEach | github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator | *No description.* | | Lifecycle | github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle | *No description.* | @@ -811,10 +811,10 @@ Connection interface{} ##### `Count`Optional ```go -Count *f64 +Count interface{} ``` -- *Type:* *f64 +- *Type:* interface{} --- @@ -881,7 +881,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} --- @@ -898,7 +898,7 @@ Sensitive Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} --- @@ -915,7 +915,7 @@ Sensitive Content to store in the file, expected to be binary encoded as base64 Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} --- @@ -929,7 +929,7 @@ DirectoryPermission *string Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} --- @@ -943,7 +943,7 @@ FilePermission *string Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} --- @@ -960,7 +960,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} --- diff --git a/docs/sensitiveFile.java.md b/docs/sensitiveFile.java.md index 0752b9da..de812cb6 100644 --- a/docs/sensitiveFile.java.md +++ b/docs/sensitiveFile.java.md @@ -1,6 +1,6 @@ # `local_sensitive_file` -Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www.terraform.io/docs/providers/local/r/sensitive_file). +Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file). # `sensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www. ### SensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/r/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file local_sensitive_file}. #### Initializers @@ -19,6 +19,7 @@ SensitiveFile.Builder.create(Construct scope, java.lang.String id) // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -40,7 +41,7 @@ SensitiveFile.Builder.create(Construct scope, java.lang.String id) | scope | software.constructs.Construct | The scope in which to define this construct. | | id | java.lang.String | The scoped construct ID. | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -81,7 +82,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -124,7 +125,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} --- @@ -137,7 +138,7 @@ Sensitive Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} --- @@ -150,7 +151,7 @@ Sensitive Content to store in the file, expected to be binary encoded as base64 Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} --- @@ -160,7 +161,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} --- @@ -170,7 +171,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} --- @@ -183,7 +184,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} --- @@ -511,7 +512,7 @@ SensitiveFile.isTerraformResource(java.lang.Object x) | terraformResourceType | java.lang.String | *No description.* | | terraformGeneratorMetadata | com.hashicorp.cdktf.TerraformProviderGeneratorMetadata | *No description.* | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -624,10 +625,10 @@ public java.lang.Object getConnection(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -902,6 +903,7 @@ SensitiveFileConfig.builder() // .connection(SSHProvisionerConnection) // .connection(WinrmProvisionerConnection) // .count(java.lang.Number) +// .count(TerraformCount) // .dependsOn(java.util.List) // .forEach(ITerraformIterator) // .lifecycle(TerraformResourceLifecycle) @@ -923,7 +925,7 @@ SensitiveFileConfig.builder() | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | com.hashicorp.cdktf.SSHProvisionerConnection OR com.hashicorp.cdktf.WinrmProvisionerConnection | *No description.* | -| count | java.lang.Number | *No description.* | +| count | java.lang.Number OR com.hashicorp.cdktf.TerraformCount | *No description.* | | dependsOn | java.util.List | *No description.* | | forEach | com.hashicorp.cdktf.ITerraformIterator | *No description.* | | lifecycle | com.hashicorp.cdktf.TerraformResourceLifecycle | *No description.* | @@ -951,10 +953,10 @@ public java.lang.Object getConnection(); ##### `count`Optional ```java -public java.lang.Number getCount(); +public java.lang.Object getCount(); ``` -- *Type:* java.lang.Number +- *Type:* java.lang.Number OR com.hashicorp.cdktf.TerraformCount --- @@ -1021,7 +1023,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} --- @@ -1038,7 +1040,7 @@ Sensitive Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} --- @@ -1055,7 +1057,7 @@ Sensitive Content to store in the file, expected to be binary encoded as base64 Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} --- @@ -1069,7 +1071,7 @@ public java.lang.String getDirectoryPermission(); Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} --- @@ -1083,7 +1085,7 @@ public java.lang.String getFilePermission(); Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} --- @@ -1100,7 +1102,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} --- diff --git a/docs/sensitiveFile.python.md b/docs/sensitiveFile.python.md index 346a093b..ee7efb37 100644 --- a/docs/sensitiveFile.python.md +++ b/docs/sensitiveFile.python.md @@ -1,6 +1,6 @@ # `local_sensitive_file` -Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www.terraform.io/docs/providers/local/r/sensitive_file). +Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file). # `sensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www. ### SensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/r/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file local_sensitive_file}. #### Initializers @@ -19,7 +19,7 @@ sensitiveFile.SensitiveFile( scope: Construct, id: str, connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -39,7 +39,7 @@ sensitiveFile.SensitiveFile( | scope | constructs.Construct | The scope in which to define this construct. | | id | str | The scoped construct ID. | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -80,7 +80,7 @@ Must be unique amongst siblings in the same scope ##### `count`Optional -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -123,7 +123,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} --- @@ -136,7 +136,7 @@ Sensitive Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} --- @@ -149,7 +149,7 @@ Sensitive Content to store in the file, expected to be binary encoded as base64 Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} --- @@ -159,7 +159,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} --- @@ -169,7 +169,7 @@ Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} --- @@ -182,7 +182,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} --- @@ -541,7 +541,7 @@ sensitiveFile.SensitiveFile.is_terraform_resource( | terraform_resource_type | str | *No description.* | | terraform_generator_metadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[str] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -654,10 +654,10 @@ connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -930,7 +930,7 @@ from cdktf_cdktf_provider_local import sensitive_file sensitiveFile.SensitiveFileConfig( connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] = None, - count: typing.Union[int, float] = None, + count: typing.Union[typing.Union[int, float], TerraformCount] = None, depends_on: typing.List[ITerraformDependable] = None, for_each: ITerraformIterator = None, lifecycle: TerraformResourceLifecycle = None, @@ -950,7 +950,7 @@ sensitiveFile.SensitiveFileConfig( | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | typing.Union[cdktf.SSHProvisionerConnection, cdktf.WinrmProvisionerConnection] | *No description.* | -| count | typing.Union[int, float] | *No description.* | +| count | typing.Union[typing.Union[int, float], cdktf.TerraformCount] | *No description.* | | depends_on | typing.List[cdktf.ITerraformDependable] | *No description.* | | for_each | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -978,10 +978,10 @@ connection: typing.Union[SSHProvisionerConnection, WinrmProvisionerConnection] ##### `count`Optional ```python -count: typing.Union[int, float] +count: typing.Union[typing.Union[int, float], TerraformCount] ``` -- *Type:* typing.Union[int, float] +- *Type:* typing.Union[typing.Union[int, float], cdktf.TerraformCount] --- @@ -1048,7 +1048,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} --- @@ -1065,7 +1065,7 @@ Sensitive Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} --- @@ -1082,7 +1082,7 @@ Sensitive Content to store in the file, expected to be binary encoded as base64 Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} --- @@ -1096,7 +1096,7 @@ directory_permission: str Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} --- @@ -1110,7 +1110,7 @@ file_permission: str Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} --- @@ -1127,7 +1127,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} --- diff --git a/docs/sensitiveFile.typescript.md b/docs/sensitiveFile.typescript.md index c083b080..5ae09d3c 100644 --- a/docs/sensitiveFile.typescript.md +++ b/docs/sensitiveFile.typescript.md @@ -1,6 +1,6 @@ # `local_sensitive_file` -Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www.terraform.io/docs/providers/local/r/sensitive_file). +Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file). # `sensitiveFile` Submodule @@ -8,7 +8,7 @@ Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www. ### SensitiveFile -Represents a {@link https://www.terraform.io/docs/providers/local/r/sensitive_file local_sensitive_file}. +Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file local_sensitive_file}. #### Initializers @@ -374,7 +374,7 @@ sensitiveFile.SensitiveFile.isTerraformResource(x: any) | terraformResourceType | string | *No description.* | | terraformGeneratorMetadata | cdktf.TerraformProviderGeneratorMetadata | *No description.* | | connection | cdktf.SSHProvisionerConnection \| cdktf.WinrmProvisionerConnection | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | string[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -487,10 +487,10 @@ public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnectio ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -769,7 +769,7 @@ const sensitiveFileConfig: sensitiveFile.SensitiveFileConfig = { ... } | **Name** | **Type** | **Description** | | --- | --- | --- | | connection | cdktf.SSHProvisionerConnection \| cdktf.WinrmProvisionerConnection | *No description.* | -| count | number | *No description.* | +| count | number \| cdktf.TerraformCount | *No description.* | | dependsOn | cdktf.ITerraformDependable[] | *No description.* | | forEach | cdktf.ITerraformIterator | *No description.* | | lifecycle | cdktf.TerraformResourceLifecycle | *No description.* | @@ -797,10 +797,10 @@ public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnectio ##### `count`Optional ```typescript -public readonly count: number; +public readonly count: number | TerraformCount; ``` -- *Type:* number +- *Type:* number | cdktf.TerraformCount --- @@ -867,7 +867,7 @@ The path to the file that will be created. Missing parent directories will be created. If the file already exists, it will be overridden with the given content. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} --- @@ -884,7 +884,7 @@ Sensitive Content to store in the file, expected to be a UTF-8 encoded string. Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} --- @@ -901,7 +901,7 @@ Sensitive Content to store in the file, expected to be binary encoded as base64 Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} --- @@ -915,7 +915,7 @@ public readonly directoryPermission: string; Permissions to set for directories created (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} --- @@ -929,7 +929,7 @@ public readonly filePermission: string; Permissions to set for the output file (before umask), expressed as string in [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} --- @@ -946,7 +946,7 @@ Path to file to use as source for the one we are creating. Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. -Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} +Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} --- diff --git a/package.json b/package.json index 3936f3bd..1ef5c230 100644 --- a/package.json +++ b/package.json @@ -47,8 +47,8 @@ "@actions/core": "^1.1.0", "@cdktf/provider-project": "^0.2.95", "@types/node": "^16", - "cdktf": "^0.15.0", - "cdktf-cli": "^0.15.0", + "cdktf": "^0.16.0", + "cdktf-cli": "^0.16.0", "constructs": "^10.0.0", "dot-prop": "^5.2.0", "jsii": "^1.53.0", @@ -57,12 +57,12 @@ "jsii-pacmak": "^1.80.0", "node-fetch": "cjs", "npm-check-updates": "^16", - "projen": "^0.71.15", + "projen": "^0.71.16", "standard-version": "^9", "typescript": "^4.9.5" }, "peerDependencies": { - "cdktf": "^0.15.0", + "cdktf": "^0.16.0", "constructs": "^10.0.0" }, "resolutions": { diff --git a/src/data-local-file/README.md b/src/data-local-file/README.md index 3f6d45e8..a1ebef06 100644 --- a/src/data-local-file/README.md +++ b/src/data-local-file/README.md @@ -1,3 +1,3 @@ # `data_local_file` -Refer to the Terraform Registory for docs: [`data_local_file`](https://www.terraform.io/docs/providers/local/d/file). +Refer to the Terraform Registory for docs: [`data_local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file). diff --git a/src/data-local-file/index.ts b/src/data-local-file/index.ts index 619d5a84..afae92b2 100644 --- a/src/data-local-file/index.ts +++ b/src/data-local-file/index.ts @@ -1,4 +1,4 @@ -// https://www.terraform.io/docs/providers/local/d/file +// https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file // generated from terraform resource schema import { Construct } from 'constructs'; @@ -10,13 +10,13 @@ export interface DataLocalFileConfig extends cdktf.TerraformMetaArguments { /** * Path to the file that will be read. The data source will return an error if the file does not exist. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/file#filename DataLocalFile#filename} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file#filename DataLocalFile#filename} */ readonly filename: string; } /** -* Represents a {@link https://www.terraform.io/docs/providers/local/d/file local_file} +* Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file local_file} */ export class DataLocalFile extends cdktf.TerraformDataSource { @@ -30,7 +30,7 @@ export class DataLocalFile extends cdktf.TerraformDataSource { // =========== /** - * Create a new {@link https://www.terraform.io/docs/providers/local/d/file local_file} Data Source + * Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/file local_file} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope diff --git a/src/data-local-sensitive-file/README.md b/src/data-local-sensitive-file/README.md index 8e6d10a3..0ee4c084 100644 --- a/src/data-local-sensitive-file/README.md +++ b/src/data-local-sensitive-file/README.md @@ -1,3 +1,3 @@ # `data_local_sensitive_file` -Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://www.terraform.io/docs/providers/local/d/sensitive_file). +Refer to the Terraform Registory for docs: [`data_local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file). diff --git a/src/data-local-sensitive-file/index.ts b/src/data-local-sensitive-file/index.ts index 708edfa3..7a8c3db4 100644 --- a/src/data-local-sensitive-file/index.ts +++ b/src/data-local-sensitive-file/index.ts @@ -1,4 +1,4 @@ -// https://www.terraform.io/docs/providers/local/d/sensitive_file +// https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file // generated from terraform resource schema import { Construct } from 'constructs'; @@ -10,13 +10,13 @@ export interface DataLocalSensitiveFileConfig extends cdktf.TerraformMetaArgumen /** * Path to the file that will be read. The data source will return an error if the file does not exist. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/d/sensitive_file#filename DataLocalSensitiveFile#filename} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file#filename DataLocalSensitiveFile#filename} */ readonly filename: string; } /** -* Represents a {@link https://www.terraform.io/docs/providers/local/d/sensitive_file local_sensitive_file} +* Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file local_sensitive_file} */ export class DataLocalSensitiveFile extends cdktf.TerraformDataSource { @@ -30,7 +30,7 @@ export class DataLocalSensitiveFile extends cdktf.TerraformDataSource { // =========== /** - * Create a new {@link https://www.terraform.io/docs/providers/local/d/sensitive_file local_sensitive_file} Data Source + * Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/data-sources/sensitive_file local_sensitive_file} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope diff --git a/src/file/README.md b/src/file/README.md index 5c64a1bc..104c4b98 100644 --- a/src/file/README.md +++ b/src/file/README.md @@ -1,3 +1,3 @@ # `local_file` -Refer to the Terraform Registory for docs: [`local_file`](https://www.terraform.io/docs/providers/local/r/file). +Refer to the Terraform Registory for docs: [`local_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file). diff --git a/src/file/index.ts b/src/file/index.ts index b62fd1c7..dd01e248 100644 --- a/src/file/index.ts +++ b/src/file/index.ts @@ -1,4 +1,4 @@ -// https://www.terraform.io/docs/providers/local/r/file +// https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file // generated from terraform resource schema import { Construct } from 'constructs'; @@ -12,7 +12,7 @@ export interface FileConfig extends cdktf.TerraformMetaArguments { Conflicts with `sensitive_content`, `content_base64` and `source`. Exactly one of these four arguments must be specified. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content File#content} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content File#content} */ readonly content?: string; /** @@ -20,7 +20,7 @@ export interface FileConfig extends cdktf.TerraformMetaArguments { Conflicts with `content`, `sensitive_content` and `source`. Exactly one of these four arguments must be specified. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#content_base64 File#content_base64} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#content_base64 File#content_base64} */ readonly contentBase64?: string; /** @@ -28,7 +28,7 @@ export interface FileConfig extends cdktf.TerraformMetaArguments { [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#directory_permission File#directory_permission} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#directory_permission File#directory_permission} */ readonly directoryPermission?: string; /** @@ -36,7 +36,7 @@ export interface FileConfig extends cdktf.TerraformMetaArguments { [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0777"`. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#file_permission File#file_permission} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#file_permission File#file_permission} */ readonly filePermission?: string; /** @@ -44,7 +44,7 @@ export interface FileConfig extends cdktf.TerraformMetaArguments { Missing parent directories will be created. If the file already exists, it will be overridden with the given content. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#filename File#filename} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#filename File#filename} */ readonly filename: string; /** @@ -55,7 +55,7 @@ export interface FileConfig extends cdktf.TerraformMetaArguments { If in need to use _sensitive_ content, please use the [`local_sensitive_file`](./sensitive_file.html) resource instead. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#sensitive_content File#sensitive_content} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#sensitive_content File#sensitive_content} */ readonly sensitiveContent?: string; /** @@ -63,13 +63,13 @@ export interface FileConfig extends cdktf.TerraformMetaArguments { Conflicts with `content`, `sensitive_content` and `content_base64`. Exactly one of these four arguments must be specified. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/file#source File#source} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file#source File#source} */ readonly source?: string; } /** -* Represents a {@link https://www.terraform.io/docs/providers/local/r/file local_file} +* Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file local_file} */ export class File extends cdktf.TerraformResource { @@ -83,7 +83,7 @@ export class File extends cdktf.TerraformResource { // =========== /** - * Create a new {@link https://www.terraform.io/docs/providers/local/r/file local_file} Resource + * Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/file local_file} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope diff --git a/src/provider/README.md b/src/provider/README.md index 29b27b22..3e7caddd 100644 --- a/src/provider/README.md +++ b/src/provider/README.md @@ -1,3 +1,3 @@ # `provider` -Refer to the Terraform Registory for docs: [`local`](https://www.terraform.io/docs/providers/local). +Refer to the Terraform Registory for docs: [`local`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs). diff --git a/src/provider/index.ts b/src/provider/index.ts index 42239b44..14d4e25b 100644 --- a/src/provider/index.ts +++ b/src/provider/index.ts @@ -1,4 +1,4 @@ -// https://www.terraform.io/docs/providers/local +// https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs // generated from terraform resource schema import { Construct } from 'constructs'; @@ -10,13 +10,13 @@ export interface LocalProviderConfig { /** * Alias name * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local#alias LocalProvider#alias} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs#alias LocalProvider#alias} */ readonly alias?: string; } /** -* Represents a {@link https://www.terraform.io/docs/providers/local local} +* Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs local} */ export class LocalProvider extends cdktf.TerraformProvider { @@ -30,7 +30,7 @@ export class LocalProvider extends cdktf.TerraformProvider { // =========== /** - * Create a new {@link https://www.terraform.io/docs/providers/local local} Resource + * Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs local} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope diff --git a/src/sensitive-file/README.md b/src/sensitive-file/README.md index c95c4119..3ffd91cf 100644 --- a/src/sensitive-file/README.md +++ b/src/sensitive-file/README.md @@ -1,3 +1,3 @@ # `local_sensitive_file` -Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://www.terraform.io/docs/providers/local/r/sensitive_file). +Refer to the Terraform Registory for docs: [`local_sensitive_file`](https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file). diff --git a/src/sensitive-file/index.ts b/src/sensitive-file/index.ts index be372e03..dee1c534 100644 --- a/src/sensitive-file/index.ts +++ b/src/sensitive-file/index.ts @@ -1,4 +1,4 @@ -// https://www.terraform.io/docs/providers/local/r/sensitive_file +// https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file // generated from terraform resource schema import { Construct } from 'constructs'; @@ -12,7 +12,7 @@ export interface SensitiveFileConfig extends cdktf.TerraformMetaArguments { Conflicts with `content_base64` and `source`. Exactly one of these three arguments must be specified. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content SensitiveFile#content} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content SensitiveFile#content} */ readonly content?: string; /** @@ -20,7 +20,7 @@ export interface SensitiveFileConfig extends cdktf.TerraformMetaArguments { Conflicts with `content` and `source`. Exactly one of these three arguments must be specified. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#content_base64 SensitiveFile#content_base64} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#content_base64 SensitiveFile#content_base64} */ readonly contentBase64?: string; /** @@ -28,7 +28,7 @@ export interface SensitiveFileConfig extends cdktf.TerraformMetaArguments { [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#directory_permission SensitiveFile#directory_permission} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#directory_permission SensitiveFile#directory_permission} */ readonly directoryPermission?: string; /** @@ -36,7 +36,7 @@ export interface SensitiveFileConfig extends cdktf.TerraformMetaArguments { [numeric notation](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation). Default value is `"0700"`. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#file_permission SensitiveFile#file_permission} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#file_permission SensitiveFile#file_permission} */ readonly filePermission?: string; /** @@ -44,7 +44,7 @@ export interface SensitiveFileConfig extends cdktf.TerraformMetaArguments { Missing parent directories will be created. If the file already exists, it will be overridden with the given content. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#filename SensitiveFile#filename} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#filename SensitiveFile#filename} */ readonly filename: string; /** @@ -52,13 +52,13 @@ export interface SensitiveFileConfig extends cdktf.TerraformMetaArguments { Conflicts with `content` and `content_base64`. Exactly one of these three arguments must be specified. * - * Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/local/r/sensitive_file#source SensitiveFile#source} + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file#source SensitiveFile#source} */ readonly source?: string; } /** -* Represents a {@link https://www.terraform.io/docs/providers/local/r/sensitive_file local_sensitive_file} +* Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file local_sensitive_file} */ export class SensitiveFile extends cdktf.TerraformResource { @@ -72,7 +72,7 @@ export class SensitiveFile extends cdktf.TerraformResource { // =========== /** - * Create a new {@link https://www.terraform.io/docs/providers/local/r/sensitive_file local_sensitive_file} Resource + * Create a new {@link https://registry.terraform.io/providers/hashicorp/local/2.4.0/docs/resources/sensitive_file local_sensitive_file} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope diff --git a/yarn.lock b/yarn.lock index 766cfd18..b5c5cdc9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17,14 +17,48 @@ dependencies: tunnel "^0.0.6" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6": +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": version "7.21.4" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== dependencies: "@babel/highlight" "^7.18.6" -"@babel/generator@^7.20.4": +"@babel/compat-data@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.4.tgz#457ffe647c480dff59c2be092fc3acf71195c87f" + integrity sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g== + +"@babel/core@^7.11.6", "@babel/core@^7.12.3": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.4.tgz#c6dc73242507b8e2a27fd13a9c1814f9fa34a659" + integrity sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.21.4" + "@babel/generator" "^7.21.4" + "@babel/helper-compilation-targets" "^7.21.4" + "@babel/helper-module-transforms" "^7.21.2" + "@babel/helpers" "^7.21.0" + "@babel/parser" "^7.21.4" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.4" + "@babel/types" "^7.21.4" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.2" + semver "^6.3.0" + +"@babel/generator@^7.21.4", "@babel/generator@^7.7.2": version "7.21.4" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.4.tgz#64a94b7448989f421f919d5239ef553b37bb26bc" integrity sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA== @@ -34,6 +68,77 @@ "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" +"@babel/helper-compilation-targets@^7.21.4": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz#770cd1ce0889097ceacb99418ee6934ef0572656" + integrity sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg== + dependencies: + "@babel/compat-data" "^7.21.4" + "@babel/helper-validator-option" "^7.21.0" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + +"@babel/helper-environment-visitor@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" + integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + +"@babel/helper-function-name@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" + integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== + dependencies: + "@babel/template" "^7.20.7" + "@babel/types" "^7.21.0" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-imports@^7.18.6": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" + integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== + dependencies: + "@babel/types" "^7.21.4" + +"@babel/helper-module-transforms@^7.21.2": + version "7.21.2" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2" + integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.2" + "@babel/types" "^7.21.2" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + +"@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== + dependencies: + "@babel/types" "^7.20.2" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + "@babel/helper-string-parser@^7.19.4": version "7.19.4" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" @@ -44,6 +149,20 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== +"@babel/helper-validator-option@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" + integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== + +"@babel/helpers@^7.21.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.0.tgz#9dd184fb5599862037917cdc9eecb84577dc4e7e" + integrity sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA== + dependencies: + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.0" + "@babel/types" "^7.21.0" + "@babel/highlight@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" @@ -53,12 +172,110 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.20.7": +"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.21.4": version "7.21.4" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17" integrity sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw== -"@babel/template@^7.18.10": +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.8.3": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.7.2": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" + integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.7.2": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8" + integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/template@^7.20.7", "@babel/template@^7.3.3": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== @@ -67,7 +284,23 @@ "@babel/parser" "^7.20.7" "@babel/types" "^7.20.7" -"@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.4", "@babel/types@^7.3.0": +"@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.4", "@babel/traverse@^7.7.2": + version "7.21.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.4.tgz#a836aca7b116634e97a6ed99976236b3282c9d36" + integrity sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q== + dependencies: + "@babel/code-frame" "^7.21.4" + "@babel/generator" "^7.21.4" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.21.4" + "@babel/types" "^7.21.4" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3": version "7.21.4" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.4.tgz#2d5d6bb7908699b3b416409ffd3b5daa25b030d4" integrity sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA== @@ -76,26 +309,30 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" -"@cdktf/cli-core@0.15.5": - version "0.15.5" - resolved "https://registry.yarnpkg.com/@cdktf/cli-core/-/cli-core-0.15.5.tgz#e023503f7d11c2fc3112ebe1d71eeb6572b9076b" - integrity sha512-9RdxpWrswkd6mvpjePYfQU+9C41Pm9Ikx87TKmZ7UmmY1sgB7jMySqOnCUatghEuzvBiuez2qyqrOU+LUCQG+Q== +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + +"@cdktf/cli-core@0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@cdktf/cli-core/-/cli-core-0.16.0.tgz#d7822c0969c038b5a07acd081a3d5bcdaa086480" + integrity sha512-8Vf0uw4xt2jH2j0CxHkORvaNeP2AaW/nVA6hRbOQgbnxc7PmIzIv8v4DsjrQGDtH8JGX/irqyof8x9jDMTeFvQ== dependencies: - "@cdktf/commons" "0.15.5" - "@cdktf/hcl2cdk" "0.15.5" - "@cdktf/hcl2json" "0.15.5" + "@cdktf/commons" "0.16.0" + "@cdktf/hcl2cdk" "0.16.0" + "@cdktf/hcl2json" "0.16.0" "@cdktf/node-pty-prebuilt-multiarch" "0.10.1-pre.10" "@sentry/node" "^6.19.7" - cdktf "0.15.5" - codemaker "^1.75.0" + cdktf "0.16.0" + codemaker "^1.79.0" constructs "^10.0.25" cross-spawn "^7.0.3" https-proxy-agent "^5.0.1" ink-select-input "^4.2.1" - jsii "^1.75.0" - jsii-pacmak "^1.75.0" + jsii "^5.0.1" + jsii-pacmak "^1.79.0" minimatch "^5.1.0" - node-abort-controller "^3.0.1" node-fetch "^2.6.7" tunnel-agent "^0.6.0" xml-js "^1.6.11" @@ -104,50 +341,53 @@ yoga-layout-prebuilt "^1.10.0" zod "^1.11.17" -"@cdktf/commons@0.15.5": - version "0.15.5" - resolved "https://registry.yarnpkg.com/@cdktf/commons/-/commons-0.15.5.tgz#94796aeb7f9d96e1ef61c1d263560df0bdb1fa5e" - integrity sha512-rwmQARfqxFDmAFQbCFsE6uYr5FPNcur6U5TOLa03/ruQecoq4tjKlPiB4tOEHp8FAk86V6K38JQ6a81+/3VVtQ== +"@cdktf/commons@0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@cdktf/commons/-/commons-0.16.0.tgz#dc944d9ea474c758b8ecba6e5ea5bfa3483d27a4" + integrity sha512-zpU+AzzaNuSY+Fi2LA1r9FE9oR01FOXVYIl7r9x4+H/luwffyK/7HqdjfjhHGEPHX1UBUd20dNE61wAbP3D66g== dependencies: "@npmcli/ci-detect" "^1.4.0" "@sentry/node" "^6.19.7" - cdktf "0.15.5" - codemaker "^1.75.0" + cdktf "0.16.0" + codemaker "^1.76.0" constructs "^10.0.25" cross-spawn "^7.0.3" follow-redirects "^1.15.2" fs-extra "^8.1.0" is-valid-domain "^0.1.6" + jest "^29.5.0" log4js "^6.7.0" + ts-jest "^29.0.5" + typescript "^5.0.2" uuid "^8.3.2" -"@cdktf/hcl2cdk@0.15.5": - version "0.15.5" - resolved "https://registry.yarnpkg.com/@cdktf/hcl2cdk/-/hcl2cdk-0.15.5.tgz#102477ca8eecf531b7ad543aaa85026da25ce3bc" - integrity sha512-Aqf7cKeozoiaCzyHd3dUE0/9uyd3xHavdsbkah/1+u1I3vo3Oav1aidbSrOOhOgOewTgmokDfyo2wX/I4JwX0g== +"@cdktf/hcl2cdk@0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2cdk/-/hcl2cdk-0.16.0.tgz#a89ff82be72d3c617aecc4de7d49dba1fa93c8fa" + integrity sha512-qRPsp/SxZu62FdzqbpqFSuYwAyDMxXJhtD8NrIOqPPvWqMOfv+og5onca/4vAWQ5VrJn9YCoJN18nCpOeOIcTw== dependencies: - "@babel/generator" "^7.20.4" - "@babel/template" "^7.18.10" - "@babel/types" "^7.20.2" - "@cdktf/commons" "0.15.5" - "@cdktf/hcl2json" "0.15.5" - "@cdktf/provider-generator" "0.15.5" + "@babel/generator" "^7.21.4" + "@babel/template" "^7.20.7" + "@babel/types" "^7.21.4" + "@cdktf/commons" "0.16.0" + "@cdktf/hcl2json" "0.16.0" + "@cdktf/provider-generator" "0.16.0" camelcase "^6.3.0" - glob "7.2.3" + deep-equal "^2.2.0" + glob "9.3.4" graphology "^0.25.1" - graphology-types "^0.21.2" - jsii-rosetta "^1.75.0" - prettier "^2.7.1" + graphology-types "^0.24.7" + jsii-rosetta "^5.0.1" + prettier "^2.8.6" reserved-words "^0.1.2" - zod "^1.11.17" + zod "^3.21.4" -"@cdktf/hcl2json@0.15.5": - version "0.15.5" - resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.15.5.tgz#2a62259a47e0e992aad69daeac65573913d5754d" - integrity sha512-bnQ8OMrycCadjfkU9AzG/7RRZgOpuLnFg5GDgnM+rckySR3JedGAUm0BItXYH4Oyyuk+BbLmEU88fJUS5TYgZg== +"@cdktf/hcl2json@0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@cdktf/hcl2json/-/hcl2json-0.16.0.tgz#baf6e2078fcb79c00146ec788f8a639d96e57b65" + integrity sha512-SYWkXv+wEYUwueu+e6UXRyapOfTzUPiKa14a9GJQQEdxfPBNvrp92fvxZ+zn6eWRg3fzbZXr054/QIG17+KYJg== dependencies: - fs-extra "^8.1.0" - node-fetch "^2.6.7" + fs-extra "^11.1.1" "@cdktf/node-pty-prebuilt-multiarch@0.10.1-pre.10": version "0.10.1-pre.10" @@ -157,18 +397,18 @@ nan "^2.14.2" prebuild-install "^7.1.1" -"@cdktf/provider-generator@0.15.5": - version "0.15.5" - resolved "https://registry.yarnpkg.com/@cdktf/provider-generator/-/provider-generator-0.15.5.tgz#4ff1a728c3bf84ec1884f759ec7d926a05a1a267" - integrity sha512-UVHWEG7P+TN9eMhGaJNYkivoZcj2U571ylOGnmwuiloa7qs/8jTptO8VKOLSzk6ePQQaZ8lhM95GsFfDUEjUWA== +"@cdktf/provider-generator@0.16.0": + version "0.16.0" + resolved "https://registry.yarnpkg.com/@cdktf/provider-generator/-/provider-generator-0.16.0.tgz#380251ee8c58ac169224b653ef8e21e3b268587a" + integrity sha512-B+2bJWr4yjl91G+j5YbN8hh5vlcD3YseiwxhcNpx4Des4Bm9VDkTVqQTzBmcrXFYWY9SZLyLCXgqehZssgHPJw== dependencies: - "@cdktf/commons" "0.15.5" - "@cdktf/hcl2json" "0.15.5" - "@types/node" "14.18.33" - codemaker "^1.75.0" + "@cdktf/commons" "0.16.0" + "@cdktf/hcl2json" "0.16.0" + "@types/node" "16.18.23" + codemaker "^1.76.0" deepmerge "^4.2.2" fs-extra "^8.1.0" - jsii-srcmak "^0.1.826" + jsii-srcmak "^0.1.867" "@cdktf/provider-project@^0.2.95": version "0.2.104" @@ -198,7 +438,215 @@ resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.5.tgz#b32366c89b43c6f8cefbdefac778b9c828e3ba8c" integrity sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg== -"@jridgewell/gen-mapping@^0.3.2": +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" + integrity sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ== + dependencies: + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + slash "^3.0.0" + +"@jest/core@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" + integrity sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== + dependencies: + "@jest/console" "^29.5.0" + "@jest/reporters" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + ci-info "^3.2.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-changed-files "^29.5.0" + jest-config "^29.5.0" + jest-haste-map "^29.5.0" + jest-message-util "^29.5.0" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-resolve-dependencies "^29.5.0" + jest-runner "^29.5.0" + jest-runtime "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" + jest-watcher "^29.5.0" + micromatch "^4.0.4" + pretty-format "^29.5.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/environment@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" + integrity sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ== + dependencies: + "@jest/fake-timers" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + jest-mock "^29.5.0" + +"@jest/expect-utils@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" + integrity sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg== + dependencies: + jest-get-type "^29.4.3" + +"@jest/expect@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" + integrity sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g== + dependencies: + expect "^29.5.0" + jest-snapshot "^29.5.0" + +"@jest/fake-timers@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" + integrity sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg== + dependencies: + "@jest/types" "^29.5.0" + "@sinonjs/fake-timers" "^10.0.2" + "@types/node" "*" + jest-message-util "^29.5.0" + jest-mock "^29.5.0" + jest-util "^29.5.0" + +"@jest/globals@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" + integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/expect" "^29.5.0" + "@jest/types" "^29.5.0" + jest-mock "^29.5.0" + +"@jest/reporters@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" + integrity sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@jridgewell/trace-mapping" "^0.3.15" + "@types/node" "*" + chalk "^4.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^5.1.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.1.3" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + jest-worker "^29.5.0" + slash "^3.0.0" + string-length "^4.0.1" + strip-ansi "^6.0.0" + v8-to-istanbul "^9.0.1" + +"@jest/schemas@^29.4.3": + version "29.4.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" + integrity sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg== + dependencies: + "@sinclair/typebox" "^0.25.16" + +"@jest/source-map@^29.4.3": + version "29.4.3" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" + integrity sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w== + dependencies: + "@jridgewell/trace-mapping" "^0.3.15" + callsites "^3.0.0" + graceful-fs "^4.2.9" + +"@jest/test-result@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" + integrity sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ== + dependencies: + "@jest/console" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" + integrity sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ== + dependencies: + "@jest/test-result" "^29.5.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + slash "^3.0.0" + +"@jest/transform@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" + integrity sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== + dependencies: + "@babel/core" "^7.11.6" + "@jest/types" "^29.5.0" + "@jridgewell/trace-mapping" "^0.3.15" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^2.0.0" + fast-json-stable-stringify "^2.1.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + write-file-atomic "^4.0.2" + +"@jest/types@^29.5.0": + version "29.5.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" + integrity sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== + dependencies: + "@jest/schemas" "^29.4.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": version "0.3.3" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== @@ -227,7 +675,7 @@ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": version "0.3.18" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== @@ -455,11 +903,30 @@ resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4" integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ== +"@sinclair/typebox@^0.25.16": + version "0.25.24" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" + integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ== + "@sindresorhus/is@^5.2.0": version "5.3.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.3.0.tgz#0ec9264cf54a527671d990eb874e030b55b70dcc" integrity sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw== +"@sinonjs/commons@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3" + integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@^10.0.2": + version "10.0.2" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c" + integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw== + dependencies: + "@sinonjs/commons" "^2.0.0" + "@szmarczak/http-timer@^5.0.1": version "5.0.1" resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz#c7c1bf1141cdd4751b0399c8fc7b8b664cd5be3a" @@ -485,7 +952,33 @@ "@tufjs/canonical-json" "1.0.0" minimatch "^8.0.3" -"@types/babel__traverse@7.18.2": +"@types/babel__core@^7.1.14": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" + integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@7.18.2", "@types/babel__traverse@^7.0.6": version "7.18.2" resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.2.tgz#235bf339d17185bdec25e024ca19cce257cc7309" integrity sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg== @@ -500,11 +993,37 @@ "@types/minimatch" "^5.1.2" "@types/node" "*" +"@types/graceful-fs@^4.1.3": + version "4.1.6" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" + integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== + dependencies: + "@types/node" "*" + "@types/http-cache-semantics@^4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + "@types/minimatch@^5.1.2": version "5.1.2" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" @@ -520,12 +1039,7 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.11.tgz#b3b790f09cb1696cffcec605de025b088fa4225f" integrity sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q== -"@types/node@14.18.33": - version "14.18.33" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.33.tgz#8c29a0036771569662e4635790ffa9e057db379b" - integrity sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg== - -"@types/node@^16": +"@types/node@16.18.23", "@types/node@^16": version "16.18.23" resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.23.tgz#b6e934fe427eb7081d0015aad070acb3373c3c90" integrity sha512-XAMpaw1s1+6zM+jn2tmw8MyaRDIJfXxqmIQIS0HfoGYPuf7dUWeiUKopwq13KFX9lEp1+THGtlaaYx39Nxr58g== @@ -535,17 +1049,22 @@ resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== -"@types/prettier@2.6.0": +"@types/prettier@2.6.0", "@types/prettier@^2.1.5": version "2.6.0" resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.0.tgz#efcbd41937f9ae7434c714ab698604822d890759" integrity sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw== +"@types/stack-utils@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" + integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== + "@types/yargs-parser@*": version "21.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== -"@types/yargs@17.0.13": +"@types/yargs@17.0.13", "@types/yargs@^17.0.8": version "17.0.13" resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.13.tgz#34cced675ca1b1d51fcf4d34c3c6f0fa142a5c76" integrity sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg== @@ -557,7 +1076,7 @@ resolved "https://registry.yarnpkg.com/@types/yoga-layout/-/yoga-layout-1.9.2.tgz#efaf9e991a7390dc081a0b679185979a83a9639a" integrity sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw== -"@xmldom/xmldom@^0.8.6": +"@xmldom/xmldom@^0.8.6", "@xmldom/xmldom@^0.8.7": version "0.8.7" resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.7.tgz#8b1e39c547013941974d83ad5e9cf5042071a9a0" integrity sha512-sI1Ly2cODlWStkINzqGrZ8K6n+MTSbAeQnAipGyL+KZCXuHaRlj2gyyy8B/9MvsFFqN7XHryQnB2QwhzvJXovg== @@ -621,6 +1140,13 @@ ansi-align@^3.0.1: dependencies: string-width "^4.1.0" +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" @@ -645,11 +1171,24 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + ansi-styles@^6.1.0: version "6.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== +anymatch@^3.0.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + "aproba@^1.0.3 || ^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" @@ -739,6 +1278,71 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +babel-jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" + integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q== + dependencies: + "@jest/transform" "^29.5.0" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^29.5.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" + +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" + integrity sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.1.14" + "@types/babel__traverse" "^7.0.6" + +babel-preset-current-node-syntax@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +babel-preset-jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" + integrity sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg== + dependencies: + babel-plugin-jest-hoist "^29.5.0" + babel-preset-current-node-syntax "^1.0.0" + balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" @@ -794,6 +1398,30 @@ braces@^3.0.2: dependencies: fill-range "^7.0.1" +browserslist@^4.21.3: + version "4.21.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" + integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== + dependencies: + caniuse-lite "^1.0.30001449" + electron-to-chromium "^1.4.284" + node-releases "^2.0.8" + update-browserslist-db "^1.0.10" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" @@ -880,6 +1508,19 @@ cacheable-request@^10.2.8: normalize-url "^8.0.0" responselike "^3.0.0" +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + camel-case@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" @@ -902,7 +1543,7 @@ camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== -camelcase@^6.3.0: +camelcase@^6.2.0, camelcase@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== @@ -912,6 +1553,11 @@ camelcase@^7.0.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.1.tgz#f02e50af9fd7782bc8b88a3558c32fd3a388f048" integrity sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw== +caniuse-lite@^1.0.30001449: + version "1.0.30001480" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001480.tgz#9bbd35ee44c2480a1e3a3b9f4496f5066817164a" + integrity sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ== + capital-case@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" @@ -926,27 +1572,26 @@ case@^1.6.3: resolved "https://registry.yarnpkg.com/case/-/case-1.6.3.tgz#0a4386e3e9825351ca2e6216c60467ff5f1ea1c9" integrity sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ== -cdktf-cli@^0.15.0: - version "0.15.5" - resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.15.5.tgz#bf621254cce2a147fc4dee2f168b1c2e39ee03a1" - integrity sha512-FofWVVT/2oANEvtk91yWSlgelxJWQfXglvVBRgN1AJHTArQf54slJAROsk4m74cAF5Da8IizG5HiSuSHpjKvuA== +cdktf-cli@^0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/cdktf-cli/-/cdktf-cli-0.16.0.tgz#3ba12876b6e7439eb73f1977f8eebd7537d7e9ae" + integrity sha512-PVV57yl47875GvKkoX1K68VGOQ/2n9tavxmqtW5Vp5d1rauCj8FJNJvOxJoecsi4Q020U0HMh760fsH6YuA8Ag== dependencies: - "@cdktf/cli-core" "0.15.5" - "@cdktf/commons" "0.15.5" - "@cdktf/hcl2cdk" "0.15.5" - "@cdktf/hcl2json" "0.15.5" + "@cdktf/cli-core" "0.16.0" + "@cdktf/commons" "0.16.0" + "@cdktf/hcl2cdk" "0.16.0" + "@cdktf/hcl2json" "0.16.0" "@sentry/node" "^6.19.7" - cdktf "0.15.5" - codemaker "^1.75.0" + cdktf "0.16.0" + codemaker "^1.76.0" constructs "^10.0.25" cross-spawn "^7.0.3" https-proxy-agent "^5.0.1" ink-select-input "^4.2.1" ink-table "^3.0.0" - jsii "^1.75.0" - jsii-pacmak "^1.75.0" + jsii "^5.0.1" + jsii-pacmak "^1.79.0" minimatch "^5.1.0" - node-abort-controller "^3.0.1" node-fetch "^2.6.7" tunnel-agent "^0.6.0" xml-js "^1.6.11" @@ -954,10 +1599,10 @@ cdktf-cli@^0.15.0: yoga-layout-prebuilt "^1.10.0" zod "^1.11.17" -cdktf@0.15.5, cdktf@^0.15.0: - version "0.15.5" - resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.15.5.tgz#a87ca97cf0f0e1e21eeffaf4dfca2701e00293df" - integrity sha512-fcamLs7SKz+kTbQFf+fOXDGvmwT5bH4bHwp+jkVKjGTRsu6C8z5oFVAjKYm+aP1tC7sSWG967+ihSx6+uPNAGw== +cdktf@0.16.0, cdktf@^0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/cdktf/-/cdktf-0.16.0.tgz#c0da62130a3f866fb0f9219153e914ffbe07c724" + integrity sha512-PTU8DODmgv1U2FXKB/h4DPXE2IKB5ND9fpcaBUhEy7qFCgQVpOGdgf0w6GZVdbZ7Tiae76WSbAN10uaqrKs9wA== dependencies: archiver "5.3.1" json-stable-stringify "^1.0.2" @@ -972,7 +1617,7 @@ chalk@^2.0.0, chalk@^2.4.2: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4, chalk@^4.1.2: +chalk@^4, chalk@^4.0.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -1003,6 +1648,11 @@ change-case@^4.1.2: snake-case "^3.0.4" tslib "^2.0.3" +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -1018,6 +1668,11 @@ ci-info@^3.2.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== +cjs-module-lexer@^1.0.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" + integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== + clean-stack@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" @@ -1069,7 +1724,12 @@ clone@^2.1.2: resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== -codemaker@^1.75.0, codemaker@^1.80.0: +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + +codemaker@^1.76.0, codemaker@^1.79.0, codemaker@^1.80.0: version "1.80.0" resolved "https://registry.yarnpkg.com/codemaker/-/codemaker-1.80.0.tgz#0a8ae49d88368a74841b31dedae91e969a73ad05" integrity sha512-8d9TWXA+eLDFLkYiFKmyXDmXFBmASVxly2PyOK/kLryuhielDZEahSoltF+ES2Dm/F4IzZ4uL7ZjTgkjy69s0w== @@ -1078,6 +1738,11 @@ codemaker@^1.75.0, codemaker@^1.80.0: decamelize "^5.0.1" fs-extra "^10.1.0" +collect-v8-coverage@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" + integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -1367,6 +2032,16 @@ conventional-recommended-bump@6.1.0: meow "^8.0.0" q "^1.5.1" +convert-source-map@^1.6.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + cookie@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" @@ -1421,7 +2096,7 @@ dateformat@^3.0.0: resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== -debug@4, debug@^4.1.0, debug@^4.3.3, debug@^4.3.4: +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.3, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -1453,6 +2128,34 @@ decompress-response@^6.0.0: dependencies: mimic-response "^3.1.0" +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== + +deep-equal@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.0.tgz#5caeace9c781028b9ff459f33b779346637c43e6" + integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw== + dependencies: + call-bind "^1.0.2" + es-get-iterator "^1.1.2" + get-intrinsic "^1.1.3" + is-arguments "^1.1.1" + is-array-buffer "^3.0.1" + is-date-object "^1.0.5" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + isarray "^2.0.5" + object-is "^1.1.5" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + side-channel "^1.0.4" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + deep-extend@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" @@ -1468,6 +2171,14 @@ defer-to-connect@^2.0.1: resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + delegates@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" @@ -1498,11 +2209,16 @@ detect-newline@^2.1.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" integrity sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg== -detect-newline@^3.1.0: +detect-newline@^3.0.0, detect-newline@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== +diff-sequences@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" + integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== + dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -1540,11 +2256,30 @@ dotgitignore@^2.1.0: find-up "^3.0.0" minimatch "^3.0.4" +downlevel-dts@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/downlevel-dts/-/downlevel-dts-0.11.0.tgz#514a2d723009c5845730c1db6c994484c596ed9c" + integrity sha512-vo835pntK7kzYStk7xUHDifiYJvXxVhUapt85uk2AI94gUUAQX9HNRtrcMHNSc3YHJUEHGbYIGsM99uIbgAtxw== + dependencies: + semver "^7.3.2" + shelljs "^0.8.3" + typescript next + eastasianwidth@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== +electron-to-chromium@^1.4.284: + version "1.4.367" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz#d9ddc529ba2315fc852b722c359e4a40e86aa742" + integrity sha512-mNuDxb+HpLhPGUKrg0hSxbTjHWw8EziwkwlJNkFUj3W60ypigLDRVz04vU+VRsJPi8Gub+FDhYUpuTm9xiEwRQ== + +emittery@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" + integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -1591,6 +2326,21 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" +es-get-iterator@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" + integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + is-arguments "^1.1.1" + is-map "^2.0.2" + is-set "^2.0.2" + is-string "^1.0.7" + isarray "^2.0.5" + stop-iteration-iterator "^1.0.0" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -1606,6 +2356,11 @@ escape-string-regexp@^1.0.5: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" @@ -1621,11 +2376,42 @@ events@^3.3.0: resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== + expand-template@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== +expect@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" + integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg== + dependencies: + "@jest/expect-utils" "^29.5.0" + jest-get-type "^29.4.3" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -1647,6 +2433,11 @@ fast-json-patch@^3.1.1: resolved "https://registry.yarnpkg.com/fast-json-patch/-/fast-json-patch-3.1.1.tgz#85064ea1b1ebf97a3f7ad01e23f9337e72c66947" integrity sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ== +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + fast-memoize@^2.5.2: version "2.5.2" resolved "https://registry.yarnpkg.com/fast-memoize/-/fast-memoize-2.5.2.tgz#79e3bb6a4ec867ea40ba0e7146816f6cdce9b57e" @@ -1659,6 +2450,13 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + figures@^3.1.0, figures@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" @@ -1695,7 +2493,7 @@ find-up@^3.0.0: dependencies: locate-path "^3.0.0" -find-up@^4.1.0: +find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== @@ -1713,6 +2511,13 @@ follow-redirects@^1.15.2: resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + form-data-encoder@^2.1.2: version "2.1.4" resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz#261ea35d2a70d48d30ec7a9603130fa5515e9cd5" @@ -1737,6 +2542,15 @@ fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" + integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -1775,11 +2589,21 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== +fsevents@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + gauge@^4.0.3: version "4.0.4" resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" @@ -1794,11 +2618,30 @@ gauge@^4.0.3: strip-ansi "^6.0.1" wide-align "^1.1.5" +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" + integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + get-pkg-repo@^4.0.0: version "4.2.1" resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" @@ -1814,7 +2657,7 @@ get-stdin@^8.0.0: resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== -get-stream@^6.0.1: +get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== @@ -1872,7 +2715,17 @@ glob-promise@^3.4.0: dependencies: "@types/glob" "*" -glob@7.2.3, glob@^7.0.0, glob@^7.1.3, glob@^7.1.4, glob@^7.2.3: +glob@9.3.4: + version "9.3.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.4.tgz#e75dee24891a80c25cc7ee1dd327e126b98679af" + integrity sha512-qaSc49hojMOv1EPM4EuyITjDSgSKI0rthoHnvE81tcOi1SCVndHko7auqxdQ14eiQG2NDBJBE86+2xIrbIvrbA== + dependencies: + fs.realpath "^1.0.0" + minimatch "^8.0.2" + minipass "^4.2.4" + path-scurry "^1.6.1" + +glob@^7.0.0, glob@^7.1.3, glob@^7.1.4, glob@^7.2.3: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -1912,6 +2765,11 @@ global-dirs@^3.0.0: dependencies: ini "2.0.0" +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + globby@^11.0.4: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" @@ -1924,6 +2782,13 @@ globby@^11.0.4: merge2 "^1.4.1" slash "^3.0.0" +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + got@^12.1.0: version "12.6.0" resolved "https://registry.yarnpkg.com/got/-/got-12.6.0.tgz#8d382ee5de4432c086e83c133efdd474484f6ac7" @@ -1946,15 +2811,15 @@ graceful-fs@4.2.10: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.6: +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -graphology-types@^0.21.2: - version "0.21.2" - resolved "https://registry.yarnpkg.com/graphology-types/-/graphology-types-0.21.2.tgz#533af8c4632d9ba4447b5df4fcc26173275df308" - integrity sha512-KNdgwG0dbVjhJqRUw0OivJ5pkUHunbk4vDatwdfITfNvPugX0xR327ZKsaOcr3snbiBJfyGu7lCrXeYp4KF8YA== +graphology-types@^0.24.7: + version "0.24.7" + resolved "https://registry.yarnpkg.com/graphology-types/-/graphology-types-0.24.7.tgz#7d630a800061666bfa70066310f56612e08b7bee" + integrity sha512-tdcqOOpwArNjEr0gNQKCXwaNCWnQJrog14nJNQPeemcLnXQUUGrsCWpWkVKt46zLjcS6/KGoayeJfHHyPDlvwA== graphology@^0.25.1: version "0.25.1" @@ -1981,6 +2846,11 @@ hard-rejection@^2.1.0: resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== +has-bigints@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -1996,6 +2866,25 @@ has-own-prop@^2.0.0: resolved "https://registry.yarnpkg.com/has-own-prop/-/has-own-prop-2.0.0.tgz#f0f95d58f65804f5d218db32563bb85b8e0417af" integrity sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ== +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + has-unicode@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" @@ -2047,6 +2936,11 @@ hosted-git-info@^6.0.0: dependencies: lru-cache "^7.5.1" +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + http-cache-semantics@^4.1.0, http-cache-semantics@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" @@ -2077,6 +2971,11 @@ https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: agent-base "6" debug "4" +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + humanize-ms@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" @@ -2113,6 +3012,14 @@ import-lazy@^4.0.0: resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -2172,6 +3079,15 @@ ink-table@^3.0.0: dependencies: object-hash "^2.0.3" +internal-slot@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + dependencies: + get-intrinsic "^1.2.0" + has "^1.0.3" + side-channel "^1.0.4" + interpret@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" @@ -2182,11 +3098,48 @@ ip@^2.0.0: resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== +is-arguments@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-array-buffer@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + is-ci@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" @@ -2201,6 +3154,13 @@ is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.8.1: dependencies: has "^1.0.3" +is-date-object@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -2211,6 +3171,11 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + is-glob@^4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -2231,11 +3196,23 @@ is-lambda@^1.0.1: resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== +is-map@^2.0.1, is-map@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== + is-npm@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-6.0.0.tgz#b59e75e8915543ca5d881ecff864077cba095261" integrity sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ== +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" @@ -2256,6 +3233,45 @@ is-plain-obj@^1.1.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-set@^2.0.1, is-set@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + is-text-path@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" @@ -2263,6 +3279,17 @@ is-text-path@^1.0.1: dependencies: text-extensions "^1.0.0" +is-typed-array@^1.1.10: + version "1.1.10" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" + integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + is-typedarray@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" @@ -2275,11 +3302,29 @@ is-valid-domain@^0.1.6: dependencies: punycode "^2.1.1" +is-weakmap@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" + integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== + +is-weakset@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" + integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + is-yarn-global@^0.4.0: version "0.4.1" resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.4.1.tgz#b312d902b313f81e4eaf98b6361ba2b45cd694bb" integrity sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ== +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -2290,6 +3335,409 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-report@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^3.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.1.3: + version "3.1.5" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" + integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +jest-changed-files@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" + integrity sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag== + dependencies: + execa "^5.0.0" + p-limit "^3.1.0" + +jest-circus@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" + integrity sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/expect" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^0.7.0" + is-generator-fn "^2.0.0" + jest-each "^29.5.0" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-runtime "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + p-limit "^3.1.0" + pretty-format "^29.5.0" + pure-rand "^6.0.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-cli@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" + integrity sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw== + dependencies: + "@jest/core" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + import-local "^3.0.2" + jest-config "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" + prompts "^2.0.1" + yargs "^17.3.1" + +jest-config@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" + integrity sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA== + dependencies: + "@babel/core" "^7.11.6" + "@jest/test-sequencer" "^29.5.0" + "@jest/types" "^29.5.0" + babel-jest "^29.5.0" + chalk "^4.0.0" + ci-info "^3.2.0" + deepmerge "^4.2.2" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-circus "^29.5.0" + jest-environment-node "^29.5.0" + jest-get-type "^29.4.3" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-runner "^29.5.0" + jest-util "^29.5.0" + jest-validate "^29.5.0" + micromatch "^4.0.4" + parse-json "^5.2.0" + pretty-format "^29.5.0" + slash "^3.0.0" + strip-json-comments "^3.1.1" + +jest-diff@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" + integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw== + dependencies: + chalk "^4.0.0" + diff-sequences "^29.4.3" + jest-get-type "^29.4.3" + pretty-format "^29.5.0" + +jest-docblock@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" + integrity sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg== + dependencies: + detect-newline "^3.0.0" + +jest-each@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" + integrity sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA== + dependencies: + "@jest/types" "^29.5.0" + chalk "^4.0.0" + jest-get-type "^29.4.3" + jest-util "^29.5.0" + pretty-format "^29.5.0" + +jest-environment-node@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" + integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/fake-timers" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + jest-mock "^29.5.0" + jest-util "^29.5.0" + +jest-get-type@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" + integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== + +jest-haste-map@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" + integrity sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA== + dependencies: + "@jest/types" "^29.5.0" + "@types/graceful-fs" "^4.1.3" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^29.4.3" + jest-util "^29.5.0" + jest-worker "^29.5.0" + micromatch "^4.0.4" + walker "^1.0.8" + optionalDependencies: + fsevents "^2.3.2" + +jest-leak-detector@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" + integrity sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow== + dependencies: + jest-get-type "^29.4.3" + pretty-format "^29.5.0" + +jest-matcher-utils@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" + integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw== + dependencies: + chalk "^4.0.0" + jest-diff "^29.5.0" + jest-get-type "^29.4.3" + pretty-format "^29.5.0" + +jest-message-util@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" + integrity sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^29.5.0" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^29.5.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" + integrity sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw== + dependencies: + "@jest/types" "^29.5.0" + "@types/node" "*" + jest-util "^29.5.0" + +jest-pnp-resolver@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + +jest-regex-util@^29.4.3: + version "29.4.3" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" + integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== + +jest-resolve-dependencies@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" + integrity sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg== + dependencies: + jest-regex-util "^29.4.3" + jest-snapshot "^29.5.0" + +jest-resolve@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" + integrity sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== + dependencies: + chalk "^4.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + jest-pnp-resolver "^1.2.2" + jest-util "^29.5.0" + jest-validate "^29.5.0" + resolve "^1.20.0" + resolve.exports "^2.0.0" + slash "^3.0.0" + +jest-runner@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" + integrity sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ== + dependencies: + "@jest/console" "^29.5.0" + "@jest/environment" "^29.5.0" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + emittery "^0.13.1" + graceful-fs "^4.2.9" + jest-docblock "^29.4.3" + jest-environment-node "^29.5.0" + jest-haste-map "^29.5.0" + jest-leak-detector "^29.5.0" + jest-message-util "^29.5.0" + jest-resolve "^29.5.0" + jest-runtime "^29.5.0" + jest-util "^29.5.0" + jest-watcher "^29.5.0" + jest-worker "^29.5.0" + p-limit "^3.1.0" + source-map-support "0.5.13" + +jest-runtime@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" + integrity sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw== + dependencies: + "@jest/environment" "^29.5.0" + "@jest/fake-timers" "^29.5.0" + "@jest/globals" "^29.5.0" + "@jest/source-map" "^29.4.3" + "@jest/test-result" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + cjs-module-lexer "^1.0.0" + collect-v8-coverage "^1.0.0" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-haste-map "^29.5.0" + jest-message-util "^29.5.0" + jest-mock "^29.5.0" + jest-regex-util "^29.4.3" + jest-resolve "^29.5.0" + jest-snapshot "^29.5.0" + jest-util "^29.5.0" + slash "^3.0.0" + strip-bom "^4.0.0" + +jest-snapshot@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" + integrity sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== + dependencies: + "@babel/core" "^7.11.6" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-jsx" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/traverse" "^7.7.2" + "@babel/types" "^7.3.3" + "@jest/expect-utils" "^29.5.0" + "@jest/transform" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/babel__traverse" "^7.0.6" + "@types/prettier" "^2.1.5" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^29.5.0" + graceful-fs "^4.2.9" + jest-diff "^29.5.0" + jest-get-type "^29.4.3" + jest-matcher-utils "^29.5.0" + jest-message-util "^29.5.0" + jest-util "^29.5.0" + natural-compare "^1.4.0" + pretty-format "^29.5.0" + semver "^7.3.5" + +jest-util@^29.0.0, jest-util@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" + integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ== + dependencies: + "@jest/types" "^29.5.0" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-validate@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" + integrity sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ== + dependencies: + "@jest/types" "^29.5.0" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^29.4.3" + leven "^3.1.0" + pretty-format "^29.5.0" + +jest-watcher@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363" + integrity sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA== + dependencies: + "@jest/test-result" "^29.5.0" + "@jest/types" "^29.5.0" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.13.1" + jest-util "^29.5.0" + string-length "^4.0.1" + +jest-worker@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" + integrity sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA== + dependencies: + "@types/node" "*" + jest-util "^29.5.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" + integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ== + dependencies: + "@jest/core" "^29.5.0" + "@jest/types" "^29.5.0" + import-local "^3.0.2" + jest-cli "^29.5.0" + jju@^1.1.0: version "1.4.0" resolved "https://registry.yarnpkg.com/jju/-/jju-1.4.0.tgz#a3abe2718af241a2b2904f84a625970f389ae32a" @@ -2308,6 +3756,14 @@ js-yaml@3.14.0: argparse "^1.0.7" esprima "^4.0.0" +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -2347,7 +3803,7 @@ jsii-docgen@>=7.1.2: semver "^7.3.8" yargs "^16.2.0" -jsii-pacmak@^1.75.0, jsii-pacmak@^1.80.0: +jsii-pacmak@^1.79.0, jsii-pacmak@^1.80.0: version "1.80.0" resolved "https://registry.yarnpkg.com/jsii-pacmak/-/jsii-pacmak-1.80.0.tgz#ac9e2902bb155e23e5c3b04e419942861165d137" integrity sha512-XgpTzUzne+aBYEK8WsaDeDLowbQ2J6CqiJqsBZfiXvJ/0RWpU8Ua8lua622YdtSqd+LV/fASDTqdr0E40mCjQQ== @@ -2378,7 +3834,7 @@ jsii-reflect@^1.79.0, jsii-reflect@^1.80.0: oo-ascii-tree "^1.80.0" yargs "^16.2.0" -jsii-rosetta@^1.75.0, jsii-rosetta@^1.79.0, jsii-rosetta@^1.80.0: +jsii-rosetta@^1.79.0, jsii-rosetta@^1.80.0: version "1.80.0" resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-1.80.0.tgz#3ac38a79bc3670f9f25d51969e993ff605288ac2" integrity sha512-7sziqogIHg6TQpMWR9eI8tDj8C+L/tSmsnbc+lASPlzkpHkukuETsgojnP/5Zg1tng8YW1+zvjuGbqVgiEXfzA== @@ -2396,10 +3852,29 @@ jsii-rosetta@^1.75.0, jsii-rosetta@^1.79.0, jsii-rosetta@^1.80.0: workerpool "^6.4.0" yargs "^16.2.0" -jsii-srcmak@^0.1.826: - version "0.1.885" - resolved "https://registry.yarnpkg.com/jsii-srcmak/-/jsii-srcmak-0.1.885.tgz#58368e7b1130426c8351f5511c7dd72fb30e9044" - integrity sha512-rMqHWwvgKtyOl0RKlb4xKBXbTITHw2MJP/rhxL7FLfggq05Qv8YoD91G8JbBc6RpsMSoiAFODbte1kHxHbKB1Q== +jsii-rosetta@^5.0.1: + version "5.0.4" + resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-5.0.4.tgz#3f9967ced6d7675ee5c758c854c5319234958e5d" + integrity sha512-umO/UF+UY4VRIJ8zO8Wa2klWofmegtgora0IfhEkVJi4BtpcrtnMQxURY9oF4IJERmje8PSGi2j952BdYc/ATA== + dependencies: + "@jsii/check-node" "1.80.0" + "@jsii/spec" "^1.80.0" + "@xmldom/xmldom" "^0.8.7" + chalk "^4" + commonmark "^0.30.0" + fast-glob "^3.2.12" + jsii "5.0.x" + semver "^7.4.0" + semver-intersect "^1.4.0" + stream-json "^1.7.5" + typescript "~5.0.4" + workerpool "^6.4.0" + yargs "^17.7.1" + +jsii-srcmak@^0.1.867: + version "0.1.886" + resolved "https://registry.yarnpkg.com/jsii-srcmak/-/jsii-srcmak-0.1.886.tgz#b5273746010c6c8b31d85e73632a1baff618081b" + integrity sha512-yAmZ8v+Li6HF/WbPL2On4js+FGiBX+hqV95yheblE0z4p/+94m8CvbEdWPfS8WHeIpfjdgXXLkDKQls2uU/VCw== dependencies: fs-extra "^9.1.0" jsii "^1.80.0" @@ -2407,7 +3882,7 @@ jsii-srcmak@^0.1.826: ncp "^2.0.0" yargs "^15.4.1" -jsii@1.80.0, jsii@^1.53.0, jsii@^1.75.0, jsii@^1.80.0: +jsii@1.80.0, jsii@^1.53.0, jsii@^1.80.0: version "1.80.0" resolved "https://registry.yarnpkg.com/jsii/-/jsii-1.80.0.tgz#f45a752b630e71e68f65c255440ebec4ae8a6d44" integrity sha512-mw2xlpnGszpQMYZoHaKFx0TuxAuEW+tIMMVj5xXOsEBFnsc0bdVGkFPytg5VOjOiKK2PA2fAZO/3Y0Vtn3GY+Q== @@ -2426,6 +3901,25 @@ jsii@1.80.0, jsii@^1.53.0, jsii@^1.75.0, jsii@^1.80.0: typescript "~3.9.10" yargs "^16.2.0" +jsii@5.0.x, jsii@^5.0.1: + version "5.0.6" + resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.0.6.tgz#e9f21eb067e9e1b922a7453ced8e61aedf94967a" + integrity sha512-sRcffOl2eCeLTvAu5MK9kmD2cU6nInFOqUaQazd7Prssvx7Qpxk+zXjUEilQktDL7akr+Ws6ea7WPGNjeYr+4A== + dependencies: + "@jsii/check-node" "1.80.0" + "@jsii/spec" "^1.80.0" + case "^1.6.3" + chalk "^4" + downlevel-dts "^0.11.0" + fast-deep-equal "^3.1.3" + log4js "^6.9.1" + semver "^7.4.0" + semver-intersect "^1.4.0" + sort-json "^2.0.1" + spdx-license-list "^6.6.0" + typescript "~5.0.4" + yargs "^17.7.1" + json-buffer@3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" @@ -2470,7 +3964,7 @@ json-stringify-safe@^5.0.1: resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^2.2.2: +json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== @@ -2518,6 +4012,11 @@ kind-of@^6.0.3: resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + kleur@^4.0.1: version "4.1.5" resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" @@ -2537,6 +4036,11 @@ lazystream@^1.0.0: dependencies: readable-stream "^2.0.5" +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" @@ -2612,6 +4116,11 @@ lodash.isplainobject@^4.0.6: resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + lodash.union@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" @@ -2645,6 +4154,13 @@ lowercase-keys@^3.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2" integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -2667,6 +4183,18 @@ lru_map@^0.3.3: resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.3.3.tgz#b5c8351b9464cbd750335a79650a0ec0e56118dd" integrity sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ== +make-dir@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +make-error@1.x: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + make-fetch-happen@^10.0.3: version "10.2.1" resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" @@ -2710,6 +4238,13 @@ make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1: socks-proxy-agent "^7.0.0" ssri "^10.0.0" +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + map-obj@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" @@ -2742,6 +4277,11 @@ meow@^8.0.0: type-fest "^0.18.0" yargs-parser "^20.2.3" +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" @@ -2755,6 +4295,11 @@ micromatch@^4.0.4: braces "^3.0.2" picomatch "^2.3.1" +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + mimic-response@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" @@ -2930,6 +4475,11 @@ napi-build-utils@^1.0.1: resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + ncp@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" @@ -2960,11 +4510,6 @@ node-abi@^3.3.0: dependencies: semver "^7.3.5" -node-abort-controller@^3.0.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548" - integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ== - node-fetch@^2.6.7: version "2.6.9" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6" @@ -2995,6 +4540,16 @@ node-gyp@^9.0.0: tar "^6.1.2" which "^2.0.2" +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.8: + version "2.0.10" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" + integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== + nopt@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" @@ -3137,6 +4692,13 @@ npm-registry-fetch@^14.0.0: npm-package-arg "^10.0.0" proc-log "^3.0.0" +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + npmlog@^6.0.0: version "6.0.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" @@ -3152,6 +4714,34 @@ object-hash@^2.0.3: resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5" integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw== +object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +object-is@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + obliterator@^2.0.2: version "2.0.4" resolved "https://registry.yarnpkg.com/obliterator/-/obliterator-2.0.4.tgz#fa650e019b2d075d745e44f1effeb13a2adbe816" @@ -3164,6 +4754,13 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" +onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + oo-ascii-tree@^1.80.0: version "1.80.0" resolved "https://registry.yarnpkg.com/oo-ascii-tree/-/oo-ascii-tree-1.80.0.tgz#81557f5ed86559a4c62e9592fafa69de3c6311d1" @@ -3188,7 +4785,7 @@ p-limit@^2.0.0, p-limit@^2.2.0: dependencies: p-try "^2.0.0" -p-limit@^3.0.2: +p-limit@^3.0.2, p-limit@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== @@ -3295,7 +4892,7 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" -parse-json@^5.0.0: +parse-json@^5.0.0, parse-json@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== @@ -3336,7 +4933,7 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== -path-key@^3.1.0: +path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== @@ -3366,7 +4963,12 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -picomatch@^2.3.1: +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -3381,6 +4983,18 @@ pify@^3.0.0: resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== +pirates@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + +pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + prebuild-install@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" @@ -3399,11 +5013,20 @@ prebuild-install@^7.1.1: tar-fs "^2.0.0" tunnel-agent "^0.6.0" -prettier@^2.7.1: +prettier@^2.8.6: version "2.8.7" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450" integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw== +pretty-format@^29.5.0: + version "29.5.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" + integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw== + dependencies: + "@jest/schemas" "^29.4.3" + ansi-styles "^5.0.0" + react-is "^18.0.0" + proc-log@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8" @@ -3419,10 +5042,10 @@ progress@^2.0.3: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -projen@^0.71.15: - version "0.71.15" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.71.15.tgz#830e72a2f64193200e092185b526dafdebd28b54" - integrity sha512-sFiC0x6cphR9RiglKyryvR5FEB4f7+oiKisyFHMr7XaF0k9K59qCj/3LIAtB4MGsVTBgdDti/WlOECxsADfoVg== +projen@^0.71.16: + version "0.71.16" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.71.16.tgz#7726ea628a18e243a82d28fb2232c622a6a55330" + integrity sha512-/yJB6zYPlMmh8RyadrpuOGuuern5MXn7VAaprLuqRChaEEYhQ8eKbvaY2ZUzzrsfFA47oM9PgKBTFkp/rvs82w== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3" @@ -3432,7 +5055,7 @@ projen@^0.71.15: fast-json-patch "^3.1.1" glob "^8" ini "^2.0.0" - semver "^7.4.0" + semver "^7.5.0" shx "^0.3.4" xmlbuilder2 "^2.4.1" yaml "2.0.0" @@ -3459,6 +5082,14 @@ prompts-ncu@^3.0.0: kleur "^4.0.1" sisteransi "^1.0.5" +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + proto-list@~1.2.1: version "1.2.4" resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" @@ -3484,6 +5115,11 @@ pupa@^3.1.0: dependencies: escape-goat "^4.0.0" +pure-rand@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.1.tgz#31207dddd15d43f299fdcdb2f572df65030c19af" + integrity sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg== + q@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" @@ -3524,6 +5160,11 @@ rc@1.2.8, rc@^1.2.7: minimist "^1.2.0" strip-json-comments "~2.0.1" +react-is@^18.0.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + read-package-json-fast@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz#394908a9725dc7a5f14e70c8e7556dff1d2b1049" @@ -3622,6 +5263,15 @@ redent@^3.0.0: indent-string "^4.0.0" strip-indent "^3.0.0" +regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + registry-auth-token@^5.0.1: version "5.0.2" resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.0.2.tgz#8b026cc507c8552ebbe06724136267e63302f756" @@ -3671,7 +5321,24 @@ resolve-alpn@^1.2.0: resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== -resolve@^1.1.6, resolve@^1.10.0: +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve.exports@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" + integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.20.0: version "1.22.2" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== @@ -3767,18 +5434,18 @@ semver-utils@^1.1.4: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@^6.0.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.0.0, semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.4.0: +semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.4.0, semver@^7.5.0: version "7.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0" integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA== dependencies: lru-cache "^6.0.0" +semver@^6.0.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + sentence-case@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f" @@ -3805,7 +5472,7 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shelljs@^0.8.5: +shelljs@^0.8.3, shelljs@^0.8.5: version "0.8.5" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== @@ -3822,7 +5489,16 @@ shx@^0.3.4: minimist "^1.2.3" shelljs "^0.8.5" -signal-exit@^3.0.2, signal-exit@^3.0.7: +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== @@ -3899,6 +5575,14 @@ sort-json@^2.0.1: detect-newline "^2.1.0" minimist "^1.2.0" +source-map-support@0.5.13: + version "0.5.13" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + source-map-support@^0.5.21: version "0.5.21" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" @@ -3983,6 +5667,13 @@ ssri@^9.0.0: dependencies: minipass "^3.1.1" +stack-utils@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== + dependencies: + escape-string-regexp "^2.0.0" + standard-version@^9: version "9.5.0" resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-9.5.0.tgz#851d6dcddf5320d5079601832aeb185dbf497949" @@ -4003,6 +5694,13 @@ standard-version@^9: stringify-package "^1.0.1" yargs "^16.0.0" +stop-iteration-iterator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" + integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + dependencies: + internal-slot "^1.0.4" + stream-chain@^2.2.5: version "2.2.5" resolved "https://registry.yarnpkg.com/stream-chain/-/stream-chain-2.2.5.tgz#b30967e8f14ee033c5b9a19bbe8a2cba90ba0d09" @@ -4024,6 +5722,14 @@ streamroller@^3.1.5: debug "^4.3.4" fs-extra "^8.1.0" +string-length@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + dependencies: + char-regex "^1.0.2" + strip-ansi "^6.0.0" + "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -4085,6 +5791,16 @@ strip-bom@^3.0.0: resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + strip-indent@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" @@ -4092,6 +5808,11 @@ strip-indent@^3.0.0: dependencies: min-indent "^1.0.0" +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + strip-json-comments@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-5.0.0.tgz#ec101b766476a703031bc607e3c712569de2aa06" @@ -4116,6 +5837,13 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" @@ -4154,6 +5882,15 @@ tar@^6.1.11, tar@^6.1.2: mkdirp "^1.0.3" yallist "^4.0.0" +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + text-extensions@^1.0.0: version "1.9.0" resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" @@ -4179,6 +5916,11 @@ through@2, "through@>=2.2.7 <3": resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -4201,6 +5943,20 @@ trim-newlines@^3.0.0: resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== +ts-jest@^29.0.5: + version "29.1.0" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891" + integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA== + dependencies: + bs-logger "0.x" + fast-json-stable-stringify "2.x" + jest-util "^29.0.0" + json5 "^2.2.3" + lodash.memoize "4.x" + make-error "1.x" + semver "7.x" + yargs-parser "^21.0.1" + tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" @@ -4231,11 +5987,21 @@ tunnel@^0.0.6: resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + type-fest@^0.18.0: version "0.18.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" @@ -4273,6 +6039,16 @@ typescript@^4.9.5: resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== +typescript@^5.0.2, typescript@~5.0.4: + version "5.0.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" + integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== + +typescript@next: + version "5.1.0-dev.20230418" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.0-dev.20230418.tgz#7ccb67d97c7de1391348ef576a42a69b48da8517" + integrity sha512-BfA/KV0xddF8ZCAQZxZ0FoS8p+nWKXVaa5fctXW6WNGfcYF04cXlLB6F6uf3uCVbd0iad4YdHchz3KR0722QLg== + typescript@~3.9.10: version "3.9.10" resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" @@ -4333,6 +6109,14 @@ untildify@^4.0.0: resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== +update-browserslist-db@^1.0.10: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + update-notifier@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-6.0.2.tgz#a6990253dfe6d5a02bd04fbb6a61543f55026b60" @@ -4384,6 +6168,15 @@ uuid@^8.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +v8-to-istanbul@^9.0.1: + version "9.1.0" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" + integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== + dependencies: + "@jridgewell/trace-mapping" "^0.3.12" + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -4399,6 +6192,13 @@ validate-npm-package-name@^5.0.0: dependencies: builtins "^5.0.0" +walker@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" @@ -4412,11 +6212,44 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-collection@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" + integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== + dependencies: + is-map "^2.0.1" + is-set "^2.0.1" + is-weakmap "^2.0.1" + is-weakset "^2.0.1" + which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== +which-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" + integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.10" + which@^2.0.1, which@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -4497,6 +6330,14 @@ write-file-atomic@^3.0.3: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" +write-file-atomic@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + xdg-basedir@^5.0.1, xdg-basedir@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz#1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9" @@ -4545,6 +6386,11 @@ y18n@^5.0.5: resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" @@ -4568,7 +6414,7 @@ yargs-parser@^20.2.2, yargs-parser@^20.2.3: resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== -yargs-parser@^21.1.1: +yargs-parser@^21.0.1, yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== @@ -4603,7 +6449,7 @@ yargs@^16.0.0, yargs@^16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" -yargs@^17.6: +yargs@^17.3.1, yargs@^17.6, yargs@^17.7.1: version "17.7.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967" integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw== @@ -4641,3 +6487,8 @@ zod@^1.11.17: version "1.11.17" resolved "https://registry.yarnpkg.com/zod/-/zod-1.11.17.tgz#2aae9e91fc66128116ae9844e8f416a95f453f8e" integrity sha512-UzIwO92D0dSFwIRyyqAfRXICITLjF0IP8tRbEK/un7adirMssWZx8xF/1hZNE7t61knWZ+lhEuUvxlu2MO8qqA== + +zod@^3.21.4: + version "3.21.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" + integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== From a7b579b1950b8f8daa7b26f4f497fc3061a4b6f1 Mon Sep 17 00:00:00 2001 From: team-tf-cdk Date: Tue, 18 Apr 2023 20:38:24 +0000 Subject: [PATCH 2/2] chore: self mutation Signed-off-by: team-tf-cdk --- docs/dataLocalFile.go.md | 10 +++++----- docs/dataLocalSensitiveFile.go.md | 10 +++++----- docs/file.go.md | 10 +++++----- docs/provider.go.md | 10 +++++----- docs/sensitiveFile.go.md | 10 +++++----- 5 files changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/dataLocalFile.go.md b/docs/dataLocalFile.go.md index a958546b..babab9fc 100644 --- a/docs/dataLocalFile.go.md +++ b/docs/dataLocalFile.go.md @@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" datalocalfile.NewDataLocalFile(scope Construct, id *string, config DataLocalFileConfig) DataLocalFile ``` @@ -270,7 +270,7 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" datalocalfile.DataLocalFile_IsConstruct(x interface{}) *bool ``` @@ -302,7 +302,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" datalocalfile.DataLocalFile_IsTerraformElement(x interface{}) *bool ``` @@ -316,7 +316,7 @@ datalocalfile.DataLocalFile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" datalocalfile.DataLocalFile_IsTerraformDataSource(x interface{}) *bool ``` @@ -614,7 +614,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalfile" &datalocalfile.DataLocalFileConfig { Connection: interface{}, diff --git a/docs/dataLocalSensitiveFile.go.md b/docs/dataLocalSensitiveFile.go.md index daace883..69ea3332 100644 --- a/docs/dataLocalSensitiveFile.go.md +++ b/docs/dataLocalSensitiveFile.go.md @@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" datalocalsensitivefile.NewDataLocalSensitiveFile(scope Construct, id *string, config DataLocalSensitiveFileConfig) DataLocalSensitiveFile ``` @@ -270,7 +270,7 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" datalocalsensitivefile.DataLocalSensitiveFile_IsConstruct(x interface{}) *bool ``` @@ -302,7 +302,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformElement(x interface{}) *bool ``` @@ -316,7 +316,7 @@ datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformElement(x interface{}) ##### `IsTerraformDataSource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformDataSource(x interface{}) *bool ``` @@ -614,7 +614,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/datalocalsensitivefile" &datalocalsensitivefile.DataLocalSensitiveFileConfig { Connection: interface{}, diff --git a/docs/file.go.md b/docs/file.go.md index bb76485f..e659acae 100644 --- a/docs/file.go.md +++ b/docs/file.go.md @@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/file" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" file.NewFile(scope Construct, id *string, config FileConfig) File ``` @@ -312,7 +312,7 @@ func ResetSource() ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/file" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" file.File_IsConstruct(x interface{}) *bool ``` @@ -344,7 +344,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/file" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" file.File_IsTerraformElement(x interface{}) *bool ``` @@ -358,7 +358,7 @@ file.File_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/file" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" file.File_IsTerraformResource(x interface{}) *bool ``` @@ -788,7 +788,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/file" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/file" &file.FileConfig { Connection: interface{}, diff --git a/docs/provider.go.md b/docs/provider.go.md index 0097361f..faf7b8eb 100644 --- a/docs/provider.go.md +++ b/docs/provider.go.md @@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" provider.NewLocalProvider(scope Construct, id *string, config LocalProviderConfig) LocalProvider ``` @@ -147,7 +147,7 @@ func ResetAlias() ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" provider.LocalProvider_IsConstruct(x interface{}) *bool ``` @@ -179,7 +179,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" provider.LocalProvider_IsTerraformElement(x interface{}) *bool ``` @@ -193,7 +193,7 @@ provider.LocalProvider_IsTerraformElement(x interface{}) *bool ##### `IsTerraformProvider` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" provider.LocalProvider_IsTerraformProvider(x interface{}) *bool ``` @@ -348,7 +348,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/provider" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/provider" &provider.LocalProviderConfig { Alias: *string, diff --git a/docs/sensitiveFile.go.md b/docs/sensitiveFile.go.md index b68a7f89..1fc59856 100644 --- a/docs/sensitiveFile.go.md +++ b/docs/sensitiveFile.go.md @@ -13,7 +13,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.4. #### Initializers ```go -import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" sensitivefile.NewSensitiveFile(scope Construct, id *string, config SensitiveFileConfig) SensitiveFile ``` @@ -305,7 +305,7 @@ func ResetSource() ##### `IsConstruct` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" sensitivefile.SensitiveFile_IsConstruct(x interface{}) *bool ``` @@ -337,7 +337,7 @@ Any object. ##### `IsTerraformElement` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" sensitivefile.SensitiveFile_IsTerraformElement(x interface{}) *bool ``` @@ -351,7 +351,7 @@ sensitivefile.SensitiveFile_IsTerraformElement(x interface{}) *bool ##### `IsTerraformResource` ```go -import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" sensitivefile.SensitiveFile_IsTerraformResource(x interface{}) *bool ``` @@ -759,7 +759,7 @@ func TfResourceType() *string #### Initializer ```go -import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile" +import "github.com/cdktf/cdktf-provider-local-go/local/v6/sensitivefile" &sensitivefile.SensitiveFileConfig { Connection: interface{},