@awboost/cfn-resource-types 0.1.52 → 0.1.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,90 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::IVS::EncoderConfiguration.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html}
6
+ */
7
+ export type IVSEncoderConfigurationProperties = {
8
+ /**
9
+ * Encoder configuration name.
10
+ * @minLength `0`
11
+ * @maxLength `128`
12
+ * @pattern `^[a-zA-Z0-9-_]*$`
13
+ */
14
+ Name?: string;
15
+ /**
16
+ * An array of key-value pairs to apply to this resource.
17
+ * @maxLength `50`
18
+ */
19
+ Tags?: Tag[];
20
+ /**
21
+ * Video configuration. Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps
22
+ */
23
+ Video?: {
24
+ /**
25
+ * Bitrate for generated output, in bps. Default: 2500000.
26
+ * @min `1`
27
+ * @max `8500000`
28
+ */
29
+ Bitrate?: number;
30
+ /**
31
+ * Video frame rate, in fps. Default: 30.
32
+ * @min `1`
33
+ * @max `60`
34
+ */
35
+ Framerate?: number;
36
+ /**
37
+ * Video-resolution height. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.
38
+ * @min `1`
39
+ * @max `1920`
40
+ */
41
+ Height?: number;
42
+ /**
43
+ * Video-resolution width. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.
44
+ * @min `1`
45
+ * @max `1920`
46
+ */
47
+ Width?: number;
48
+ };
49
+ };
50
+ /**
51
+ * Attribute type definition for `AWS::IVS::EncoderConfiguration`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html#aws-resource-ivs-encoderconfiguration-return-values}
53
+ */
54
+ export type IVSEncoderConfigurationAttributes = {
55
+ /**
56
+ * Encoder configuration identifier.
57
+ * @minLength `1`
58
+ * @maxLength `128`
59
+ * @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:encoder-configuration/[a-zA-Z0-9-]+$`
60
+ */
61
+ Arn: string;
62
+ };
63
+ /**
64
+ * Type definition for `AWS::IVS::EncoderConfiguration.Tag`.
65
+ * A key-value pair to associate with a resource.
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-encoderconfiguration-tag.html}
67
+ */
68
+ export type Tag = {
69
+ /**
70
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
71
+ * @minLength `1`
72
+ * @maxLength `128`
73
+ */
74
+ Key: string;
75
+ /**
76
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
77
+ * @minLength `0`
78
+ * @maxLength `256`
79
+ */
80
+ Value: string;
81
+ };
82
+ /**
83
+ * Resource Type definition for AWS::IVS::EncoderConfiguration.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html}
85
+ */
86
+ export declare class IVSEncoderConfiguration extends $Resource<"AWS::IVS::EncoderConfiguration", IVSEncoderConfigurationProperties, IVSEncoderConfigurationAttributes> {
87
+ static readonly Type = "AWS::IVS::EncoderConfiguration";
88
+ constructor(logicalId: string, properties: IVSEncoderConfigurationProperties, options?: $ResourceOptions);
89
+ }
90
+ //# sourceMappingURL=AWS-IVS-EncoderConfiguration.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::IVS::EncoderConfiguration.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html}
5
+ */
6
+ export class IVSEncoderConfiguration extends $Resource {
7
+ static Type = "AWS::IVS::EncoderConfiguration";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, IVSEncoderConfiguration.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-IVS-EncoderConfiguration.js.map
@@ -0,0 +1,73 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::IVS::PlaybackRestrictionPolicy.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackrestrictionpolicy.html}
6
+ */
7
+ export type IVSPlaybackRestrictionPolicyProperties = {
8
+ /**
9
+ * A list of country codes that control geoblocking restriction. Allowed values are the officially assigned ISO 3166-1 alpha-2 codes. Default: All countries (an empty array).
10
+ */
11
+ AllowedCountries: string[];
12
+ /**
13
+ * A list of origin sites that control CORS restriction. Allowed values are the same as valid values of the Origin header defined at https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin
14
+ */
15
+ AllowedOrigins: string[];
16
+ /**
17
+ * Whether channel playback is constrained by origin site.
18
+ */
19
+ EnableStrictOriginEnforcement?: boolean;
20
+ /**
21
+ * Playback-restriction-policy name.
22
+ * @minLength `0`
23
+ * @maxLength `128`
24
+ * @pattern `^[a-zA-Z0-9-_]*$`
25
+ */
26
+ Name?: string;
27
+ /**
28
+ * An array of key-value pairs to apply to this resource.
29
+ * @maxLength `50`
30
+ */
31
+ Tags?: Tag[];
32
+ };
33
+ /**
34
+ * Attribute type definition for `AWS::IVS::PlaybackRestrictionPolicy`.
35
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackrestrictionpolicy.html#aws-resource-ivs-playbackrestrictionpolicy-return-values}
36
+ */
37
+ export type IVSPlaybackRestrictionPolicyAttributes = {
38
+ /**
39
+ * Playback-restriction-policy identifier.
40
+ * @minLength `1`
41
+ * @maxLength `128`
42
+ * @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:playback-restriction-policy/[a-zA-Z0-9-]+$`
43
+ */
44
+ Arn: string;
45
+ };
46
+ /**
47
+ * Type definition for `AWS::IVS::PlaybackRestrictionPolicy.Tag`.
48
+ * A key-value pair to associate with a resource.
49
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-playbackrestrictionpolicy-tag.html}
50
+ */
51
+ export type Tag = {
52
+ /**
53
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
54
+ * @minLength `1`
55
+ * @maxLength `128`
56
+ */
57
+ Key: string;
58
+ /**
59
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
60
+ * @minLength `0`
61
+ * @maxLength `256`
62
+ */
63
+ Value: string;
64
+ };
65
+ /**
66
+ * Resource Type definition for AWS::IVS::PlaybackRestrictionPolicy.
67
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackrestrictionpolicy.html}
68
+ */
69
+ export declare class IVSPlaybackRestrictionPolicy extends $Resource<"AWS::IVS::PlaybackRestrictionPolicy", IVSPlaybackRestrictionPolicyProperties, IVSPlaybackRestrictionPolicyAttributes> {
70
+ static readonly Type = "AWS::IVS::PlaybackRestrictionPolicy";
71
+ constructor(logicalId: string, properties: IVSPlaybackRestrictionPolicyProperties, options?: $ResourceOptions);
72
+ }
73
+ //# sourceMappingURL=AWS-IVS-PlaybackRestrictionPolicy.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::IVS::PlaybackRestrictionPolicy.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackrestrictionpolicy.html}
5
+ */
6
+ export class IVSPlaybackRestrictionPolicy extends $Resource {
7
+ static Type = "AWS::IVS::PlaybackRestrictionPolicy";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, IVSPlaybackRestrictionPolicy.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-IVS-PlaybackRestrictionPolicy.js.map
@@ -0,0 +1,76 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::IVS::StorageConfiguration
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-storageconfiguration.html}
6
+ */
7
+ export type IVSStorageConfigurationProperties = {
8
+ /**
9
+ * Storage Configuration Name.
10
+ * @minLength `0`
11
+ * @maxLength `128`
12
+ * @pattern `^[a-zA-Z0-9-_]*$`
13
+ */
14
+ Name?: string;
15
+ /**
16
+ * A complex type that describes an S3 location where recorded videos will be stored.
17
+ */
18
+ S3: S3StorageConfiguration;
19
+ /**
20
+ * A list of key-value pairs that contain metadata for the asset model.
21
+ * @maxLength `50`
22
+ */
23
+ Tags?: Tag[];
24
+ };
25
+ /**
26
+ * Attribute type definition for `AWS::IVS::StorageConfiguration`.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-storageconfiguration.html#aws-resource-ivs-storageconfiguration-return-values}
28
+ */
29
+ export type IVSStorageConfigurationAttributes = {
30
+ /**
31
+ * Storage Configuration ARN is automatically generated on creation and assigned as the unique identifier.
32
+ * @minLength `0`
33
+ * @maxLength `128`
34
+ * @pattern `^arn:aws[-a-z]*:ivs:[a-z0-9-]+:[0-9]+:storage-configuration/[a-zA-Z0-9-]+$`
35
+ */
36
+ Arn: string;
37
+ };
38
+ /**
39
+ * Type definition for `AWS::IVS::StorageConfiguration.S3StorageConfiguration`.
40
+ * A complex type that describes an S3 location where recorded videos will be stored.
41
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-storageconfiguration-s3storageconfiguration.html}
42
+ */
43
+ export type S3StorageConfiguration = {
44
+ /**
45
+ * Location (S3 bucket name) where recorded videos will be stored. Note that the StorageConfiguration and S3 bucket must be in the same region as the Composition.
46
+ * @minLength `3`
47
+ * @maxLength `63`
48
+ * @pattern `^[a-z0-9-.]+$`
49
+ */
50
+ BucketName: string;
51
+ };
52
+ /**
53
+ * Type definition for `AWS::IVS::StorageConfiguration.Tag`.
54
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-storageconfiguration-tag.html}
55
+ */
56
+ export type Tag = {
57
+ /**
58
+ * @minLength `1`
59
+ * @maxLength `128`
60
+ */
61
+ Key: string;
62
+ /**
63
+ * @minLength `1`
64
+ * @maxLength `256`
65
+ */
66
+ Value: string;
67
+ };
68
+ /**
69
+ * Resource Type definition for AWS::IVS::StorageConfiguration
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-storageconfiguration.html}
71
+ */
72
+ export declare class IVSStorageConfiguration extends $Resource<"AWS::IVS::StorageConfiguration", IVSStorageConfigurationProperties, IVSStorageConfigurationAttributes> {
73
+ static readonly Type = "AWS::IVS::StorageConfiguration";
74
+ constructor(logicalId: string, properties: IVSStorageConfigurationProperties, options?: $ResourceOptions);
75
+ }
76
+ //# sourceMappingURL=AWS-IVS-StorageConfiguration.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::IVS::StorageConfiguration
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-storageconfiguration.html}
5
+ */
6
+ export class IVSStorageConfiguration extends $Resource {
7
+ static Type = "AWS::IVS::StorageConfiguration";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, IVSStorageConfiguration.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-IVS-StorageConfiguration.js.map
@@ -50,7 +50,7 @@ export type Route53HostedZoneProperties = {
50
50
  QueryLoggingConfig?: QueryLoggingConfig;
51
51
  /**
52
52
  * *Private hosted zones:* A complex type that contains information about the VPCs that are associated with the specified hosted zone.
53
- For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
53
+ For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
54
54
  */
55
55
  VPCs?: VPC[];
56
56
  };
@@ -111,18 +111,18 @@ export type QueryLoggingConfig = {
111
111
  /**
112
112
  * Type definition for `AWS::Route53::HostedZone.VPC`.
113
113
  * *Private hosted zones only:* A complex type that contains information about an Amazon VPC. Route 53 Resolver uses the records in the private hosted zone to route traffic in that VPC.
114
- For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
114
+ For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
115
115
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-vpc.html}
116
116
  */
117
117
  export type VPC = {
118
118
  /**
119
119
  * *Private hosted zones only:* The ID of an Amazon VPC.
120
- For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
120
+ For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
121
121
  */
122
122
  VPCId: string;
123
123
  /**
124
124
  * *Private hosted zones only:* The region that an Amazon VPC was created in.
125
- For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
125
+ For public hosted zones, omit ``VPCs``, ``VPCId``, and ``VPCRegion``.
126
126
  */
127
127
  VPCRegion: string;
128
128
  };
@@ -22,7 +22,7 @@ export type SSMParameterProperties = {
22
22
  Description?: string;
23
23
  /**
24
24
  * The name of the parameter.
25
- The maximum length constraint listed below includes capacity for additional system attributes that aren't part of the name. The maximum length for a parameter name, including the full length of the parameter Amazon Resource Name (ARN), is 1011 characters. For example, the length of the following parameter name is 65 characters, not 20 characters: ``arn:aws:ssm:us-east-2:111222333444:parameter/ExampleParameterName``
25
+ The maximum length constraint listed below includes capacity for additional system attributes that aren't part of the name. The maximum length for a parameter name, including the full length of the parameter Amazon Resource Name (ARN), is 1011 characters. For example, the length of the following parameter name is 65 characters, not 20 characters: ``arn:aws:ssm:us-east-2:111222333444:parameter/ExampleParameterName``
26
26
  */
27
27
  Name?: string;
28
28
  /**
@@ -110,6 +110,12 @@ export type SageMakerDomainAttributes = {
110
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-codeeditorappsettings.html}
111
111
  */
112
112
  export type CodeEditorAppSettings = {
113
+ /**
114
+ * A list of custom images for use for CodeEditor apps.
115
+ * @minLength `0`
116
+ * @maxLength `30`
117
+ */
118
+ CustomImages?: CustomImage[];
113
119
  /**
114
120
  * The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
115
121
  */
@@ -57,6 +57,12 @@ export type SageMakerUserProfileAttributes = {
57
57
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-codeeditorappsettings.html}
58
58
  */
59
59
  export type CodeEditorAppSettings = {
60
+ /**
61
+ * A list of custom images for use for CodeEditor apps.
62
+ * @minLength `0`
63
+ * @maxLength `30`
64
+ */
65
+ CustomImages?: CustomImage[];
60
66
  /**
61
67
  * The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
62
68
  */
@@ -148,6 +148,11 @@ export type AwsSecurityFindingFilters = {
148
148
  * @maxLength `20`
149
149
  */
150
150
  Id?: StringFilter[];
151
+ /**
152
+ * A keyword for a finding.
153
+ * @maxLength `20`
154
+ */
155
+ Keyword?: KeywordFilter[];
151
156
  /**
152
157
  * An ISO8601-formatted timestamp that indicates when the security findings provider most recently observed the potential security issue that a finding captured.
153
158
  * @maxLength `20`
@@ -383,6 +388,11 @@ export type AwsSecurityFindingFilters = {
383
388
  * @maxLength `20`
384
389
  */
385
390
  ResourceAwsIamAccessKeyStatus?: StringFilter[];
391
+ /**
392
+ * The user associated with the IAM access key related to a finding.
393
+ * @maxLength `20`
394
+ */
395
+ ResourceAwsIamAccessKeyUserName?: StringFilter[];
386
396
  /**
387
397
  * The name of an IAM user.
388
398
  * @maxLength `20`
@@ -458,6 +468,16 @@ export type AwsSecurityFindingFilters = {
458
468
  * @maxLength `20`
459
469
  */
460
470
  SeverityLabel?: StringFilter[];
471
+ /**
472
+ * The normalized severity of a finding.
473
+ * @maxLength `20`
474
+ */
475
+ SeverityNormalized?: NumberFilter[];
476
+ /**
477
+ * The native severity as defined by the security findings provider's solution that generated the finding.
478
+ * @maxLength `20`
479
+ */
480
+ SeverityProduct?: NumberFilter[];
461
481
  /**
462
482
  * A URL that links to a page about the current finding in the security findings provider's solution.
463
483
  * @maxLength `20`
@@ -562,12 +582,12 @@ export type DateFilter = {
562
582
  DateRange?: DateRange;
563
583
  /**
564
584
  * The date and time, in UTC and ISO 8601 format.
565
- * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
585
+ * @pattern `^([\+-]?\d{4}(?!\d{2}))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([tT]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$`
566
586
  */
567
587
  End?: string;
568
588
  /**
569
589
  * The date and time, in UTC and ISO 8601 format.
570
- * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
590
+ * @pattern `^([\+-]?\d{4}(?!\d{2}))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([tT]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$`
571
591
  */
572
592
  Start?: string;
573
593
  };
@@ -596,7 +616,19 @@ export type IpFilter = {
596
616
  * A finding's CIDR value.
597
617
  * @minLength `1`
598
618
  */
599
- Cidr?: string;
619
+ Cidr: string;
620
+ };
621
+ /**
622
+ * Type definition for `AWS::SecurityHub::Insight.KeywordFilter`.
623
+ * A keyword filter for querying findings.
624
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-insight-keywordfilter.html}
625
+ */
626
+ export type KeywordFilter = {
627
+ /**
628
+ * A value for the keyword.
629
+ * @minLength `1`
630
+ */
631
+ Value: string;
600
632
  };
601
633
  /**
602
634
  * Type definition for `AWS::SecurityHub::Insight.MapFilter`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.52",
3
+ "version": "0.1.53",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },