@jjrawlins/cdk-diff-pr-github-action 0.0.44 → 0.0.45

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.
Files changed (51) hide show
  1. package/.jsii +3 -3
  2. package/lib/CdkDiffIamTemplate.js +1 -1
  3. package/lib/CdkDiffStackWorkflow.js +1 -1
  4. package/lib/CdkDriftDetectionWorkflow.js +1 -1
  5. package/lib/CdkDriftIamTemplate.js +1 -1
  6. package/node_modules/@aws-sdk/client-cloudformation/README.md +1 -96
  7. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
  8. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1857 -2253
  9. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +1 -2
  10. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +2 -4
  11. package/node_modules/@aws-sdk/client-cloudformation/dist-es/auth/httpAuthSchemeProvider.js +3 -4
  12. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/index.js +3 -3
  13. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.browser.js +1 -2
  14. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +4 -6
  15. package/node_modules/@aws-sdk/client-cloudformation/dist-es/schemas/schemas_0.js +1504 -1900
  16. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/index.js +2 -2
  17. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +2 -2
  18. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +74 -74
  19. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +34 -34
  20. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +26 -26
  21. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +2 -2
  22. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +3 -3
  23. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +18 -18
  24. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +18 -18
  25. package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForTypeRegistrationComplete.js +2 -2
  26. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/index.d.ts +3 -3
  27. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/index.d.ts +3 -3
  28. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/index.d.ts +2 -2
  29. package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/index.d.ts +2 -2
  30. package/node_modules/@aws-sdk/client-cloudformation/package.json +2 -2
  31. package/node_modules/@aws-sdk/client-sso/README.md +1 -9
  32. package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +27 -20
  33. package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +69 -77
  34. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +1 -2
  35. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +2 -4
  36. package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +27 -20
  37. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +1 -2
  38. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +4 -6
  39. package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +75 -83
  40. package/node_modules/@aws-sdk/client-sso/package.json +1 -1
  41. package/node_modules/@aws-sdk/credential-provider-ini/package.json +5 -5
  42. package/node_modules/@aws-sdk/credential-provider-login/package.json +2 -2
  43. package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
  44. package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
  45. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
  46. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -2
  47. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -2
  48. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +2 -2
  49. package/node_modules/@aws-sdk/nested-clients/package.json +1 -1
  50. package/node_modules/@aws-sdk/token-providers/package.json +2 -2
  51. package/package.json +2 -2
@@ -6,10 +6,9 @@ const util_middleware_1 = require("@smithy/util-middleware");
6
6
  const defaultCloudFormationHttpAuthSchemeParametersProvider = async (config, context, input) => {
7
7
  return {
8
8
  operation: (0, util_middleware_1.getSmithyContext)(context).operation,
9
- region: (await (0, util_middleware_1.normalizeProvider)(config.region)()) ||
10
- (() => {
11
- throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
12
- })(),
9
+ region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => {
10
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
11
+ })(),
13
12
  };
14
13
  };
15
14
  exports.defaultCloudFormationHttpAuthSchemeParametersProvider = defaultCloudFormationHttpAuthSchemeParametersProvider;