@@ -1826,7 +1826,7 @@ declare module "node-appwrite" {
1826
1826
1827
1827
static fromBuffer ( buffer : Buffer , filename : string ) : InputFile ;
1828
1828
1829
- static fromBlob ( blob : buffer . Blob , filename : string ) : Promise < InputFile > ;
1829
+ static fromBlob ( blob : Blob , filename : string ) : Promise < InputFile > ;
1830
1830
1831
1831
static fromStream ( stream : NodeJS . ReadableStream , filename : string , size : number ) : InputFile ;
1832
1832
@@ -2674,7 +2674,7 @@ declare module "node-appwrite" {
2674
2674
* Create Relationship Attribute
2675
2675
*
2676
2676
* Create relationship attribute. [Learn more about relationship
2677
- * attributes](docs/databases-relationships#relationship-attributes).
2677
+ * attributes](/ docs/databases-relationships#relationship-attributes).
2678
2678
*
2679
2679
*
2680
2680
* @param {string } databaseId
@@ -2763,7 +2763,7 @@ declare module "node-appwrite" {
2763
2763
* @throws {AppwriteException }
2764
2764
* @returns {Promise }
2765
2765
*/
2766
- getAttribute ( databaseId : string , collectionId : string , key : string ) : Promise < string > ;
2766
+ getAttribute ( databaseId : string , collectionId : string , key : string ) : Promise < any > ;
2767
2767
/**
2768
2768
* Delete Attribute
2769
2769
*
@@ -2778,7 +2778,7 @@ declare module "node-appwrite" {
2778
2778
* Update Relationship Attribute
2779
2779
*
2780
2780
* Update relationship attribute. [Learn more about relationship
2781
- * attributes](docs/databases-relationships#relationship-attributes).
2781
+ * attributes](/ docs/databases-relationships#relationship-attributes).
2782
2782
*
2783
2783
*
2784
2784
* @param {string } databaseId
@@ -3061,7 +3061,7 @@ declare module "node-appwrite" {
3061
3061
* @throws {AppwriteException }
3062
3062
* @returns {Promise }
3063
3063
*/
3064
- createBuild ( functionId : string , deploymentId : string , buildId : string ) : Promise < string > ;
3064
+ createBuild ( functionId : string , deploymentId : string , buildId : string ) : Promise < any > ;
3065
3065
/**
3066
3066
* List Executions
3067
3067
*
@@ -3172,7 +3172,7 @@ declare module "node-appwrite" {
3172
3172
* @throws {AppwriteException }
3173
3173
* @returns {Promise }
3174
3174
*/
3175
- query ( query : object ) : Promise < string > ;
3175
+ query ( query : object ) : Promise < any > ;
3176
3176
/**
3177
3177
* GraphQL Endpoint
3178
3178
*
@@ -3182,7 +3182,7 @@ declare module "node-appwrite" {
3182
3182
* @throws {AppwriteException }
3183
3183
* @returns {Promise }
3184
3184
*/
3185
- mutation ( query : object ) : Promise < string > ;
3185
+ mutation ( query : object ) : Promise < any > ;
3186
3186
}
3187
3187
export class Health extends Service {
3188
3188
constructor ( client : Client ) ;
0 commit comments