@aws-sdk/client-freetier 3.1077.0 → 3.1079.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/dist-cjs/index.js +13 -53
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/GetAccountActivityCommand.js +2 -14
- package/dist-es/commands/GetAccountPlanStateCommand.js +2 -14
- package/dist-es/commands/GetFreeTierUsageCommand.js +2 -14
- package/dist-es/commands/ListAccountActivitiesCommand.js +2 -14
- package/dist-es/commands/UpgradeAccountPlanCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/GetAccountActivityCommand.d.ts +3 -8
- package/dist-types/commands/GetAccountPlanStateCommand.d.ts +3 -8
- package/dist-types/commands/GetFreeTierUsageCommand.d.ts +3 -8
- package/dist-types/commands/ListAccountActivitiesCommand.d.ts +3 -8
- package/dist-types/commands/UpgradeAccountPlanCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetAccountActivityCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAccountPlanStateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetFreeTierUsageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAccountActivitiesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpgradeAccountPlanCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -66,7 +67,7 @@ const commonParams = {
|
|
|
66
67
|
Region: { type: "builtInParams", name: "region" },
|
|
67
68
|
};
|
|
68
69
|
|
|
69
|
-
var version = "3.
|
|
70
|
+
var version = "3.1078.0";
|
|
70
71
|
var packageInfo = {
|
|
71
72
|
version: version};
|
|
72
73
|
|
|
@@ -561,64 +562,23 @@ class FreeTierClient extends Client {
|
|
|
561
562
|
}
|
|
562
563
|
}
|
|
563
564
|
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
})
|
|
570
|
-
.s("AWSFreeTierService", "GetAccountActivity", {})
|
|
571
|
-
.n("FreeTierClient", "GetAccountActivityCommand")
|
|
572
|
-
.sc(GetAccountActivity$)
|
|
573
|
-
.build() {
|
|
565
|
+
const command = makeBuilder(commonParams, "AWSFreeTierService", "FreeTierClient", getEndpointPlugin);
|
|
566
|
+
const _ep0 = {};
|
|
567
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
568
|
+
|
|
569
|
+
class GetAccountActivityCommand extends command(_ep0, _mw0, "GetAccountActivity", GetAccountActivity$) {
|
|
574
570
|
}
|
|
575
571
|
|
|
576
|
-
class GetAccountPlanStateCommand extends
|
|
577
|
-
.classBuilder()
|
|
578
|
-
.ep(commonParams)
|
|
579
|
-
.m(function (Command, cs, config, o) {
|
|
580
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
581
|
-
})
|
|
582
|
-
.s("AWSFreeTierService", "GetAccountPlanState", {})
|
|
583
|
-
.n("FreeTierClient", "GetAccountPlanStateCommand")
|
|
584
|
-
.sc(GetAccountPlanState$)
|
|
585
|
-
.build() {
|
|
572
|
+
class GetAccountPlanStateCommand extends command(_ep0, _mw0, "GetAccountPlanState", GetAccountPlanState$) {
|
|
586
573
|
}
|
|
587
574
|
|
|
588
|
-
class GetFreeTierUsageCommand extends
|
|
589
|
-
.classBuilder()
|
|
590
|
-
.ep(commonParams)
|
|
591
|
-
.m(function (Command, cs, config, o) {
|
|
592
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
593
|
-
})
|
|
594
|
-
.s("AWSFreeTierService", "GetFreeTierUsage", {})
|
|
595
|
-
.n("FreeTierClient", "GetFreeTierUsageCommand")
|
|
596
|
-
.sc(GetFreeTierUsage$)
|
|
597
|
-
.build() {
|
|
575
|
+
class GetFreeTierUsageCommand extends command(_ep0, _mw0, "GetFreeTierUsage", GetFreeTierUsage$) {
|
|
598
576
|
}
|
|
599
577
|
|
|
600
|
-
class ListAccountActivitiesCommand extends
|
|
601
|
-
.classBuilder()
|
|
602
|
-
.ep(commonParams)
|
|
603
|
-
.m(function (Command, cs, config, o) {
|
|
604
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
605
|
-
})
|
|
606
|
-
.s("AWSFreeTierService", "ListAccountActivities", {})
|
|
607
|
-
.n("FreeTierClient", "ListAccountActivitiesCommand")
|
|
608
|
-
.sc(ListAccountActivities$)
|
|
609
|
-
.build() {
|
|
578
|
+
class ListAccountActivitiesCommand extends command(_ep0, _mw0, "ListAccountActivities", ListAccountActivities$) {
|
|
610
579
|
}
|
|
611
580
|
|
|
612
|
-
class UpgradeAccountPlanCommand extends
|
|
613
|
-
.classBuilder()
|
|
614
|
-
.ep(commonParams)
|
|
615
|
-
.m(function (Command, cs, config, o) {
|
|
616
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
617
|
-
})
|
|
618
|
-
.s("AWSFreeTierService", "UpgradeAccountPlan", {})
|
|
619
|
-
.n("FreeTierClient", "UpgradeAccountPlanCommand")
|
|
620
|
-
.sc(UpgradeAccountPlan$)
|
|
621
|
-
.build() {
|
|
581
|
+
class UpgradeAccountPlanCommand extends command(_ep0, _mw0, "UpgradeAccountPlan", UpgradeAccountPlan$) {
|
|
622
582
|
}
|
|
623
583
|
|
|
624
584
|
const paginateGetFreeTierUsage = createPaginator(FreeTierClient, GetFreeTierUsageCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "AWSFreeTierService", "FreeTierClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetAccountActivity$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetAccountActivityCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSFreeTierService", "GetAccountActivity", {})
|
|
13
|
-
.n("FreeTierClient", "GetAccountActivityCommand")
|
|
14
|
-
.sc(GetAccountActivity$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetAccountActivityCommand extends command(_ep0, _mw0, "GetAccountActivity", GetAccountActivity$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetAccountPlanState$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetAccountPlanStateCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSFreeTierService", "GetAccountPlanState", {})
|
|
13
|
-
.n("FreeTierClient", "GetAccountPlanStateCommand")
|
|
14
|
-
.sc(GetAccountPlanState$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetAccountPlanStateCommand extends command(_ep0, _mw0, "GetAccountPlanState", GetAccountPlanState$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetFreeTierUsage$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetFreeTierUsageCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSFreeTierService", "GetFreeTierUsage", {})
|
|
13
|
-
.n("FreeTierClient", "GetFreeTierUsageCommand")
|
|
14
|
-
.sc(GetFreeTierUsage$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetFreeTierUsageCommand extends command(_ep0, _mw0, "GetFreeTierUsage", GetFreeTierUsage$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListAccountActivities$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListAccountActivitiesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSFreeTierService", "ListAccountActivities", {})
|
|
13
|
-
.n("FreeTierClient", "ListAccountActivitiesCommand")
|
|
14
|
-
.sc(ListAccountActivities$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListAccountActivitiesCommand extends command(_ep0, _mw0, "ListAccountActivities", ListAccountActivities$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpgradeAccountPlan$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpgradeAccountPlanCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AWSFreeTierService", "UpgradeAccountPlan", {})
|
|
13
|
-
.n("FreeTierClient", "UpgradeAccountPlanCommand")
|
|
14
|
-
.sc(UpgradeAccountPlan$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpgradeAccountPlanCommand extends command(_ep0, _mw0, "UpgradeAccountPlan", UpgradeAccountPlan$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./FreeTierClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient";
|
|
4
2
|
import type { GetAccountActivityRequest, GetAccountActivityResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetAccountActivityCommandInput extends GetAccountActivityReques
|
|
|
22
19
|
export interface GetAccountActivityCommandOutput extends GetAccountActivityResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetAccountActivityCommand_base: {
|
|
25
|
-
new (input: GetAccountActivityCommandInput): import("@smithy/core/client").CommandImpl<GetAccountActivityCommandInput, GetAccountActivityCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetAccountActivityCommandInput): import("@smithy/core/client").CommandImpl<GetAccountActivityCommandInput, GetAccountActivityCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetAccountActivityCommandInput): import("@smithy/core/client").CommandImpl<GetAccountActivityCommandInput, GetAccountActivityCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetAccountActivityCommandInput): import("@smithy/core/client").CommandImpl<GetAccountActivityCommandInput, GetAccountActivityCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p> Returns a specific activity record that is available to the customer. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient";
|
|
4
2
|
import type { GetAccountPlanStateRequest, GetAccountPlanStateResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetAccountPlanStateCommandInput extends GetAccountPlanStateRequ
|
|
|
22
19
|
export interface GetAccountPlanStateCommandOutput extends GetAccountPlanStateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetAccountPlanStateCommand_base: {
|
|
25
|
-
new (input: GetAccountPlanStateCommandInput): import("@smithy/core/client").CommandImpl<GetAccountPlanStateCommandInput, GetAccountPlanStateCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [GetAccountPlanStateCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountPlanStateCommandInput, GetAccountPlanStateCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetAccountPlanStateCommandInput): import("@smithy/core/client").CommandImpl<GetAccountPlanStateCommandInput, GetAccountPlanStateCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [GetAccountPlanStateCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountPlanStateCommandInput, GetAccountPlanStateCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p> This returns all of the information related to the state of the account plan related to Free Tier. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient";
|
|
4
2
|
import type { GetFreeTierUsageRequest, GetFreeTierUsageResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetFreeTierUsageCommandInput extends GetFreeTierUsageRequest {
|
|
|
22
19
|
export interface GetFreeTierUsageCommandOutput extends GetFreeTierUsageResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetFreeTierUsageCommand_base: {
|
|
25
|
-
new (input: GetFreeTierUsageCommandInput): import("@smithy/core/client").CommandImpl<GetFreeTierUsageCommandInput, GetFreeTierUsageCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [GetFreeTierUsageCommandInput]): import("@smithy/core/client").CommandImpl<GetFreeTierUsageCommandInput, GetFreeTierUsageCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetFreeTierUsageCommandInput): import("@smithy/core/client").CommandImpl<GetFreeTierUsageCommandInput, GetFreeTierUsageCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [GetFreeTierUsageCommandInput]): import("@smithy/core/client").CommandImpl<GetFreeTierUsageCommandInput, GetFreeTierUsageCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of all Free Tier usage objects that match your filters.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient";
|
|
4
2
|
import type { ListAccountActivitiesRequest, ListAccountActivitiesResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListAccountActivitiesCommandInput extends ListAccountActivities
|
|
|
22
19
|
export interface ListAccountActivitiesCommandOutput extends ListAccountActivitiesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListAccountActivitiesCommand_base: {
|
|
25
|
-
new (input: ListAccountActivitiesCommandInput): import("@smithy/core/client").CommandImpl<ListAccountActivitiesCommandInput, ListAccountActivitiesCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListAccountActivitiesCommandInput]): import("@smithy/core/client").CommandImpl<ListAccountActivitiesCommandInput, ListAccountActivitiesCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListAccountActivitiesCommandInput): import("@smithy/core/client").CommandImpl<ListAccountActivitiesCommandInput, ListAccountActivitiesCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListAccountActivitiesCommandInput]): import("@smithy/core/client").CommandImpl<ListAccountActivitiesCommandInput, ListAccountActivitiesCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p> Returns a list of activities that are available. This operation supports pagination and filtering by status. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient";
|
|
4
2
|
import type { UpgradeAccountPlanRequest, UpgradeAccountPlanResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpgradeAccountPlanCommandInput extends UpgradeAccountPlanReques
|
|
|
22
19
|
export interface UpgradeAccountPlanCommandOutput extends UpgradeAccountPlanResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpgradeAccountPlanCommand_base: {
|
|
25
|
-
new (input: UpgradeAccountPlanCommandInput): import("@smithy/core/client").CommandImpl<UpgradeAccountPlanCommandInput, UpgradeAccountPlanCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpgradeAccountPlanCommandInput): import("@smithy/core/client").CommandImpl<UpgradeAccountPlanCommandInput, UpgradeAccountPlanCommandOutput, FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpgradeAccountPlanCommandInput): import("@smithy/core/client").CommandImpl<UpgradeAccountPlanCommandInput, UpgradeAccountPlanCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpgradeAccountPlanCommandInput): import("@smithy/core/client").CommandImpl<UpgradeAccountPlanCommandInput, UpgradeAccountPlanCommandOutput, import("..").FreeTierClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p> The account plan type for the Amazon Web Services account. </p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { FreeTierExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
FreeTierClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./FreeTierClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
FreeTierClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
FreeTierClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
FreeTierClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../FreeTierClient";
|
|
8
2
|
import {
|
|
9
3
|
GetAccountActivityRequest,
|
|
10
4
|
GetAccountActivityResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAccountActivityCommandInput
|
|
15
8
|
extends GetAccountActivityRequest {}
|
|
16
9
|
export interface GetAccountActivityCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetAccountActivityCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetAccountActivityCommandInput,
|
|
24
17
|
GetAccountActivityCommandOutput,
|
|
25
|
-
FreeTierClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").FreeTierClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetAccountActivityCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetAccountActivityCommandInput,
|
|
33
26
|
GetAccountActivityCommandOutput,
|
|
34
|
-
FreeTierClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").FreeTierClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetAccountActivityCommand extends GetAccountActivityCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
FreeTierClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../FreeTierClient";
|
|
8
2
|
import {
|
|
9
3
|
GetAccountPlanStateRequest,
|
|
10
4
|
GetAccountPlanStateResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetAccountPlanStateCommandInput
|
|
15
8
|
extends GetAccountPlanStateRequest {}
|
|
16
9
|
export interface GetAccountPlanStateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetAccountPlanStateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetAccountPlanStateCommandInput,
|
|
24
17
|
GetAccountPlanStateCommandOutput,
|
|
25
|
-
FreeTierClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").FreeTierClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [GetAccountPlanStateCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetAccountPlanStateCommandInput,
|
|
33
26
|
GetAccountPlanStateCommandOutput,
|
|
34
|
-
FreeTierClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").FreeTierClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetAccountPlanStateCommand extends GetAccountPlanStateCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
FreeTierClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../FreeTierClient";
|
|
8
2
|
import {
|
|
9
3
|
GetFreeTierUsageRequest,
|
|
10
4
|
GetFreeTierUsageResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetFreeTierUsageCommandInput extends GetFreeTierUsageRequest {}
|
|
15
8
|
export interface GetFreeTierUsageCommandOutput
|
|
16
9
|
extends GetFreeTierUsageResponse,
|
|
@@ -21,22 +14,20 @@ declare const GetFreeTierUsageCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetFreeTierUsageCommandInput,
|
|
23
16
|
GetFreeTierUsageCommandOutput,
|
|
24
|
-
FreeTierClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").FreeTierClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [GetFreeTierUsageCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetFreeTierUsageCommandInput,
|
|
32
25
|
GetFreeTierUsageCommandOutput,
|
|
33
|
-
FreeTierClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").FreeTierClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetFreeTierUsageCommand extends GetFreeTierUsageCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
FreeTierClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../FreeTierClient";
|
|
8
2
|
import {
|
|
9
3
|
ListAccountActivitiesRequest,
|
|
10
4
|
ListAccountActivitiesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListAccountActivitiesCommandInput
|
|
15
8
|
extends ListAccountActivitiesRequest {}
|
|
16
9
|
export interface ListAccountActivitiesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListAccountActivitiesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListAccountActivitiesCommandInput,
|
|
24
17
|
ListAccountActivitiesCommandOutput,
|
|
25
|
-
FreeTierClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").FreeTierClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListAccountActivitiesCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListAccountActivitiesCommandInput,
|
|
33
26
|
ListAccountActivitiesCommandOutput,
|
|
34
|
-
FreeTierClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").FreeTierClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListAccountActivitiesCommand extends ListAccountActivitiesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
FreeTierClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../FreeTierClient";
|
|
8
2
|
import {
|
|
9
3
|
UpgradeAccountPlanRequest,
|
|
10
4
|
UpgradeAccountPlanResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpgradeAccountPlanCommandInput
|
|
15
8
|
extends UpgradeAccountPlanRequest {}
|
|
16
9
|
export interface UpgradeAccountPlanCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpgradeAccountPlanCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpgradeAccountPlanCommandInput,
|
|
24
17
|
UpgradeAccountPlanCommandOutput,
|
|
25
|
-
FreeTierClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").FreeTierClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpgradeAccountPlanCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpgradeAccountPlanCommandInput,
|
|
33
26
|
UpgradeAccountPlanCommandOutput,
|
|
34
|
-
FreeTierClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").FreeTierClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpgradeAccountPlanCommand extends UpgradeAccountPlanCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { FreeTierExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-freetier",
|
|
3
3
|
"description": "AWS SDK for JavaScript Freetier Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1079.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",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.27",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.62",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|