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

graphql-transformer-common

Package Overview
Dependencies
Maintainers
11
Versions
770
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-transformer-common - npm Package Compare versions

Comparing version 4.23.3-alpha.33 to 4.23.3-alpha.34

4

lib/ModelResourceIDs.d.ts

@@ -9,3 +9,3 @@ export declare class ModelResourceIDs {

static ModelFilterInputTypeName(name: string): string;
static ModelFilterScalarInputTypeName(name: string, includeFilter: Boolean): string;
static ModelFilterScalarInputTypeName(name: string, includeFilter: Boolean, isSubscriptionFilter?: boolean): string;
static ModelConditionInputTypeName(name: string): string;

@@ -18,3 +18,3 @@ static ModelKeyConditionInputTypeName(name: string): string;

static ModelCompositeKeyInputTypeName(modelName: string, keyName: string): string;
static ModelFilterListInputTypeName(name: string, includeFilter: Boolean): string;
static ModelFilterListInputTypeName(name: string, includeFilter: Boolean, isSubscriptionFilter?: boolean): string;
static ModelScalarFilterInputTypeName(name: string, includeFilter: Boolean): string;

@@ -21,0 +21,0 @@ static ModelConnectionTypeName(typeName: string): string;

@@ -40,8 +40,8 @@ "use strict";

}
static ModelFilterScalarInputTypeName(name, includeFilter) {
static ModelFilterScalarInputTypeName(name, includeFilter, isSubscriptionFilter = false) {
const nameOverride = definition_1.DEFAULT_SCALARS[name];
if (nameOverride) {
return `Model${nameOverride}${includeFilter ? 'Filter' : ''}Input`;
return `Model${isSubscriptionFilter ? 'Subscription' : ''}${nameOverride}${includeFilter ? 'Filter' : ''}Input`;
}
return `Model${name}${includeFilter ? 'Filter' : ''}Input`;
return `Model${isSubscriptionFilter ? 'Subscription' : ''}${name}${includeFilter ? 'Filter' : ''}Input`;
}

@@ -77,8 +77,8 @@ static ModelConditionInputTypeName(name) {

}
static ModelFilterListInputTypeName(name, includeFilter) {
static ModelFilterListInputTypeName(name, includeFilter, isSubscriptionFilter = false) {
const nameOverride = definition_1.DEFAULT_SCALARS[name];
if (nameOverride) {
return `Model${nameOverride}List${includeFilter ? 'Filter' : ''}Input`;
return `Model${isSubscriptionFilter ? 'Subscription' : ''}${nameOverride}List${includeFilter ? 'Filter' : ''}Input`;
}
return `Model${name}List${includeFilter ? 'Filter' : ''}Input`;
return `Model${isSubscriptionFilter ? 'Subscription' : ''}${name}List${includeFilter ? 'Filter' : ''}Input`;
}

@@ -85,0 +85,0 @@ static ModelScalarFilterInputTypeName(name, includeFilter) {

{
"name": "graphql-transformer-common",
"version": "4.23.3-alpha.33+e3556f779",
"version": "4.23.3-alpha.34+9c3dec847",
"description": "Common code and constants for AppSync Transformers",

@@ -27,3 +27,3 @@ "repository": {

"graphql": "^14.5.8",
"graphql-mapping-template": "4.20.6-alpha.33+e3556f779",
"graphql-mapping-template": "4.20.6-alpha.34+9c3dec847",
"md5": "^2.2.1",

@@ -51,3 +51,3 @@ "pluralize": "8.0.0"

},
"gitHead": "e3556f77987a6ec72b4e0d47ea6a0a70426ccfb3"
"gitHead": "9c3dec847a49efd334a2fa28433afd0a90c05c0f"
}

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