New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@collaborne/custom-cloudformation-resources

Package Overview
Dependencies
Maintainers
4
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@collaborne/custom-cloudformation-resources - npm Package Compare versions

Comparing version 0.1.3 to 0.2.0

2

dist/acm-certificate/index.d.ts

@@ -65,3 +65,3 @@ import type { SchemaType } from '@collaborne/json-schema-to-type';

}
export declare class ACMCloudfrontCertificate extends CustomResource<ResourceAttributes, typeof SCHEMA> {
export declare class ACMCertificate extends CustomResource<ResourceAttributes, typeof SCHEMA> {
private acm;

@@ -68,0 +68,0 @@ private route53;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ACMCloudfrontCertificate = void 0;
exports.ACMCertificate = void 0;
const aws_sdk_1 = require("aws-sdk");

@@ -80,3 +80,3 @@ const custom_resource_1 = require("../custom-resource");

// XXX: The AWS::CertificateManager::Certificate uses the ARN as Ref, not an id (and then also doesn't have a .Arn attribute)
class ACMCloudfrontCertificate extends custom_resource_1.CustomResource {
class ACMCertificate extends custom_resource_1.CustomResource {
constructor(logicalResourceId, logger) {

@@ -382,3 +382,3 @@ super(SCHEMA, logicalResourceId, logger);

}
exports.ACMCloudfrontCertificate = ACMCloudfrontCertificate;
exports.ACMCertificate = ACMCertificate;
//# sourceMappingURL=index.js.map
export { CustomResourceRequest, ResponseStatus, SUCCESS, FAILED, send, } from './cfn-response';
export { Logger } from './logger';
export { CustomResource, Response } from './custom-resource';
export { ACMCloudfrontCertificate } from './acm-certificate';
export { ACMCertificate } from './acm-certificate';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ACMCloudfrontCertificate = exports.CustomResource = exports.send = exports.FAILED = exports.SUCCESS = void 0;
exports.ACMCertificate = exports.CustomResource = exports.send = exports.FAILED = exports.SUCCESS = void 0;
// Export all general utilities for building custom resources

@@ -13,3 +13,3 @@ var cfn_response_1 = require("./cfn-response");

var acm_certificate_1 = require("./acm-certificate");
Object.defineProperty(exports, "ACMCloudfrontCertificate", { enumerable: true, get: function () { return acm_certificate_1.ACMCloudfrontCertificate; } });
Object.defineProperty(exports, "ACMCertificate", { enumerable: true, get: function () { return acm_certificate_1.ACMCertificate; } });
//# sourceMappingURL=index.js.map
{
"name": "@collaborne/custom-cloudformation-resources",
"version": "0.1.3",
"version": "0.2.0",
"description": "Custom CloudFormation resources",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -103,3 +103,3 @@ import { ACM, Route53 } from 'aws-sdk';

// XXX: The AWS::CertificateManager::Certificate uses the ARN as Ref, not an id (and then also doesn't have a .Arn attribute)
export class ACMCloudfrontCertificate extends CustomResource<
export class ACMCertificate extends CustomResource<
ResourceAttributes,

@@ -106,0 +106,0 @@ typeof SCHEMA

@@ -15,2 +15,2 @@ // Export all general utilities for building custom resources

// Export actual resources
export { ACMCloudfrontCertificate } from './acm-certificate';
export { ACMCertificate } from './acm-certificate';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc