Complete Email Sortierer implementation with Appwrite and Stripe integration
This commit is contained in:
142
server/node_modules/node-appwrite/dist/client.d.mts
generated
vendored
Normal file
142
server/node_modules/node-appwrite/dist/client.d.mts
generated
vendored
Normal file
@@ -0,0 +1,142 @@
|
||||
export { Models } from './models.mjs';
|
||||
export { Query, QueryTypes, QueryTypesList } from './query.mjs';
|
||||
import './enums/database-type.mjs';
|
||||
import './enums/attribute-status.mjs';
|
||||
import './enums/column-status.mjs';
|
||||
import './enums/index-status.mjs';
|
||||
import './enums/deployment-status.mjs';
|
||||
import './enums/execution-trigger.mjs';
|
||||
import './enums/execution-status.mjs';
|
||||
import './enums/health-antivirus-status.mjs';
|
||||
import './enums/health-check-status.mjs';
|
||||
import './enums/message-status.mjs';
|
||||
|
||||
type Payload = {
|
||||
[key: string]: any;
|
||||
};
|
||||
type UploadProgress = {
|
||||
$id: string;
|
||||
progress: number;
|
||||
sizeUploaded: number;
|
||||
chunksTotal: number;
|
||||
chunksUploaded: number;
|
||||
};
|
||||
type Headers = {
|
||||
[key: string]: string;
|
||||
};
|
||||
declare class AppwriteException extends Error {
|
||||
code: number;
|
||||
response: string;
|
||||
type: string;
|
||||
constructor(message: string, code?: number, type?: string, response?: string);
|
||||
}
|
||||
declare class Client {
|
||||
static CHUNK_SIZE: number;
|
||||
config: {
|
||||
endpoint: string;
|
||||
selfSigned: boolean;
|
||||
project: string;
|
||||
key: string;
|
||||
jwt: string;
|
||||
locale: string;
|
||||
session: string;
|
||||
forwardeduseragent: string;
|
||||
};
|
||||
headers: Headers;
|
||||
/**
|
||||
* Set Endpoint
|
||||
*
|
||||
* Your project endpoint
|
||||
*
|
||||
* @param {string} endpoint
|
||||
*
|
||||
* @returns {this}
|
||||
*/
|
||||
setEndpoint(endpoint: string): this;
|
||||
/**
|
||||
* Set self-signed
|
||||
*
|
||||
* @param {boolean} selfSigned
|
||||
*
|
||||
* @returns {this}
|
||||
*/
|
||||
setSelfSigned(selfSigned: boolean): this;
|
||||
/**
|
||||
* Add header
|
||||
*
|
||||
* @param {string} header
|
||||
* @param {string} value
|
||||
*
|
||||
* @returns {this}
|
||||
*/
|
||||
addHeader(header: string, value: string): this;
|
||||
/**
|
||||
* Set Project
|
||||
*
|
||||
* Your project ID
|
||||
*
|
||||
* @param value string
|
||||
*
|
||||
* @return {this}
|
||||
*/
|
||||
setProject(value: string): this;
|
||||
/**
|
||||
* Set Key
|
||||
*
|
||||
* Your secret API key
|
||||
*
|
||||
* @param value string
|
||||
*
|
||||
* @return {this}
|
||||
*/
|
||||
setKey(value: string): this;
|
||||
/**
|
||||
* Set JWT
|
||||
*
|
||||
* Your secret JSON Web Token
|
||||
*
|
||||
* @param value string
|
||||
*
|
||||
* @return {this}
|
||||
*/
|
||||
setJWT(value: string): this;
|
||||
/**
|
||||
* Set Locale
|
||||
*
|
||||
* @param value string
|
||||
*
|
||||
* @return {this}
|
||||
*/
|
||||
setLocale(value: string): this;
|
||||
/**
|
||||
* Set Session
|
||||
*
|
||||
* The user session to authenticate with
|
||||
*
|
||||
* @param value string
|
||||
*
|
||||
* @return {this}
|
||||
*/
|
||||
setSession(value: string): this;
|
||||
/**
|
||||
* Set ForwardedUserAgent
|
||||
*
|
||||
* The user agent string of the client that made the request
|
||||
*
|
||||
* @param value string
|
||||
*
|
||||
* @return {this}
|
||||
*/
|
||||
setForwardedUserAgent(value: string): this;
|
||||
prepareRequest(method: string, url: URL, headers?: Headers, params?: Payload): {
|
||||
uri: string;
|
||||
options: RequestInit;
|
||||
};
|
||||
chunkedUpload(method: string, url: URL, headers: Headers | undefined, originalPayload: Payload | undefined, onProgress: (progress: UploadProgress) => void): Promise<any>;
|
||||
ping(): Promise<string>;
|
||||
redirect(method: string, url: URL, headers?: Headers, params?: Payload): Promise<string>;
|
||||
call(method: string, url: URL, headers?: Headers, params?: Payload, responseType?: string): Promise<any>;
|
||||
static flatten(data: Payload, prefix?: string): Payload;
|
||||
}
|
||||
|
||||
export { AppwriteException, Client, Payload, UploadProgress };
|
||||
Reference in New Issue
Block a user