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

@aws-appsync/utils

Package Overview
Dependencies
Maintainers
0
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-appsync/utils - npm Package Compare versions

Comparing version 1.8.0 to 1.9.0

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [1.9.0](https://github.com/aws/aws-appsync-toolkit/compare/v1.8.0...v1.9.0) (2024-07-17)
### Features
* add from field ([e907050](https://github.com/aws/aws-appsync-toolkit/commit/e90705070fa225409109a435507a11d0fc2d2031))
# [1.8.0](https://github.com/aws/aws-appsync-toolkit/compare/v1.7.0...v1.8.0) (2024-05-30)

@@ -8,0 +19,0 @@

18

lib/rds-helpers.d.ts

@@ -60,8 +60,22 @@ import { Prettify } from './type-utils';

};
type RDSBasePayload = {
type RDSAliasObject = {
[key: string]: SQLStatement | SelectStatement | string;
};
type RDSBasePayloadWithTable = {
/**
* The name of the database table involved in the SQL operation. This is a required field.
* The name of the database table involved in the SQL operation. This is a required field if
* from is not included.
*/
table: string;
from?: never;
};
type RDSBasePayloadWithFrom = {
/**
* The name of the database table involved in the SQL operation. This is a required field if
* table is not included.
*/
from: string | RDSAliasObject;
table?: never;
};
type RDSBasePayload = RDSBasePayloadWithTable | RDSBasePayloadWithFrom;
type RDSBaseConditionalPayload<T = unknown> = Prettify<RDSBasePayload & {

@@ -68,0 +82,0 @@ /**

4

package.json
{
"name": "@aws-appsync/utils",
"version": "1.8.0",
"version": "1.9.0",
"description": "This project contains type definitions for AppSync resolver types.",

@@ -30,3 +30,3 @@ "main": "lib/index.js",

},
"gitHead": "dc7e893537aa479e5415ba5aef5d57f57a667b9e"
"gitHead": "56168d0b2066ff174113c1e0132c0fe42b7f6cdc"
}
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