@pulumi/aws-native 0.116.0 → 0.117.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/bedrock/dataSource.js +1 -1
  2. package/bedrock/dataSource.js.map +1 -1
  3. package/bedrock/getDataSource.d.ts +4 -0
  4. package/bedrock/getDataSource.js.map +1 -1
  5. package/datasync/getLocationNfs.d.ts +2 -2
  6. package/datasync/locationNfs.d.ts +4 -4
  7. package/ec2/vpnConnection.d.ts +10 -0
  8. package/ec2/vpnConnection.js.map +1 -1
  9. package/elasticloadbalancingv2/getLoadBalancer.d.ts +1 -0
  10. package/elasticloadbalancingv2/getLoadBalancer.js.map +1 -1
  11. package/elasticloadbalancingv2/loadBalancer.d.ts +2 -0
  12. package/elasticloadbalancingv2/loadBalancer.js.map +1 -1
  13. package/networkmanager/connectAttachment.d.ts +16 -0
  14. package/networkmanager/connectAttachment.js +4 -0
  15. package/networkmanager/connectAttachment.js.map +1 -1
  16. package/networkmanager/coreNetwork.d.ts +4 -0
  17. package/networkmanager/coreNetwork.js +2 -0
  18. package/networkmanager/coreNetwork.js.map +1 -1
  19. package/networkmanager/getConnectAttachment.d.ts +8 -0
  20. package/networkmanager/getConnectAttachment.js.map +1 -1
  21. package/networkmanager/getCoreNetwork.d.ts +4 -0
  22. package/networkmanager/getCoreNetwork.js.map +1 -1
  23. package/networkmanager/getSiteToSiteVpnAttachment.d.ts +8 -0
  24. package/networkmanager/getSiteToSiteVpnAttachment.js.map +1 -1
  25. package/networkmanager/getTransitGatewayRouteTableAttachment.d.ts +8 -0
  26. package/networkmanager/getTransitGatewayRouteTableAttachment.js.map +1 -1
  27. package/networkmanager/getVpcAttachment.d.ts +8 -0
  28. package/networkmanager/getVpcAttachment.js.map +1 -1
  29. package/networkmanager/siteToSiteVpnAttachment.d.ts +16 -0
  30. package/networkmanager/siteToSiteVpnAttachment.js +4 -0
  31. package/networkmanager/siteToSiteVpnAttachment.js.map +1 -1
  32. package/networkmanager/transitGatewayRouteTableAttachment.d.ts +16 -0
  33. package/networkmanager/transitGatewayRouteTableAttachment.js +4 -0
  34. package/networkmanager/transitGatewayRouteTableAttachment.js.map +1 -1
  35. package/networkmanager/vpcAttachment.d.ts +12 -0
  36. package/networkmanager/vpcAttachment.js +4 -0
  37. package/networkmanager/vpcAttachment.js.map +1 -1
  38. package/package.json +3 -3
  39. package/package.json.dev +2 -2
  40. package/route53/getHostedZone.d.ts +1 -1
  41. package/route53/hostedZone.d.ts +2 -2
  42. package/types/enums/bedrock/index.d.ts +71 -0
  43. package/types/enums/bedrock/index.js +36 -1
  44. package/types/enums/bedrock/index.js.map +1 -1
  45. package/types/input.d.ts +382 -28
  46. package/types/output.d.ts +403 -28
@@ -47,6 +47,10 @@ export declare class VpcAttachment extends pulumi.CustomResource {
47
47
  * The Region where the edge is located.
48
48
  */
49
49
  readonly edgeLocation: pulumi.Output<string>;
50
+ /**
51
+ * The name of the network function group attachment.
52
+ */
53
+ readonly networkFunctionGroupName: pulumi.Output<string>;
50
54
  /**
51
55
  * Vpc options of the attachment.
52
56
  */
@@ -55,6 +59,10 @@ export declare class VpcAttachment extends pulumi.CustomResource {
55
59
  * Owner account of the attachment.
56
60
  */
57
61
  readonly ownerAccountId: pulumi.Output<string>;
62
+ /**
63
+ * The attachment to move from one network function group to another.
64
+ */
65
+ readonly proposedNetworkFunctionGroupChange: pulumi.Output<outputs.networkmanager.VpcAttachmentProposedNetworkFunctionGroupChange | undefined>;
58
66
  /**
59
67
  * The attachment to move from one segment to another.
60
68
  */
@@ -108,6 +116,10 @@ export interface VpcAttachmentArgs {
108
116
  * Vpc options of the attachment.
109
117
  */
110
118
  options?: pulumi.Input<inputs.networkmanager.VpcAttachmentVpcOptionsArgs>;
119
+ /**
120
+ * The attachment to move from one network function group to another.
121
+ */
122
+ proposedNetworkFunctionGroupChange?: pulumi.Input<inputs.networkmanager.VpcAttachmentProposedNetworkFunctionGroupChangeArgs>;
111
123
  /**
112
124
  * The attachment to move from one segment to another.
113
125
  */
@@ -52,6 +52,7 @@ class VpcAttachment extends pulumi.CustomResource {
52
52
  }
53
53
  resourceInputs["coreNetworkId"] = args ? args.coreNetworkId : undefined;
54
54
  resourceInputs["options"] = args ? args.options : undefined;
55
+ resourceInputs["proposedNetworkFunctionGroupChange"] = args ? args.proposedNetworkFunctionGroupChange : undefined;
55
56
  resourceInputs["proposedSegmentChange"] = args ? args.proposedSegmentChange : undefined;
56
57
  resourceInputs["subnetArns"] = args ? args.subnetArns : undefined;
57
58
  resourceInputs["tags"] = args ? args.tags : undefined;
@@ -62,6 +63,7 @@ class VpcAttachment extends pulumi.CustomResource {
62
63
  resourceInputs["coreNetworkArn"] = undefined /*out*/;
63
64
  resourceInputs["createdAt"] = undefined /*out*/;
64
65
  resourceInputs["edgeLocation"] = undefined /*out*/;
66
+ resourceInputs["networkFunctionGroupName"] = undefined /*out*/;
65
67
  resourceInputs["ownerAccountId"] = undefined /*out*/;
66
68
  resourceInputs["resourceArn"] = undefined /*out*/;
67
69
  resourceInputs["segmentName"] = undefined /*out*/;
@@ -76,8 +78,10 @@ class VpcAttachment extends pulumi.CustomResource {
76
78
  resourceInputs["coreNetworkId"] = undefined /*out*/;
77
79
  resourceInputs["createdAt"] = undefined /*out*/;
78
80
  resourceInputs["edgeLocation"] = undefined /*out*/;
81
+ resourceInputs["networkFunctionGroupName"] = undefined /*out*/;
79
82
  resourceInputs["options"] = undefined /*out*/;
80
83
  resourceInputs["ownerAccountId"] = undefined /*out*/;
84
+ resourceInputs["proposedNetworkFunctionGroupChange"] = undefined /*out*/;
81
85
  resourceInputs["proposedSegmentChange"] = undefined /*out*/;
82
86
  resourceInputs["resourceArn"] = undefined /*out*/;
83
87
  resourceInputs["segmentName"] = undefined /*out*/;
@@ -1 +1 @@
1
- {"version":3,"file":"vpcAttachment.js","sourceRoot":"","sources":["../../networkmanager/vpcAttachment.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"vpcAttachment.js","sourceRoot":"","sources":["../../networkmanager/vpcAttachment.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/aws-native",
3
- "version": "0.116.0",
3
+ "version": "0.117.0",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "aws",
@@ -13,7 +13,7 @@
13
13
  "license": "Apache-2.0",
14
14
  "scripts": {
15
15
  "build": "tsc",
16
- "install": "node scripts/install-pulumi-plugin.js resource aws-native 0.116.0"
16
+ "install": "node scripts/install-pulumi-plugin.js resource aws-native 0.117.0"
17
17
  },
18
18
  "dependencies": {
19
19
  "@pulumi/pulumi": "^3.42.0"
@@ -25,6 +25,6 @@
25
25
  "pulumi": {
26
26
  "resource": true,
27
27
  "name": "aws-native",
28
- "version": "0.116.0"
28
+ "version": "0.117.0"
29
29
  }
30
30
  }
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/aws-native",
3
- "version": "0.116.0",
3
+ "version": "0.117.0",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "aws",
@@ -24,6 +24,6 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "aws-native",
27
- "version": "0.116.0"
27
+ "version": "0.117.0"
28
28
  }
29
29
  }
@@ -35,7 +35,7 @@ export interface GetHostedZoneResult {
35
35
  * Adds, edits, or deletes tags for a health check or a hosted zone.
36
36
  * For information about using tags for cost allocation, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *User Guide*.
37
37
  */
38
- readonly hostedZoneTags?: outputs.route53.HostedZoneTag[];
38
+ readonly hostedZoneTags?: outputs.Tag[];
39
39
  /**
40
40
  * The ID that Amazon Route 53 assigned to the hosted zone when you created it.
41
41
  */
@@ -47,7 +47,7 @@ export declare class HostedZone extends pulumi.CustomResource {
47
47
  * Adds, edits, or deletes tags for a health check or a hosted zone.
48
48
  * For information about using tags for cost allocation, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *User Guide*.
49
49
  */
50
- readonly hostedZoneTags: pulumi.Output<outputs.route53.HostedZoneTag[] | undefined>;
50
+ readonly hostedZoneTags: pulumi.Output<outputs.Tag[] | undefined>;
51
51
  /**
52
52
  * The name of the domain. Specify a fully qualified domain name, for example, *www.example.com*. The trailing dot is optional; Amazon Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats *www.example.com* (without a trailing dot) and *www.example.com.* (with a trailing dot) as identical.
53
53
  * If you're creating a public hosted zone, this is the name you have registered with your DNS registrar. If your domain name is registered with a registrar other than Route 53, change the name servers for your domain to the set of ``NameServers`` that are returned by the ``Fn::GetAtt`` intrinsic function.
@@ -97,7 +97,7 @@ export interface HostedZoneArgs {
97
97
  * Adds, edits, or deletes tags for a health check or a hosted zone.
98
98
  * For information about using tags for cost allocation, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *User Guide*.
99
99
  */
100
- hostedZoneTags?: pulumi.Input<pulumi.Input<inputs.route53.HostedZoneTagArgs>[]>;
100
+ hostedZoneTags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
101
101
  /**
102
102
  * The name of the domain. Specify a fully qualified domain name, for example, *www.example.com*. The trailing dot is optional; Amazon Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats *www.example.com* (without a trailing dot) and *www.example.com.* (with a trailing dot) as identical.
103
103
  * If you're creating a public hosted zone, this is the name you have registered with your DNS registrar. If your domain name is registered with a registrar other than Route 53, change the name servers for your domain to the set of ``NameServers`` that are returned by the ``Fn::GetAtt`` intrinsic function.
@@ -93,11 +93,35 @@ export type AgentType = (typeof AgentType)[keyof typeof AgentType];
93
93
  export declare const DataSourceChunkingStrategy: {
94
94
  readonly FixedSize: "FIXED_SIZE";
95
95
  readonly None: "NONE";
96
+ readonly Hierarchical: "HIERARCHICAL";
97
+ readonly Semantic: "SEMANTIC";
96
98
  };
97
99
  /**
98
100
  * Knowledge base can split your source data into chunks. A chunk refers to an excerpt from a data source that is returned when the knowledge base that it belongs to is queried. You have the following options for chunking your data. If you opt for NONE, then you may want to pre-process your files by splitting them up such that each file corresponds to a chunk.
99
101
  */
100
102
  export type DataSourceChunkingStrategy = (typeof DataSourceChunkingStrategy)[keyof typeof DataSourceChunkingStrategy];
103
+ export declare const DataSourceConfluenceSourceConfigurationAuthType: {
104
+ readonly Basic: "BASIC";
105
+ readonly Oauth2ClientCredentials: "OAUTH2_CLIENT_CREDENTIALS";
106
+ };
107
+ /**
108
+ * The supported authentication type to authenticate and connect to your Confluence instance.
109
+ */
110
+ export type DataSourceConfluenceSourceConfigurationAuthType = (typeof DataSourceConfluenceSourceConfigurationAuthType)[keyof typeof DataSourceConfluenceSourceConfigurationAuthType];
111
+ export declare const DataSourceConfluenceSourceConfigurationHostType: {
112
+ readonly Saas: "SAAS";
113
+ };
114
+ /**
115
+ * The supported host type, whether online/cloud or server/on-premises.
116
+ */
117
+ export type DataSourceConfluenceSourceConfigurationHostType = (typeof DataSourceConfluenceSourceConfigurationHostType)[keyof typeof DataSourceConfluenceSourceConfigurationHostType];
118
+ export declare const DataSourceCrawlFilterConfigurationType: {
119
+ readonly Pattern: "PATTERN";
120
+ };
121
+ /**
122
+ * The crawl filter type.
123
+ */
124
+ export type DataSourceCrawlFilterConfigurationType = (typeof DataSourceCrawlFilterConfigurationType)[keyof typeof DataSourceCrawlFilterConfigurationType];
101
125
  export declare const DataSourceDataDeletionPolicy: {
102
126
  readonly Retain: "RETAIN";
103
127
  readonly Delete: "DELETE";
@@ -106,6 +130,34 @@ export declare const DataSourceDataDeletionPolicy: {
106
130
  * The deletion policy for the data source.
107
131
  */
108
132
  export type DataSourceDataDeletionPolicy = (typeof DataSourceDataDeletionPolicy)[keyof typeof DataSourceDataDeletionPolicy];
133
+ export declare const DataSourceParsingStrategy: {
134
+ readonly BedrockFoundationModel: "BEDROCK_FOUNDATION_MODEL";
135
+ };
136
+ /**
137
+ * The parsing strategy for the data source.
138
+ */
139
+ export type DataSourceParsingStrategy = (typeof DataSourceParsingStrategy)[keyof typeof DataSourceParsingStrategy];
140
+ export declare const DataSourceSalesforceSourceConfigurationAuthType: {
141
+ readonly Oauth2ClientCredentials: "OAUTH2_CLIENT_CREDENTIALS";
142
+ };
143
+ /**
144
+ * The supported authentication type to authenticate and connect to your Salesforce instance.
145
+ */
146
+ export type DataSourceSalesforceSourceConfigurationAuthType = (typeof DataSourceSalesforceSourceConfigurationAuthType)[keyof typeof DataSourceSalesforceSourceConfigurationAuthType];
147
+ export declare const DataSourceSharePointSourceConfigurationAuthType: {
148
+ readonly Oauth2ClientCredentials: "OAUTH2_CLIENT_CREDENTIALS";
149
+ };
150
+ /**
151
+ * The supported authentication type to authenticate and connect to your SharePoint site/sites.
152
+ */
153
+ export type DataSourceSharePointSourceConfigurationAuthType = (typeof DataSourceSharePointSourceConfigurationAuthType)[keyof typeof DataSourceSharePointSourceConfigurationAuthType];
154
+ export declare const DataSourceSharePointSourceConfigurationHostType: {
155
+ readonly Online: "ONLINE";
156
+ };
157
+ /**
158
+ * The supported host type, whether online/cloud or server/on-premises.
159
+ */
160
+ export type DataSourceSharePointSourceConfigurationHostType = (typeof DataSourceSharePointSourceConfigurationHostType)[keyof typeof DataSourceSharePointSourceConfigurationHostType];
109
161
  export declare const DataSourceStatus: {
110
162
  readonly Available: "AVAILABLE";
111
163
  readonly Deleting: "DELETING";
@@ -115,13 +167,32 @@ export declare const DataSourceStatus: {
115
167
  * The status of a data source.
116
168
  */
117
169
  export type DataSourceStatus = (typeof DataSourceStatus)[keyof typeof DataSourceStatus];
170
+ export declare const DataSourceTransformationStepToApply: {
171
+ readonly PostChunking: "POST_CHUNKING";
172
+ };
173
+ /**
174
+ * When the service applies the transformation.
175
+ */
176
+ export type DataSourceTransformationStepToApply = (typeof DataSourceTransformationStepToApply)[keyof typeof DataSourceTransformationStepToApply];
118
177
  export declare const DataSourceType: {
119
178
  readonly S3: "S3";
179
+ readonly Confluence: "CONFLUENCE";
180
+ readonly Salesforce: "SALESFORCE";
181
+ readonly Sharepoint: "SHAREPOINT";
182
+ readonly Web: "WEB";
120
183
  };
121
184
  /**
122
185
  * The type of the data source location.
123
186
  */
124
187
  export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType];
188
+ export declare const DataSourceWebScopeType: {
189
+ readonly HostOnly: "HOST_ONLY";
190
+ readonly Subdomains: "SUBDOMAINS";
191
+ };
192
+ /**
193
+ * The scope that a web crawl job will be restricted to.
194
+ */
195
+ export type DataSourceWebScopeType = (typeof DataSourceWebScopeType)[keyof typeof DataSourceWebScopeType];
125
196
  export declare const FlowConnectionType: {
126
197
  readonly Data: "Data";
127
198
  readonly Conditional: "Conditional";
@@ -2,7 +2,7 @@
2
2
  // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.PromptVersionPromptTemplateType = exports.PromptTemplateType = exports.KnowledgeBaseType = exports.KnowledgeBaseStorageType = exports.KnowledgeBaseStatus = exports.GuardrailTopicType = exports.GuardrailStatus = exports.GuardrailSensitiveInformationAction = exports.GuardrailPiiEntityType = exports.GuardrailManagedWordsType = exports.GuardrailFilterStrength = exports.GuardrailContextualGroundingFilterType = exports.GuardrailContentFilterType = exports.FlowVersionPromptTemplateType = exports.FlowVersionFlowStatus = exports.FlowVersionFlowNodeType = exports.FlowVersionFlowNodeIoDataType = exports.FlowVersionFlowConnectionType = exports.FlowStatus = exports.FlowPromptTemplateType = exports.FlowNodeType = exports.FlowNodeIoDataType = exports.FlowConnectionType = exports.DataSourceType = exports.DataSourceStatus = exports.DataSourceDataDeletionPolicy = exports.DataSourceChunkingStrategy = exports.AgentType = exports.AgentStatus = exports.AgentPromptType = exports.AgentPromptState = exports.AgentKnowledgeBaseState = exports.AgentCustomControlMethod = exports.AgentCreationMode = exports.AgentAliasStatus = exports.AgentActionGroupState = exports.AgentActionGroupSignature = void 0;
5
+ exports.PromptVersionPromptTemplateType = exports.PromptTemplateType = exports.KnowledgeBaseType = exports.KnowledgeBaseStorageType = exports.KnowledgeBaseStatus = exports.GuardrailTopicType = exports.GuardrailStatus = exports.GuardrailSensitiveInformationAction = exports.GuardrailPiiEntityType = exports.GuardrailManagedWordsType = exports.GuardrailFilterStrength = exports.GuardrailContextualGroundingFilterType = exports.GuardrailContentFilterType = exports.FlowVersionPromptTemplateType = exports.FlowVersionFlowStatus = exports.FlowVersionFlowNodeType = exports.FlowVersionFlowNodeIoDataType = exports.FlowVersionFlowConnectionType = exports.FlowStatus = exports.FlowPromptTemplateType = exports.FlowNodeType = exports.FlowNodeIoDataType = exports.FlowConnectionType = exports.DataSourceWebScopeType = exports.DataSourceType = exports.DataSourceTransformationStepToApply = exports.DataSourceStatus = exports.DataSourceSharePointSourceConfigurationHostType = exports.DataSourceSharePointSourceConfigurationAuthType = exports.DataSourceSalesforceSourceConfigurationAuthType = exports.DataSourceParsingStrategy = exports.DataSourceDataDeletionPolicy = exports.DataSourceCrawlFilterConfigurationType = exports.DataSourceConfluenceSourceConfigurationHostType = exports.DataSourceConfluenceSourceConfigurationAuthType = exports.DataSourceChunkingStrategy = exports.AgentType = exports.AgentStatus = exports.AgentPromptType = exports.AgentPromptState = exports.AgentKnowledgeBaseState = exports.AgentCustomControlMethod = exports.AgentCreationMode = exports.AgentAliasStatus = exports.AgentActionGroupState = exports.AgentActionGroupSignature = void 0;
6
6
  exports.AgentActionGroupSignature = {
7
7
  AmazonUserInput: "AMAZON.UserInput",
8
8
  };
@@ -58,18 +58,53 @@ exports.AgentType = {
58
58
  exports.DataSourceChunkingStrategy = {
59
59
  FixedSize: "FIXED_SIZE",
60
60
  None: "NONE",
61
+ Hierarchical: "HIERARCHICAL",
62
+ Semantic: "SEMANTIC",
63
+ };
64
+ exports.DataSourceConfluenceSourceConfigurationAuthType = {
65
+ Basic: "BASIC",
66
+ Oauth2ClientCredentials: "OAUTH2_CLIENT_CREDENTIALS",
67
+ };
68
+ exports.DataSourceConfluenceSourceConfigurationHostType = {
69
+ Saas: "SAAS",
70
+ };
71
+ exports.DataSourceCrawlFilterConfigurationType = {
72
+ Pattern: "PATTERN",
61
73
  };
62
74
  exports.DataSourceDataDeletionPolicy = {
63
75
  Retain: "RETAIN",
64
76
  Delete: "DELETE",
65
77
  };
78
+ exports.DataSourceParsingStrategy = {
79
+ BedrockFoundationModel: "BEDROCK_FOUNDATION_MODEL",
80
+ };
81
+ exports.DataSourceSalesforceSourceConfigurationAuthType = {
82
+ Oauth2ClientCredentials: "OAUTH2_CLIENT_CREDENTIALS",
83
+ };
84
+ exports.DataSourceSharePointSourceConfigurationAuthType = {
85
+ Oauth2ClientCredentials: "OAUTH2_CLIENT_CREDENTIALS",
86
+ };
87
+ exports.DataSourceSharePointSourceConfigurationHostType = {
88
+ Online: "ONLINE",
89
+ };
66
90
  exports.DataSourceStatus = {
67
91
  Available: "AVAILABLE",
68
92
  Deleting: "DELETING",
69
93
  DeleteUnsuccessful: "DELETE_UNSUCCESSFUL",
70
94
  };
95
+ exports.DataSourceTransformationStepToApply = {
96
+ PostChunking: "POST_CHUNKING",
97
+ };
71
98
  exports.DataSourceType = {
72
99
  S3: "S3",
100
+ Confluence: "CONFLUENCE",
101
+ Salesforce: "SALESFORCE",
102
+ Sharepoint: "SHAREPOINT",
103
+ Web: "WEB",
104
+ };
105
+ exports.DataSourceWebScopeType = {
106
+ HostOnly: "HOST_ONLY",
107
+ Subdomains: "SUBDOMAINS",
73
108
  };
74
109
  exports.FlowConnectionType = {
75
110
  Data: "Data",
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/bedrock/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,yBAAyB,GAAG;IACrC,eAAe,EAAE,kBAAkB;CAC7B,CAAC;AAOE,QAAA,qBAAqB,GAAG;IACjC,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,gBAAgB,GAAG;IAC5B,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,iBAAiB,GAAG;IAC7B,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;CAClB,CAAC;AAOE,QAAA,wBAAwB,GAAG;IACpC,aAAa,EAAE,gBAAgB;CACzB,CAAC;AAOE,QAAA,uBAAuB,GAAG;IACnC,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,gBAAgB,GAAG;IAC5B,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,eAAe,GAAG;IAC3B,aAAa,EAAE,gBAAgB;IAC/B,aAAa,EAAE,eAAe;IAC9B,cAAc,EAAE,iBAAiB;IACjC,+BAA+B,EAAE,oCAAoC;CAC/D,CAAC;AAOE,QAAA,WAAW,GAAG;IACvB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,cAAc;IAC3B,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,SAAS,GAAG;IACrB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;CACR,CAAC;AAOE,QAAA,0BAA0B,GAAG;IACtC,SAAS,EAAE,YAAY;IACvB,IAAI,EAAE,MAAM;CACN,CAAC;AAOE,QAAA,4BAA4B,GAAG;IACxC,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,gBAAgB,GAAG;IAC5B,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;IACpB,kBAAkB,EAAE,qBAAqB;CACnC,CAAC;AAOE,QAAA,cAAc,GAAG;IAC1B,EAAE,EAAE,IAAI;CACF,CAAC;AAOE,QAAA,kBAAkB,GAAG;IAC9B,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;CACpB,CAAC;AAOE,QAAA,kBAAkB,GAAG;IAC9B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACR,CAAC;AAOE,QAAA,YAAY,GAAG;IACxB,SAAS,EAAE,OAAO;IAClB,UAAU,EAAE,QAAQ;IACpB,aAAa,EAAE,eAAe;IAC9B,SAAS,EAAE,WAAW;IACtB,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,cAAc,EAAE,gBAAgB;CAC1B,CAAC;AAOE,QAAA,sBAAsB,GAAG;IAClC,IAAI,EAAE,MAAM;CACN,CAAC;AAOE,QAAA,UAAU,GAAG;IACtB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,aAAa;CACpB,CAAC;AAOE,QAAA,6BAA6B,GAAG;IACzC,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;CACpB,CAAC;AAOE,QAAA,6BAA6B,GAAG;IACzC,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACR,CAAC;AAOE,QAAA,uBAAuB,GAAG;IACnC,SAAS,EAAE,OAAO;IAClB,UAAU,EAAE,QAAQ;IACpB,aAAa,EAAE,eAAe;IAC9B,SAAS,EAAE,WAAW;IACtB,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,cAAc,EAAE,gBAAgB;CAC1B,CAAC;AAOE,QAAA,qBAAqB,GAAG;IACjC,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,aAAa;CACpB,CAAC;AAOE,QAAA,6BAA6B,GAAG;IACzC,IAAI,EAAE,MAAM;CACN,CAAC;AAOE,QAAA,0BAA0B,GAAG;IACtC,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,YAAY,EAAE,eAAe;CACvB,CAAC;AAOE,QAAA,sCAAsC,GAAG;IAClD,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;CAChB,CAAC;AAOE,QAAA,uBAAuB,GAAG;IACnC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,MAAM;CACN,CAAC;AAOE,QAAA,yBAAyB,GAAG;IACrC,SAAS,EAAE,WAAW;CAChB,CAAC;AAOE,QAAA,sBAAsB,GAAG;IAClC,OAAO,EAAE,SAAS;IAClB,GAAG,EAAE,KAAK;IACV,YAAY,EAAE,gBAAgB;IAC9B,YAAY,EAAE,gBAAgB;IAC9B,cAAc,EAAE,kBAAkB;IAClC,uBAAuB,EAAE,4BAA4B;IACrD,kBAAkB,EAAE,uBAAuB;IAC3C,qBAAqB,EAAE,0BAA0B;IACjD,qBAAqB,EAAE,0BAA0B;IACjD,QAAQ,EAAE,WAAW;IACrB,KAAK,EAAE,OAAO;IACd,8BAA8B,EAAE,mCAAmC;IACnE,SAAS,EAAE,YAAY;IACvB,YAAY,EAAE,eAAe;IAC7B,UAAU,EAAE,aAAa;IACzB,IAAI,EAAE,MAAM;IACZ,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,GAAG,EAAE,KAAK;IACV,SAAS,EAAE,YAAY;IACvB,6BAA6B,EAAE,mCAAmC;IAClE,yBAAyB,EAAE,8BAA8B;IACzD,+BAA+B,EAAE,qCAAqC;IACtE,GAAG,EAAE,KAAK;IACV,QAAQ,EAAE,UAAU;IACpB,mBAAmB,EAAE,wBAAwB;IAC7C,mBAAmB,EAAE,wBAAwB;IAC7C,mCAAmC,EAAE,yCAAyC;IAC9E,gBAAgB,EAAE,oBAAoB;IACtC,sBAAsB,EAAE,2BAA2B;IACnD,2BAA2B,EAAE,+BAA+B;CACtD,CAAC;AAOE,QAAA,mCAAmC,GAAG;IAC/C,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,WAAW;CAChB,CAAC;AAOE,QAAA,eAAe,GAAG;IAC3B,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,UAAU,EAAE,YAAY;IACxB,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,kBAAkB,GAAG;IAC9B,IAAI,EAAE,MAAM;CACN,CAAC;AAOE,QAAA,mBAAmB,GAAG;IAC/B,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,kBAAkB,EAAE,qBAAqB;CACnC,CAAC;AAOE,QAAA,wBAAwB,GAAG;IACpC,oBAAoB,EAAE,uBAAuB;IAC7C,QAAQ,EAAE,UAAU;IACpB,GAAG,EAAE,KAAK;IACV,YAAY,EAAE,gBAAgB;CACxB,CAAC;AAOE,QAAA,iBAAiB,GAAG;IAC7B,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,kBAAkB,GAAG;IAC9B,IAAI,EAAE,MAAM;CACN,CAAC;AAOE,QAAA,+BAA+B,GAAG;IAC3C,IAAI,EAAE,MAAM;CACN,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/bedrock/index.ts"],"names":[],"mappings":"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"}