@aws-sdk/client-marketplace-catalog 3.540.0 → 3.545.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
@@ -473,6 +473,7 @@ var OfferSortBy = {
473
473
  Name: "Name",
474
474
  ProductId: "ProductId",
475
475
  ReleaseDate: "ReleaseDate",
476
+ ResaleAuthorizationId: "ResaleAuthorizationId",
476
477
  State: "State",
477
478
  Targeting: "Targeting"
478
479
  };
@@ -193,6 +193,7 @@ export const OfferSortBy = {
193
193
  Name: "Name",
194
194
  ProductId: "ProductId",
195
195
  ReleaseDate: "ReleaseDate",
196
+ ResaleAuthorizationId: "ResaleAuthorizationId",
196
197
  State: "State",
197
198
  Targeting: "Targeting",
198
199
  };
@@ -141,6 +141,11 @@ declare const ListEntitiesCommand_base: {
141
141
  * "STRING_VALUE",
142
142
  * ],
143
143
  * },
144
+ * ResaleAuthorizationId: { // OfferResaleAuthorizationIdFilter
145
+ * ValueList: [ // OfferResaleAuthorizationIdFilterValueList
146
+ * "STRING_VALUE",
147
+ * ],
148
+ * },
144
149
  * ReleaseDate: { // OfferReleaseDateFilter
145
150
  * DateRange: { // OfferReleaseDateFilterDateRange
146
151
  * AfterValue: "STRING_VALUE",
@@ -295,7 +300,7 @@ declare const ListEntitiesCommand_base: {
295
300
  * SortOrder: "ASCENDING" || "DESCENDING",
296
301
  * },
297
302
  * OfferSort: { // OfferSort
298
- * SortBy: "EntityId" || "Name" || "ProductId" || "ReleaseDate" || "AvailabilityEndDate" || "BuyerAccounts" || "State" || "Targeting" || "LastModifiedDate",
303
+ * SortBy: "EntityId" || "Name" || "ProductId" || "ResaleAuthorizationId" || "ReleaseDate" || "AvailabilityEndDate" || "BuyerAccounts" || "State" || "Targeting" || "LastModifiedDate",
299
304
  * SortOrder: "ASCENDING" || "DESCENDING",
300
305
  * },
301
306
  * ContainerProductSort: { // ContainerProductSort
@@ -338,6 +343,7 @@ declare const ListEntitiesCommand_base: {
338
343
  * // OfferSummary: { // OfferSummary
339
344
  * // Name: "STRING_VALUE",
340
345
  * // ProductId: "STRING_VALUE",
346
+ * // ResaleAuthorizationId: "STRING_VALUE",
341
347
  * // ReleaseDate: "STRING_VALUE",
342
348
  * // AvailabilityEndDate: "STRING_VALUE",
343
349
  * // BuyerAccounts: [ // OfferBuyerAccountsList
@@ -1199,6 +1199,21 @@ export interface OfferReleaseDateFilter {
1199
1199
  */
1200
1200
  DateRange?: OfferReleaseDateFilterDateRange;
1201
1201
  }
1202
+ /**
1203
+ * <p>Allows filtering on the <code>ResaleAuthorizationId</code> of an offer.</p>
1204
+ * <note>
1205
+ * <p>Not all offers have a <code>ResaleAuthorizationId</code>. The response will only
1206
+ * include offers for which you have permissions.</p>
1207
+ * </note>
1208
+ * @public
1209
+ */
1210
+ export interface OfferResaleAuthorizationIdFilter {
1211
+ /**
1212
+ * <p>Allows filtering on the <code>ResaleAuthorizationId</code> of an offer with list input.</p>
1213
+ * @public
1214
+ */
1215
+ ValueList?: string[];
1216
+ }
1202
1217
  /**
1203
1218
  * @public
1204
1219
  * @enum
@@ -1267,6 +1282,15 @@ export interface OfferFilters {
1267
1282
  * @public
1268
1283
  */
1269
1284
  ProductId?: OfferProductIdFilter;
1285
+ /**
1286
+ * <p>Allows filtering on the <code>ResaleAuthorizationId</code> of an offer.</p>
1287
+ * <note>
1288
+ * <p>Not all offers have a <code>ResaleAuthorizationId</code>. The response will only
1289
+ * include offers for which you have permissions.</p>
1290
+ * </note>
1291
+ * @public
1292
+ */
1293
+ ResaleAuthorizationId?: OfferResaleAuthorizationIdFilter;
1270
1294
  /**
1271
1295
  * <p>Allows filtering on the <code>ReleaseDate</code> of an offer.</p>
1272
1296
  * @public
@@ -1905,6 +1929,7 @@ export declare const OfferSortBy: {
1905
1929
  readonly Name: "Name";
1906
1930
  readonly ProductId: "ProductId";
1907
1931
  readonly ReleaseDate: "ReleaseDate";
1932
+ readonly ResaleAuthorizationId: "ResaleAuthorizationId";
1908
1933
  readonly State: "State";
1909
1934
  readonly Targeting: "Targeting";
1910
1935
  };
@@ -2235,6 +2260,11 @@ export interface OfferSummary {
2235
2260
  * @public
2236
2261
  */
2237
2262
  ProductId?: string;
2263
+ /**
2264
+ * <p>The ResaleAuthorizationId of the offer.</p>
2265
+ * @public
2266
+ */
2267
+ ResaleAuthorizationId?: string;
2238
2268
  /**
2239
2269
  * <p>The release date of the offer.</p>
2240
2270
  * @public
@@ -337,6 +337,9 @@ export interface OfferReleaseDateFilterDateRange {
337
337
  export interface OfferReleaseDateFilter {
338
338
  DateRange?: OfferReleaseDateFilterDateRange;
339
339
  }
340
+ export interface OfferResaleAuthorizationIdFilter {
341
+ ValueList?: string[];
342
+ }
340
343
  export declare const OfferStateString: {
341
344
  readonly Draft: "Draft";
342
345
  readonly Released: "Released";
@@ -361,6 +364,7 @@ export interface OfferFilters {
361
364
  EntityId?: OfferEntityIdFilter;
362
365
  Name?: OfferNameFilter;
363
366
  ProductId?: OfferProductIdFilter;
367
+ ResaleAuthorizationId?: OfferResaleAuthorizationIdFilter;
364
368
  ReleaseDate?: OfferReleaseDateFilter;
365
369
  AvailabilityEndDate?: OfferAvailabilityEndDateFilter;
366
370
  BuyerAccounts?: OfferBuyerAccountsFilter;
@@ -596,6 +600,7 @@ export declare const OfferSortBy: {
596
600
  readonly Name: "Name";
597
601
  readonly ProductId: "ProductId";
598
602
  readonly ReleaseDate: "ReleaseDate";
603
+ readonly ResaleAuthorizationId: "ResaleAuthorizationId";
599
604
  readonly State: "State";
600
605
  readonly Targeting: "Targeting";
601
606
  };
@@ -747,6 +752,7 @@ export interface DataProductSummary {
747
752
  export interface OfferSummary {
748
753
  Name?: string;
749
754
  ProductId?: string;
755
+ ResaleAuthorizationId?: string;
750
756
  ReleaseDate?: string;
751
757
  AvailabilityEndDate?: string;
752
758
  BuyerAccounts?: string[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-marketplace-catalog",
3
3
  "description": "AWS SDK for JavaScript Marketplace Catalog Client for Node.js, Browser and React Native",
4
- "version": "3.540.0",
4
+ "version": "3.545.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-marketplace-catalog",