@aws-sdk/client-billingconductor 3.202.0 → 3.206.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 +3 -4
- package/dist-cjs/Billingconductor.js +15 -0
- package/dist-cjs/commands/ListCustomLineItemVersionsCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +5 -5
- package/dist-cjs/models/models_0.js +42 -3
- package/dist-cjs/pagination/ListCustomLineItemVersionsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +119 -2
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/Billingconductor.js +15 -0
- package/dist-es/commands/ListCustomLineItemVersionsCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +5 -5
- package/dist-es/models/models_0.js +34 -0
- package/dist-es/pagination/ListCustomLineItemVersionsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +115 -0
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/Billingconductor.d.ts +16 -15
- package/dist-types/BillingconductorClient.d.ts +6 -6
- package/dist-types/commands/DeletePricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountAssociationsCommand.d.ts +2 -7
- package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +37 -0
- package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +1 -1
- package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +200 -99
- package/dist-types/pagination/ListCustomLineItemVersionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/Billingconductor.d.ts +17 -0
- package/dist-types/ts3.4/BillingconductorClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListCustomLineItemVersionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +60 -1
- package/dist-types/ts3.4/pagination/ListCustomLineItemVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +5 -4
- package/CHANGELOG.md +0 -574
|
@@ -15,6 +15,7 @@ export * from "./DisassociatePricingRulesCommand";
|
|
|
15
15
|
export * from "./ListAccountAssociationsCommand";
|
|
16
16
|
export * from "./ListBillingGroupCostReportsCommand";
|
|
17
17
|
export * from "./ListBillingGroupsCommand";
|
|
18
|
+
export * from "./ListCustomLineItemVersionsCommand";
|
|
18
19
|
export * from "./ListCustomLineItemsCommand";
|
|
19
20
|
export * from "./ListPricingPlansAssociatedWithPricingRuleCommand";
|
|
20
21
|
export * from "./ListPricingPlansCommand";
|