node-appwrite
Advanced tools
Comparing version
@@ -18,3 +18,3 @@ 'use strict'; | ||
function getUserAgent() { | ||
let ua = "AppwriteNodeJSSDK/14.0.0"; | ||
let ua = "AppwriteNodeJSSDK/14.1.0"; | ||
const platform = []; | ||
@@ -55,3 +55,3 @@ if (typeof process !== "undefined") { | ||
"x-sdk-language": "nodejs", | ||
"x-sdk-version": "14.0.0", | ||
"x-sdk-version": "14.1.0", | ||
"user-agent": getUserAgent(), | ||
@@ -58,0 +58,0 @@ "X-Appwrite-Response-Format": "1.6.0" |
@@ -169,6 +169,7 @@ import { Client } from '../client.js'; | ||
* @param {boolean} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeBoolean>} | ||
*/ | ||
updateBooleanAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: boolean): Promise<Models.AttributeBoolean>; | ||
updateBooleanAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: boolean, newKey?: string): Promise<Models.AttributeBoolean>; | ||
/** | ||
@@ -199,6 +200,7 @@ * Create datetime attribute | ||
* @param {string} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeDatetime>} | ||
*/ | ||
updateDatetimeAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string): Promise<Models.AttributeDatetime>; | ||
updateDatetimeAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string, newKey?: string): Promise<Models.AttributeDatetime>; | ||
/** | ||
@@ -231,6 +233,7 @@ * Create email attribute | ||
* @param {string} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeEmail>} | ||
*/ | ||
updateEmailAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string): Promise<Models.AttributeEmail>; | ||
updateEmailAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string, newKey?: string): Promise<Models.AttributeEmail>; | ||
/** | ||
@@ -265,6 +268,7 @@ * Create enum attribute | ||
* @param {string} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeEnum>} | ||
*/ | ||
updateEnumAttribute(databaseId: string, collectionId: string, key: string, elements: string[], required: boolean, xdefault?: string): Promise<Models.AttributeEnum>; | ||
updateEnumAttribute(databaseId: string, collectionId: string, key: string, elements: string[], required: boolean, xdefault?: string, newKey?: string): Promise<Models.AttributeEnum>; | ||
/** | ||
@@ -301,6 +305,7 @@ * Create float attribute | ||
* @param {number} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeFloat>} | ||
*/ | ||
updateFloatAttribute(databaseId: string, collectionId: string, key: string, required: boolean, min: number, max: number, xdefault?: number): Promise<Models.AttributeFloat>; | ||
updateFloatAttribute(databaseId: string, collectionId: string, key: string, required: boolean, min: number, max: number, xdefault?: number, newKey?: string): Promise<Models.AttributeFloat>; | ||
/** | ||
@@ -337,6 +342,7 @@ * Create integer attribute | ||
* @param {number} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeInteger>} | ||
*/ | ||
updateIntegerAttribute(databaseId: string, collectionId: string, key: string, required: boolean, min: number, max: number, xdefault?: number): Promise<Models.AttributeInteger>; | ||
updateIntegerAttribute(databaseId: string, collectionId: string, key: string, required: boolean, min: number, max: number, xdefault?: number, newKey?: string): Promise<Models.AttributeInteger>; | ||
/** | ||
@@ -369,6 +375,7 @@ * Create IP address attribute | ||
* @param {string} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeIp>} | ||
*/ | ||
updateIpAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string): Promise<Models.AttributeIp>; | ||
updateIpAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string, newKey?: string): Promise<Models.AttributeIp>; | ||
/** | ||
@@ -421,6 +428,8 @@ * Create relationship attribute | ||
* @param {string} xdefault | ||
* @param {number} size | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeString>} | ||
*/ | ||
updateStringAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string): Promise<Models.AttributeString>; | ||
updateStringAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string, size?: number, newKey?: string): Promise<Models.AttributeString>; | ||
/** | ||
@@ -453,6 +462,7 @@ * Create URL attribute | ||
* @param {string} xdefault | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeUrl>} | ||
*/ | ||
updateUrlAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string): Promise<Models.AttributeUrl>; | ||
updateUrlAttribute(databaseId: string, collectionId: string, key: string, required: boolean, xdefault?: string, newKey?: string): Promise<Models.AttributeUrl>; | ||
/** | ||
@@ -492,6 +502,7 @@ * Get attribute | ||
* @param {RelationMutate} onDelete | ||
* @param {string} newKey | ||
* @throws {AppwriteException} | ||
* @returns {Promise<Models.AttributeRelationship>} | ||
*/ | ||
updateRelationshipAttribute(databaseId: string, collectionId: string, key: string, onDelete?: RelationMutate): Promise<Models.AttributeRelationship>; | ||
updateRelationshipAttribute(databaseId: string, collectionId: string, key: string, onDelete?: RelationMutate, newKey?: string): Promise<Models.AttributeRelationship>; | ||
/** | ||
@@ -498,0 +509,0 @@ * List documents |
@@ -5,3 +5,3 @@ { | ||
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API", | ||
"version": "14.0.0", | ||
"version": "14.1.0", | ||
"license": "BSD-3-Clause", | ||
@@ -8,0 +8,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2366150
0.35%29318
0.34%