@aws-sdk/client-wafv2 3.1068.0 → 3.1070.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.
- package/README.md +28 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +338 -225
- package/dist-cjs/models/WAFV2ServiceException.js +4 -8
- package/dist-cjs/models/errors.js +41 -64
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +970 -492
- package/dist-es/WAFV2.js +8 -0
- package/dist-es/commands/GetRevenueStatisticsCommand.js +16 -0
- package/dist-es/commands/GetRevenueStatisticsSummaryCommand.js +16 -0
- package/dist-es/commands/GetRevenueStatisticsTimeSeriesCommand.js +16 -0
- package/dist-es/commands/ListSettlementRecordsCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +65 -0
- package/dist-es/schemas/schemas_0.js +216 -21
- package/dist-types/WAFV2.d.ts +28 -0
- package/dist-types/WAFV2Client.d.ts +6 -2
- package/dist-types/commands/CheckCapacityCommand.d.ts +12 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +29 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +29 -0
- package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +3 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetRevenueStatisticsCommand.d.ts +150 -0
- package/dist-types/commands/GetRevenueStatisticsSummaryCommand.d.ts +130 -0
- package/dist-types/commands/GetRevenueStatisticsTimeSeriesCommand.d.ts +139 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +29 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +29 -0
- package/dist-types/commands/GetWebACLForResourceCommand.d.ts +29 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListSettlementRecordsCommand.d.ts +148 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +29 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +29 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +161 -0
- package/dist-types/models/models_0.d.ts +843 -114
- package/dist-types/schemas/schemas_0.d.ts +23 -0
- package/dist-types/ts3.4/WAFV2.d.ts +68 -0
- package/dist-types/ts3.4/WAFV2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetRevenueStatisticsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetRevenueStatisticsSummaryCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetRevenueStatisticsTimeSeriesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListSettlementRecordsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +83 -0
- package/dist-types/ts3.4/models/models_0.d.ts +154 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/package.json +8 -8
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ActionValue,
|
|
3
3
|
AssociatedResourceType,
|
|
4
|
+
BlockchainChain,
|
|
4
5
|
BodyParsingFallbackBehavior,
|
|
5
6
|
ComparisonOperator,
|
|
6
7
|
CountryCode,
|
|
8
|
+
CryptoCurrency,
|
|
9
|
+
Currency,
|
|
10
|
+
CurrencyMode,
|
|
7
11
|
DataProtectionAction,
|
|
8
12
|
FailureReason,
|
|
9
13
|
FallbackBehavior,
|
|
@@ -11,7 +15,9 @@ import {
|
|
|
11
15
|
FilterBehavior,
|
|
12
16
|
FilterRequirement,
|
|
13
17
|
ForwardedIPPosition,
|
|
18
|
+
GroupByType,
|
|
14
19
|
InspectionLevel,
|
|
20
|
+
IntervalType,
|
|
15
21
|
IPAddressVersion,
|
|
16
22
|
JsonMatchScope,
|
|
17
23
|
LabelMatchScope,
|
|
@@ -23,14 +29,20 @@ import {
|
|
|
23
29
|
PayloadType,
|
|
24
30
|
Platform,
|
|
25
31
|
PositionalConstraint,
|
|
32
|
+
RankingSortBy,
|
|
33
|
+
RankingStatisticType,
|
|
26
34
|
RateBasedStatementAggregateKeyType,
|
|
27
35
|
ResourceType,
|
|
28
36
|
ResponseContentType,
|
|
29
37
|
Scope,
|
|
30
38
|
SensitivityLevel,
|
|
31
39
|
SensitivityToAct,
|
|
40
|
+
SettlementSortBy,
|
|
41
|
+
SettlementStatus,
|
|
32
42
|
SizeInspectionLimit,
|
|
43
|
+
SortOrder,
|
|
33
44
|
TextTransformationType,
|
|
45
|
+
TimeSeriesStatisticType,
|
|
34
46
|
UsageOfAction,
|
|
35
47
|
} from "./enums";
|
|
36
48
|
export interface ActionCondition {
|
|
@@ -269,12 +281,16 @@ export interface ChallengeAction {
|
|
|
269
281
|
export interface CountAction {
|
|
270
282
|
CustomRequestHandling?: CustomRequestHandling | undefined;
|
|
271
283
|
}
|
|
284
|
+
export interface MonetizeAction {
|
|
285
|
+
PriceMultiplier?: string | undefined;
|
|
286
|
+
}
|
|
272
287
|
export interface RuleAction {
|
|
273
288
|
Block?: BlockAction | undefined;
|
|
274
289
|
Allow?: AllowAction | undefined;
|
|
275
290
|
Count?: CountAction | undefined;
|
|
276
291
|
Captcha?: CaptchaAction | undefined;
|
|
277
292
|
Challenge?: ChallengeAction | undefined;
|
|
293
|
+
Monetize?: MonetizeAction | undefined;
|
|
278
294
|
}
|
|
279
295
|
export interface RuleActionOverride {
|
|
280
296
|
Name: string | undefined;
|
|
@@ -462,6 +478,22 @@ export interface CustomResponseBody {
|
|
|
462
478
|
ContentType: ResponseContentType | undefined;
|
|
463
479
|
Content: string | undefined;
|
|
464
480
|
}
|
|
481
|
+
export interface Price {
|
|
482
|
+
Amount: string | undefined;
|
|
483
|
+
Currency: CryptoCurrency | undefined;
|
|
484
|
+
}
|
|
485
|
+
export interface PaymentNetwork {
|
|
486
|
+
Chain: BlockchainChain | undefined;
|
|
487
|
+
WalletAddress: string | undefined;
|
|
488
|
+
Prices: Price[] | undefined;
|
|
489
|
+
}
|
|
490
|
+
export interface CryptoConfig {
|
|
491
|
+
PaymentNetworks: PaymentNetwork[] | undefined;
|
|
492
|
+
}
|
|
493
|
+
export interface MonetizationConfig {
|
|
494
|
+
CryptoConfig?: CryptoConfig | undefined;
|
|
495
|
+
CurrencyMode?: CurrencyMode | undefined;
|
|
496
|
+
}
|
|
465
497
|
export interface RuleGroupSummary {
|
|
466
498
|
Name?: string | undefined;
|
|
467
499
|
Id?: string | undefined;
|
|
@@ -743,16 +775,95 @@ export interface GetRegexPatternSetResponse {
|
|
|
743
775
|
RegexPatternSet?: RegexPatternSet | undefined;
|
|
744
776
|
LockToken?: string | undefined;
|
|
745
777
|
}
|
|
778
|
+
export interface MonetizationFilter {
|
|
779
|
+
Name: string | undefined;
|
|
780
|
+
Values: string[] | undefined;
|
|
781
|
+
}
|
|
782
|
+
export interface TimeWindow {
|
|
783
|
+
StartTime: Date | undefined;
|
|
784
|
+
EndTime: Date | undefined;
|
|
785
|
+
}
|
|
786
|
+
export interface GetRevenueStatisticsRequest {
|
|
787
|
+
StatisticType: RankingStatisticType | undefined;
|
|
788
|
+
TimeWindow: TimeWindow | undefined;
|
|
789
|
+
Scope: Scope | undefined;
|
|
790
|
+
Currency: Currency | undefined;
|
|
791
|
+
GroupBy?: GroupByType | undefined;
|
|
792
|
+
Filters?: MonetizationFilter[] | undefined;
|
|
793
|
+
NextMarker?: string | undefined;
|
|
794
|
+
Limit?: number | undefined;
|
|
795
|
+
SortBy?: RankingSortBy | undefined;
|
|
796
|
+
SortOrder?: SortOrder | undefined;
|
|
797
|
+
}
|
|
798
|
+
export interface RevenuePathStatistics {
|
|
799
|
+
Path: string | undefined;
|
|
800
|
+
Percentage: number | undefined;
|
|
801
|
+
Amount: string | undefined;
|
|
802
|
+
RequestCount: number | undefined;
|
|
803
|
+
}
|
|
804
|
+
export interface SourceStatistics {
|
|
805
|
+
SourceName: string | undefined;
|
|
806
|
+
Percentage: number | undefined;
|
|
807
|
+
Amount: string | undefined;
|
|
808
|
+
RequestCount: number | undefined;
|
|
809
|
+
SourceCategory?: string | undefined;
|
|
810
|
+
Intent?: string | undefined;
|
|
811
|
+
Organization?: string | undefined;
|
|
812
|
+
Verified?: boolean | undefined;
|
|
813
|
+
GroupByValue?: string | undefined;
|
|
814
|
+
}
|
|
815
|
+
export interface GetRevenueStatisticsResponse {
|
|
816
|
+
SourceStatistics?: SourceStatistics[] | undefined;
|
|
817
|
+
RevenuePathStatistics?: RevenuePathStatistics[] | undefined;
|
|
818
|
+
NextMarker?: string | undefined;
|
|
819
|
+
}
|
|
820
|
+
export interface GetRevenueStatisticsSummaryRequest {
|
|
821
|
+
TimeWindow: TimeWindow | undefined;
|
|
822
|
+
Scope: Scope | undefined;
|
|
823
|
+
Currency: Currency | undefined;
|
|
824
|
+
Filters?: MonetizationFilter[] | undefined;
|
|
825
|
+
}
|
|
826
|
+
export interface RevenueBreakdown {
|
|
827
|
+
TotalAmount?: string | undefined;
|
|
828
|
+
VerifiedAmount?: string | undefined;
|
|
829
|
+
UnverifiedAmount?: string | undefined;
|
|
830
|
+
Currency?: Currency | undefined;
|
|
831
|
+
TotalSettled?: number | undefined;
|
|
832
|
+
TotalMonetizeServed?: number | undefined;
|
|
833
|
+
}
|
|
834
|
+
export interface GetRevenueStatisticsSummaryResponse {
|
|
835
|
+
RevenueBreakdown?: RevenueBreakdown | undefined;
|
|
836
|
+
}
|
|
837
|
+
export interface GetRevenueStatisticsTimeSeriesRequest {
|
|
838
|
+
StatisticType: TimeSeriesStatisticType | undefined;
|
|
839
|
+
TimeWindow: TimeWindow | undefined;
|
|
840
|
+
Scope: Scope | undefined;
|
|
841
|
+
Interval: IntervalType | undefined;
|
|
842
|
+
Currency: Currency | undefined;
|
|
843
|
+
GroupBy?: GroupByType | undefined;
|
|
844
|
+
Filters?: MonetizationFilter[] | undefined;
|
|
845
|
+
Limit?: number | undefined;
|
|
846
|
+
NextMarker?: string | undefined;
|
|
847
|
+
}
|
|
848
|
+
export interface DataPointEntry {
|
|
849
|
+
Date?: Date | undefined;
|
|
850
|
+
MonetizeServedCount?: number | undefined;
|
|
851
|
+
SettledCount?: number | undefined;
|
|
852
|
+
TotalAmount?: string | undefined;
|
|
853
|
+
Category?: string | undefined;
|
|
854
|
+
Intent?: string | undefined;
|
|
855
|
+
GroupByValue?: string | undefined;
|
|
856
|
+
}
|
|
857
|
+
export interface GetRevenueStatisticsTimeSeriesResponse {
|
|
858
|
+
DataPoints?: DataPointEntry[] | undefined;
|
|
859
|
+
NextMarker?: string | undefined;
|
|
860
|
+
}
|
|
746
861
|
export interface GetRuleGroupRequest {
|
|
747
862
|
Name?: string | undefined;
|
|
748
863
|
Scope?: Scope | undefined;
|
|
749
864
|
Id?: string | undefined;
|
|
750
865
|
ARN?: string | undefined;
|
|
751
866
|
}
|
|
752
|
-
export interface TimeWindow {
|
|
753
|
-
StartTime: Date | undefined;
|
|
754
|
-
EndTime: Date | undefined;
|
|
755
|
-
}
|
|
756
867
|
export interface GetSampledRequestsRequest {
|
|
757
868
|
WebAclArn: string | undefined;
|
|
758
869
|
RuleMetricName: string | undefined;
|
|
@@ -959,6 +1070,39 @@ export interface ListRuleGroupsResponse {
|
|
|
959
1070
|
NextMarker?: string | undefined;
|
|
960
1071
|
RuleGroups?: RuleGroupSummary[] | undefined;
|
|
961
1072
|
}
|
|
1073
|
+
export interface ListSettlementRecordsRequest {
|
|
1074
|
+
TimeWindow: TimeWindow | undefined;
|
|
1075
|
+
Scope: Scope | undefined;
|
|
1076
|
+
Currency: Currency | undefined;
|
|
1077
|
+
Filters?: MonetizationFilter[] | undefined;
|
|
1078
|
+
SortBy?: SettlementSortBy | undefined;
|
|
1079
|
+
SortOrder?: SortOrder | undefined;
|
|
1080
|
+
Limit?: number | undefined;
|
|
1081
|
+
NextMarker?: string | undefined;
|
|
1082
|
+
}
|
|
1083
|
+
export interface SettlementRecord {
|
|
1084
|
+
Timestamp: Date | undefined;
|
|
1085
|
+
PayerAddress?: string | undefined;
|
|
1086
|
+
WalletAddress?: string | undefined;
|
|
1087
|
+
Status: SettlementStatus | undefined;
|
|
1088
|
+
Amount: string | undefined;
|
|
1089
|
+
Currency?: Currency | undefined;
|
|
1090
|
+
Network?: string | undefined;
|
|
1091
|
+
TransactionId?: string | undefined;
|
|
1092
|
+
RequestId?: string | undefined;
|
|
1093
|
+
SourceName?: string | undefined;
|
|
1094
|
+
Organization?: string | undefined;
|
|
1095
|
+
SourceCategory?: string | undefined;
|
|
1096
|
+
Intent?: string | undefined;
|
|
1097
|
+
Verified?: boolean | undefined;
|
|
1098
|
+
ContentPath?: string | undefined;
|
|
1099
|
+
WebAclArn?: string | undefined;
|
|
1100
|
+
RequestTimestamp?: Date | undefined;
|
|
1101
|
+
}
|
|
1102
|
+
export interface ListSettlementRecordsResponse {
|
|
1103
|
+
Settlements?: SettlementRecord[] | undefined;
|
|
1104
|
+
NextMarker?: string | undefined;
|
|
1105
|
+
}
|
|
962
1106
|
export interface ListTagsForResourceRequest {
|
|
963
1107
|
NextMarker?: string | undefined;
|
|
964
1108
|
Limit?: number | undefined;
|
|
@@ -1139,6 +1283,7 @@ export interface CreateRuleGroupRequest {
|
|
|
1139
1283
|
VisibilityConfig: VisibilityConfig | undefined;
|
|
1140
1284
|
Tags?: Tag[] | undefined;
|
|
1141
1285
|
CustomResponseBodies?: Record<string, CustomResponseBody> | undefined;
|
|
1286
|
+
MonetizationConfig?: MonetizationConfig | undefined;
|
|
1142
1287
|
}
|
|
1143
1288
|
export interface CreateWebACLRequest {
|
|
1144
1289
|
Name: string | undefined;
|
|
@@ -1156,6 +1301,7 @@ export interface CreateWebACLRequest {
|
|
|
1156
1301
|
AssociationConfig?: AssociationConfig | undefined;
|
|
1157
1302
|
OnSourceDDoSProtectionConfig?: OnSourceDDoSProtectionConfig | undefined;
|
|
1158
1303
|
ApplicationConfig?: ApplicationConfig | undefined;
|
|
1304
|
+
MonetizationConfig?: MonetizationConfig | undefined;
|
|
1159
1305
|
}
|
|
1160
1306
|
export interface RuleGroup {
|
|
1161
1307
|
Name: string | undefined;
|
|
@@ -1169,6 +1315,7 @@ export interface RuleGroup {
|
|
|
1169
1315
|
CustomResponseBodies?: Record<string, CustomResponseBody> | undefined;
|
|
1170
1316
|
AvailableLabels?: LabelSummary[] | undefined;
|
|
1171
1317
|
ConsumedLabels?: LabelSummary[] | undefined;
|
|
1318
|
+
MonetizationConfig?: MonetizationConfig | undefined;
|
|
1172
1319
|
}
|
|
1173
1320
|
export interface UpdateRuleGroupRequest {
|
|
1174
1321
|
Name: string | undefined;
|
|
@@ -1179,6 +1326,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
1179
1326
|
VisibilityConfig: VisibilityConfig | undefined;
|
|
1180
1327
|
LockToken: string | undefined;
|
|
1181
1328
|
CustomResponseBodies?: Record<string, CustomResponseBody> | undefined;
|
|
1329
|
+
MonetizationConfig?: MonetizationConfig | undefined;
|
|
1182
1330
|
}
|
|
1183
1331
|
export interface UpdateWebACLRequest {
|
|
1184
1332
|
Name: string | undefined;
|
|
@@ -1197,6 +1345,7 @@ export interface UpdateWebACLRequest {
|
|
|
1197
1345
|
AssociationConfig?: AssociationConfig | undefined;
|
|
1198
1346
|
OnSourceDDoSProtectionConfig?: OnSourceDDoSProtectionConfig | undefined;
|
|
1199
1347
|
ApplicationConfig?: ApplicationConfig | undefined;
|
|
1348
|
+
MonetizationConfig?: MonetizationConfig | undefined;
|
|
1200
1349
|
}
|
|
1201
1350
|
export interface GetRuleGroupResponse {
|
|
1202
1351
|
RuleGroup?: RuleGroup | undefined;
|
|
@@ -1224,6 +1373,7 @@ export interface WebACL {
|
|
|
1224
1373
|
RetrofittedByFirewallManager?: boolean | undefined;
|
|
1225
1374
|
OnSourceDDoSProtectionConfig?: OnSourceDDoSProtectionConfig | undefined;
|
|
1226
1375
|
ApplicationConfig?: ApplicationConfig | undefined;
|
|
1376
|
+
MonetizationConfig?: MonetizationConfig | undefined;
|
|
1227
1377
|
}
|
|
1228
1378
|
export interface GetWebACLForResourceResponse {
|
|
1229
1379
|
WebACL?: WebACL | undefined;
|
|
@@ -71,10 +71,12 @@ export declare var CreateRuleGroupRequest$: StaticStructureSchema;
|
|
|
71
71
|
export declare var CreateRuleGroupResponse$: StaticStructureSchema;
|
|
72
72
|
export declare var CreateWebACLRequest$: StaticStructureSchema;
|
|
73
73
|
export declare var CreateWebACLResponse$: StaticStructureSchema;
|
|
74
|
+
export declare var CryptoConfig$: StaticStructureSchema;
|
|
74
75
|
export declare var CustomHTTPHeader$: StaticStructureSchema;
|
|
75
76
|
export declare var CustomRequestHandling$: StaticStructureSchema;
|
|
76
77
|
export declare var CustomResponse$: StaticStructureSchema;
|
|
77
78
|
export declare var CustomResponseBody$: StaticStructureSchema;
|
|
79
|
+
export declare var DataPointEntry$: StaticStructureSchema;
|
|
78
80
|
export declare var DataProtection$: StaticStructureSchema;
|
|
79
81
|
export declare var DataProtectionConfig$: StaticStructureSchema;
|
|
80
82
|
export declare var DefaultAction$: StaticStructureSchema;
|
|
@@ -131,6 +133,12 @@ export declare var GetRateBasedStatementManagedKeysRequest$: StaticStructureSche
|
|
|
131
133
|
export declare var GetRateBasedStatementManagedKeysResponse$: StaticStructureSchema;
|
|
132
134
|
export declare var GetRegexPatternSetRequest$: StaticStructureSchema;
|
|
133
135
|
export declare var GetRegexPatternSetResponse$: StaticStructureSchema;
|
|
136
|
+
export declare var GetRevenueStatisticsRequest$: StaticStructureSchema;
|
|
137
|
+
export declare var GetRevenueStatisticsResponse$: StaticStructureSchema;
|
|
138
|
+
export declare var GetRevenueStatisticsSummaryRequest$: StaticStructureSchema;
|
|
139
|
+
export declare var GetRevenueStatisticsSummaryResponse$: StaticStructureSchema;
|
|
140
|
+
export declare var GetRevenueStatisticsTimeSeriesRequest$: StaticStructureSchema;
|
|
141
|
+
export declare var GetRevenueStatisticsTimeSeriesResponse$: StaticStructureSchema;
|
|
134
142
|
export declare var GetRuleGroupRequest$: StaticStructureSchema;
|
|
135
143
|
export declare var GetRuleGroupResponse$: StaticStructureSchema;
|
|
136
144
|
export declare var GetSampledRequestsRequest$: StaticStructureSchema;
|
|
@@ -179,6 +187,8 @@ export declare var ListResourcesForWebACLRequest$: StaticStructureSchema;
|
|
|
179
187
|
export declare var ListResourcesForWebACLResponse$: StaticStructureSchema;
|
|
180
188
|
export declare var ListRuleGroupsRequest$: StaticStructureSchema;
|
|
181
189
|
export declare var ListRuleGroupsResponse$: StaticStructureSchema;
|
|
190
|
+
export declare var ListSettlementRecordsRequest$: StaticStructureSchema;
|
|
191
|
+
export declare var ListSettlementRecordsResponse$: StaticStructureSchema;
|
|
182
192
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
183
193
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
184
194
|
export declare var ListWebACLsRequest$: StaticStructureSchema;
|
|
@@ -195,6 +205,9 @@ export declare var ManagedRuleSetSummary$: StaticStructureSchema;
|
|
|
195
205
|
export declare var ManagedRuleSetVersion$: StaticStructureSchema;
|
|
196
206
|
export declare var Method$: StaticStructureSchema;
|
|
197
207
|
export declare var MobileSdkRelease$: StaticStructureSchema;
|
|
208
|
+
export declare var MonetizationConfig$: StaticStructureSchema;
|
|
209
|
+
export declare var MonetizationFilter$: StaticStructureSchema;
|
|
210
|
+
export declare var MonetizeAction$: StaticStructureSchema;
|
|
198
211
|
export declare var NoneAction$: StaticStructureSchema;
|
|
199
212
|
export declare var NotStatement$: StaticStructureSchema;
|
|
200
213
|
export declare var OnSourceDDoSProtectionConfig$: StaticStructureSchema;
|
|
@@ -202,7 +215,9 @@ export declare var OrStatement$: StaticStructureSchema;
|
|
|
202
215
|
export declare var OverrideAction$: StaticStructureSchema;
|
|
203
216
|
export declare var PasswordField$: StaticStructureSchema;
|
|
204
217
|
export declare var PathStatistics$: StaticStructureSchema;
|
|
218
|
+
export declare var PaymentNetwork$: StaticStructureSchema;
|
|
205
219
|
export declare var PhoneNumberField$: StaticStructureSchema;
|
|
220
|
+
export declare var Price$: StaticStructureSchema;
|
|
206
221
|
export declare var PutLoggingConfigurationRequest$: StaticStructureSchema;
|
|
207
222
|
export declare var PutLoggingConfigurationResponse$: StaticStructureSchema;
|
|
208
223
|
export declare var PutManagedRuleSetVersionsRequest$: StaticStructureSchema;
|
|
@@ -239,6 +254,8 @@ export declare var ResponseInspectionBodyContains$: StaticStructureSchema;
|
|
|
239
254
|
export declare var ResponseInspectionHeader$: StaticStructureSchema;
|
|
240
255
|
export declare var ResponseInspectionJson$: StaticStructureSchema;
|
|
241
256
|
export declare var ResponseInspectionStatusCode$: StaticStructureSchema;
|
|
257
|
+
export declare var RevenueBreakdown$: StaticStructureSchema;
|
|
258
|
+
export declare var RevenuePathStatistics$: StaticStructureSchema;
|
|
242
259
|
export declare var Rule$: StaticStructureSchema;
|
|
243
260
|
export declare var RuleAction$: StaticStructureSchema;
|
|
244
261
|
export declare var RuleActionOverride$: StaticStructureSchema;
|
|
@@ -247,9 +264,11 @@ export declare var RuleGroupReferenceStatement$: StaticStructureSchema;
|
|
|
247
264
|
export declare var RuleGroupSummary$: StaticStructureSchema;
|
|
248
265
|
export declare var RuleSummary$: StaticStructureSchema;
|
|
249
266
|
export declare var SampledHTTPRequest$: StaticStructureSchema;
|
|
267
|
+
export declare var SettlementRecord$: StaticStructureSchema;
|
|
250
268
|
export declare var SingleHeader$: StaticStructureSchema;
|
|
251
269
|
export declare var SingleQueryArgument$: StaticStructureSchema;
|
|
252
270
|
export declare var SizeConstraintStatement$: StaticStructureSchema;
|
|
271
|
+
export declare var SourceStatistics$: StaticStructureSchema;
|
|
253
272
|
export declare var SqliMatchStatement$: StaticStructureSchema;
|
|
254
273
|
export declare var Statement$: StaticStructureSchema;
|
|
255
274
|
export declare var Tag$: StaticStructureSchema;
|
|
@@ -306,6 +325,9 @@ export declare var GetMobileSdkRelease$: StaticOperationSchema;
|
|
|
306
325
|
export declare var GetPermissionPolicy$: StaticOperationSchema;
|
|
307
326
|
export declare var GetRateBasedStatementManagedKeys$: StaticOperationSchema;
|
|
308
327
|
export declare var GetRegexPatternSet$: StaticOperationSchema;
|
|
328
|
+
export declare var GetRevenueStatistics$: StaticOperationSchema;
|
|
329
|
+
export declare var GetRevenueStatisticsSummary$: StaticOperationSchema;
|
|
330
|
+
export declare var GetRevenueStatisticsTimeSeries$: StaticOperationSchema;
|
|
309
331
|
export declare var GetRuleGroup$: StaticOperationSchema;
|
|
310
332
|
export declare var GetSampledRequests$: StaticOperationSchema;
|
|
311
333
|
export declare var GetTopPathStatisticsByTraffic$: StaticOperationSchema;
|
|
@@ -321,6 +343,7 @@ export declare var ListMobileSdkReleases$: StaticOperationSchema;
|
|
|
321
343
|
export declare var ListRegexPatternSets$: StaticOperationSchema;
|
|
322
344
|
export declare var ListResourcesForWebACL$: StaticOperationSchema;
|
|
323
345
|
export declare var ListRuleGroups$: StaticOperationSchema;
|
|
346
|
+
export declare var ListSettlementRecords$: StaticOperationSchema;
|
|
324
347
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
325
348
|
export declare var ListWebACLs$: StaticOperationSchema;
|
|
326
349
|
export declare var PutLoggingConfiguration$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wafv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wafv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1070.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.21",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
26
|
+
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|