aws-testing-library
Advanced tools
Comparing version 4.0.3 to 4.0.4
import { Method } from 'axios'; | ||
export declare type PlainObject = Record<string, string>; | ||
export type PlainObject = Record<string, string>; | ||
export declare const getResponse: (url: string, method: Method, params?: PlainObject, data?: PlainObject, headers?: PlainObject) => Promise<{ | ||
@@ -4,0 +4,0 @@ statusCode: number; |
import { Kinesis } from 'aws-sdk'; | ||
export declare type IRecordMatcher = (args: any) => boolean; | ||
export type IRecordMatcher = (args: any) => boolean; | ||
export declare const existsInShard: (kinesis: Kinesis, shardIterator: string | undefined, matcher: IRecordMatcher, timeout: number, pollEvery: number) => Promise<boolean>; | ||
export declare const existsInStream: (region: string, stream: string, matcher: IRecordMatcher, timeout: number, pollEvery?: number) => Promise<boolean>; |
@@ -1,2 +0,2 @@ | ||
export declare type IMessageMatcher = (args: any) => boolean; | ||
export type IMessageMatcher = (args: any) => boolean; | ||
export declare const subscribeToTopic: (region: string, topicArn: string) => Promise<{ | ||
@@ -3,0 +3,0 @@ subscriptionArn: string; |
{ | ||
"name": "aws-testing-library", | ||
"version": "4.0.3", | ||
"version": "4.0.4", | ||
"description": "Chai and Jest matchers for aws services", | ||
@@ -5,0 +5,0 @@ "scripts": { |
105763