@aws-sdk/client-marketplace-entitlement-service 3.975.0 → 3.978.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 CHANGED
@@ -243,14 +243,17 @@ class GetEntitlementsCommand extends smithyClient.Command
243
243
  .build() {
244
244
  }
245
245
 
246
+ const paginateGetEntitlements = core.createPaginator(MarketplaceEntitlementServiceClient, GetEntitlementsCommand, "NextToken", "NextToken", "MaxResults");
247
+
246
248
  const commands = {
247
249
  GetEntitlementsCommand,
248
250
  };
251
+ const paginators = {
252
+ paginateGetEntitlements,
253
+ };
249
254
  class MarketplaceEntitlementService extends MarketplaceEntitlementServiceClient {
250
255
  }
251
- smithyClient.createAggregatedClient(commands, MarketplaceEntitlementService);
252
-
253
- const paginateGetEntitlements = core.createPaginator(MarketplaceEntitlementServiceClient, GetEntitlementsCommand, "NextToken", "NextToken", "MaxResults");
256
+ smithyClient.createAggregatedClient(commands, MarketplaceEntitlementService, { paginators });
254
257
 
255
258
  const GetEntitlementFilterName = {
256
259
  CUSTOMER_AWS_ACCOUNT_ID: "CUSTOMER_AWS_ACCOUNT_ID",
@@ -1,9 +1,13 @@
1
1
  import { createAggregatedClient } from "@smithy/smithy-client";
2
2
  import { GetEntitlementsCommand, } from "./commands/GetEntitlementsCommand";
3
3
  import { MarketplaceEntitlementServiceClient } from "./MarketplaceEntitlementServiceClient";
4
+ import { paginateGetEntitlements } from "./pagination/GetEntitlementsPaginator";
4
5
  const commands = {
5
6
  GetEntitlementsCommand,
6
7
  };
8
+ const paginators = {
9
+ paginateGetEntitlements,
10
+ };
7
11
  export class MarketplaceEntitlementService extends MarketplaceEntitlementServiceClient {
8
12
  }
9
- createAggregatedClient(commands, MarketplaceEntitlementService);
13
+ createAggregatedClient(commands, MarketplaceEntitlementService, { paginators });
@@ -1,4 +1,4 @@
1
- import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
2
2
  import { GetEntitlementsCommandInput, GetEntitlementsCommandOutput } from "./commands/GetEntitlementsCommand";
3
3
  import { MarketplaceEntitlementServiceClient } from "./MarketplaceEntitlementServiceClient";
4
4
  export interface MarketplaceEntitlementService {
@@ -8,6 +8,13 @@ export interface MarketplaceEntitlementService {
8
8
  getEntitlements(args: GetEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<GetEntitlementsCommandOutput>;
9
9
  getEntitlements(args: GetEntitlementsCommandInput, cb: (err: any, data?: GetEntitlementsCommandOutput) => void): void;
10
10
  getEntitlements(args: GetEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntitlementsCommandOutput) => void): void;
11
+ /**
12
+ * @see {@link GetEntitlementsCommand}
13
+ * @param args - command input.
14
+ * @param paginationConfig - optional pagination config.
15
+ * @returns AsyncIterable of {@link GetEntitlementsCommandOutput}.
16
+ */
17
+ paginateGetEntitlements(args: GetEntitlementsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetEntitlementsCommandOutput>;
11
18
  }
12
19
  /**
13
20
  * <fullname>AWS Marketplace Entitlement Service</fullname>
@@ -1,4 +1,8 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ } from "@smithy/types";
2
6
  import {
3
7
  GetEntitlementsCommandInput,
4
8
  GetEntitlementsCommandOutput,
@@ -18,6 +22,13 @@ export interface MarketplaceEntitlementService {
18
22
  options: __HttpHandlerOptions,
19
23
  cb: (err: any, data?: GetEntitlementsCommandOutput) => void
20
24
  ): void;
25
+ paginateGetEntitlements(
26
+ args: GetEntitlementsCommandInput,
27
+ paginationConfig?: Pick<
28
+ PaginationConfiguration,
29
+ Exclude<keyof PaginationConfiguration, "client">
30
+ >
31
+ ): Paginator<GetEntitlementsCommandOutput>;
21
32
  }
22
33
  export declare class MarketplaceEntitlementService
23
34
  extends MarketplaceEntitlementServiceClient
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-marketplace-entitlement-service",
3
3
  "description": "AWS SDK for JavaScript Marketplace Entitlement Service Client for Node.js, Browser and React Native",
4
- "version": "3.975.0",
4
+ "version": "3.978.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 client-marketplace-entitlement-service",
@@ -21,38 +21,38 @@
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.973.1",
25
- "@aws-sdk/credential-provider-node": "^3.972.1",
26
- "@aws-sdk/middleware-host-header": "^3.972.1",
27
- "@aws-sdk/middleware-logger": "^3.972.1",
28
- "@aws-sdk/middleware-recursion-detection": "^3.972.1",
29
- "@aws-sdk/middleware-user-agent": "^3.972.2",
30
- "@aws-sdk/region-config-resolver": "^3.972.1",
31
- "@aws-sdk/types": "^3.973.0",
24
+ "@aws-sdk/core": "^3.973.4",
25
+ "@aws-sdk/credential-provider-node": "^3.972.2",
26
+ "@aws-sdk/middleware-host-header": "^3.972.2",
27
+ "@aws-sdk/middleware-logger": "^3.972.2",
28
+ "@aws-sdk/middleware-recursion-detection": "^3.972.2",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.4",
30
+ "@aws-sdk/region-config-resolver": "^3.972.2",
31
+ "@aws-sdk/types": "^3.973.1",
32
32
  "@aws-sdk/util-endpoints": "3.972.0",
33
- "@aws-sdk/util-user-agent-browser": "^3.972.1",
34
- "@aws-sdk/util-user-agent-node": "^3.972.1",
33
+ "@aws-sdk/util-user-agent-browser": "^3.972.2",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.2",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
- "@smithy/core": "^3.21.1",
36
+ "@smithy/core": "^3.22.0",
37
37
  "@smithy/fetch-http-handler": "^5.3.9",
38
38
  "@smithy/hash-node": "^4.2.8",
39
39
  "@smithy/invalid-dependency": "^4.2.8",
40
40
  "@smithy/middleware-content-length": "^4.2.8",
41
- "@smithy/middleware-endpoint": "^4.4.11",
42
- "@smithy/middleware-retry": "^4.4.27",
41
+ "@smithy/middleware-endpoint": "^4.4.12",
42
+ "@smithy/middleware-retry": "^4.4.29",
43
43
  "@smithy/middleware-serde": "^4.2.9",
44
44
  "@smithy/middleware-stack": "^4.2.8",
45
45
  "@smithy/node-config-provider": "^4.3.8",
46
46
  "@smithy/node-http-handler": "^4.4.8",
47
47
  "@smithy/protocol-http": "^5.3.8",
48
- "@smithy/smithy-client": "^4.10.12",
48
+ "@smithy/smithy-client": "^4.11.1",
49
49
  "@smithy/types": "^4.12.0",
50
50
  "@smithy/url-parser": "^4.2.8",
51
51
  "@smithy/util-base64": "^4.3.0",
52
52
  "@smithy/util-body-length-browser": "^4.2.0",
53
53
  "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.26",
55
- "@smithy/util-defaults-mode-node": "^4.2.29",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.28",
55
+ "@smithy/util-defaults-mode-node": "^4.2.31",
56
56
  "@smithy/util-endpoints": "^3.2.8",
57
57
  "@smithy/util-middleware": "^4.2.8",
58
58
  "@smithy/util-retry": "^4.2.8",