Comparing version 0.30.1 to 0.30.2
@@ -9,2 +9,10 @@ # Changelog | ||
## [0.30.0] - 2020-07-08 | ||
### Added | ||
- Added helpers for uploading and deleting transaction assets (`models.transaction.createTransactionAsset`, `models.transaction.finalizeTransactionAssetUpload`, `models.transaction.deleteTransactionAsset`) | ||
### Changed | ||
- `updatePlan` method of `subscription` model extended with optional `couponCode` param | ||
## [0.29.1] - 2020-06-11 | ||
@@ -11,0 +19,0 @@ |
@@ -608,9 +608,9 @@ export declare type Maybe<T> = T | null; | ||
name: Scalars['String']; | ||
transactionId: Scalars['String']; | ||
transactionId: Scalars['ID']; | ||
}; | ||
export declare type MutationFinalizeTransactionAssetUploadArgs = { | ||
assetId: Scalars['String']; | ||
assetId: Scalars['ID']; | ||
}; | ||
export declare type MutationDeleteTransactionAssetArgs = { | ||
assetId: Scalars['String']; | ||
assetId: Scalars['ID']; | ||
}; | ||
@@ -1134,3 +1134,3 @@ export declare type MutationUpdateOverdraftArgs = { | ||
__typename?: 'TransactionAsset'; | ||
id: Scalars['String']; | ||
id: Scalars['ID']; | ||
name: Scalars['String']; | ||
@@ -1137,0 +1137,0 @@ filetype: Scalars['String']; |
@@ -769,3 +769,3 @@ /* @flow */ | ||
name: $ElementType<Scalars, 'String'>, | ||
transactionId: $ElementType<Scalars, 'String'>, | ||
transactionId: $ElementType<Scalars, 'ID'>, | ||
|}; | ||
@@ -775,3 +775,3 @@ | ||
export type MutationFinalizeTransactionAssetUploadArgs = {| | ||
assetId: $ElementType<Scalars, 'String'>, | ||
assetId: $ElementType<Scalars, 'ID'>, | ||
|}; | ||
@@ -781,3 +781,3 @@ | ||
export type MutationDeleteTransactionAssetArgs = {| | ||
assetId: $ElementType<Scalars, 'String'>, | ||
assetId: $ElementType<Scalars, 'ID'>, | ||
|}; | ||
@@ -1390,3 +1390,3 @@ | ||
__typename?: 'TransactionAsset', | ||
id: $ElementType<Scalars, 'String'>, | ||
id: $ElementType<Scalars, 'ID'>, | ||
name: $ElementType<Scalars, 'String'>, | ||
@@ -1921,1 +1921,2 @@ filetype: $ElementType<Scalars, 'String'>, | ||
|}; | ||
{ | ||
"name": "kontist", | ||
"version": "0.30.1", | ||
"version": "0.30.2", | ||
"description": "Kontist client SDK", | ||
@@ -5,0 +5,0 @@ "main": "dist/lib/index.js", |
640093