appbuild-oceanbase-console 1.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +12 -0
- package/README.md +191 -0
- package/dist/cjs/package.json +3 -0
- package/dist/cjs/sdk.js +27712 -0
- package/dist/cjs/sdk.js.map +1 -0
- package/dist/esm/package.json +3 -0
- package/dist/esm/sdk.js +27675 -0
- package/dist/esm/sdk.js.map +1 -0
- package/dist/iife/sdk.js +27716 -0
- package/package.json +47 -0
- package/types/client.d.ts +211 -0
- package/types/enums/adapter.d.ts +4 -0
- package/types/enums/api-service.d.ts +15 -0
- package/types/enums/api.d.ts +5 -0
- package/types/enums/attribute-status.d.ts +7 -0
- package/types/enums/auth-method.d.ts +9 -0
- package/types/enums/authentication-factor.d.ts +6 -0
- package/types/enums/authenticator-type.d.ts +3 -0
- package/types/enums/billing-plan.d.ts +10 -0
- package/types/enums/browser.d.ts +16 -0
- package/types/enums/build-runtime.d.ts +66 -0
- package/types/enums/column-status.d.ts +7 -0
- package/types/enums/compression.d.ts +5 -0
- package/types/enums/console-resource-type.d.ts +3 -0
- package/types/enums/credit-card.d.ts +19 -0
- package/types/enums/database-type.d.ts +4 -0
- package/types/enums/deployment-download-type.d.ts +4 -0
- package/types/enums/deployment-status.d.ts +7 -0
- package/types/enums/email-template-locale.d.ts +133 -0
- package/types/enums/email-template-type.d.ts +9 -0
- package/types/enums/execution-method.d.ts +9 -0
- package/types/enums/execution-status.d.ts +7 -0
- package/types/enums/execution-trigger.d.ts +5 -0
- package/types/enums/flag.d.ts +197 -0
- package/types/enums/framework.d.ts +17 -0
- package/types/enums/health-antivirus-status.d.ts +5 -0
- package/types/enums/health-check-status.d.ts +4 -0
- package/types/enums/image-format.d.ts +9 -0
- package/types/enums/image-gravity.d.ts +11 -0
- package/types/enums/index-status.d.ts +7 -0
- package/types/enums/index-type.d.ts +6 -0
- package/types/enums/message-priority.d.ts +4 -0
- package/types/enums/message-status.d.ts +7 -0
- package/types/enums/messaging-provider-type.d.ts +5 -0
- package/types/enums/name.d.ts +14 -0
- package/types/enums/o-auth-provider.d.ts +43 -0
- package/types/enums/output.d.ts +9 -0
- package/types/enums/password-hash.d.ts +13 -0
- package/types/enums/platform-type.d.ts +17 -0
- package/types/enums/platform.d.ts +4 -0
- package/types/enums/project-usage-range.d.ts +4 -0
- package/types/enums/proxy-resource-type.d.ts +4 -0
- package/types/enums/proxy-rule-deployment-resource-type.d.ts +4 -0
- package/types/enums/proxy-rule-status.d.ts +6 -0
- package/types/enums/region.d.ts +8 -0
- package/types/enums/relation-mutate.d.ts +5 -0
- package/types/enums/relationship-type.d.ts +6 -0
- package/types/enums/runtime.d.ts +66 -0
- package/types/enums/sms-template-locale.d.ts +133 -0
- package/types/enums/sms-template-type.d.ts +6 -0
- package/types/enums/smtp-encryption.d.ts +5 -0
- package/types/enums/smtp-secure.d.ts +4 -0
- package/types/enums/status-code.d.ts +6 -0
- package/types/enums/status.d.ts +4 -0
- package/types/enums/theme.d.ts +4 -0
- package/types/enums/timezone.d.ts +421 -0
- package/types/enums/type.d.ts +5 -0
- package/types/enums/usage-range.d.ts +5 -0
- package/types/enums/vcs-deployment-type.d.ts +5 -0
- package/types/enums/vcs-detection-type.d.ts +4 -0
- package/types/id.d.ts +20 -0
- package/types/index.d.ts +102 -0
- package/types/migrations.d.ts +240 -0
- package/types/models.d.ts +7945 -0
- package/types/operator.d.ts +180 -0
- package/types/permission.d.ts +43 -0
- package/types/query.d.ts +390 -0
- package/types/role.d.ts +70 -0
- package/types/sdk.d.ts +108 -0
- package/types/service.d.ts +11 -0
- package/types/services/account.d.ts +1413 -0
- package/types/services/assistant.d.ts +24 -0
- package/types/services/avatars.d.ts +319 -0
- package/types/services/backups.d.ts +276 -0
- package/types/services/console.d.ts +210 -0
- package/types/services/databases.d.ts +2119 -0
- package/types/services/domains.d.ts +1276 -0
- package/types/services/functions.d.ts +827 -0
- package/types/services/graphql.d.ts +43 -0
- package/types/services/health.d.ts +432 -0
- package/types/services/locale.d.ts +64 -0
- package/types/services/messaging.d.ts +1989 -0
- package/types/services/migrations.d.ts +413 -0
- package/types/services/organizations.d.ts +842 -0
- package/types/services/project.d.ts +130 -0
- package/types/services/projects.d.ts +1663 -0
- package/types/services/proxy.d.ts +190 -0
- package/types/services/realtime.d.ts +118 -0
- package/types/services/sites.d.ts +780 -0
- package/types/services/storage.d.ts +467 -0
- package/types/services/tables-db.d.ts +2034 -0
- package/types/services/teams.d.ts +366 -0
- package/types/services/tokens.d.ts +119 -0
- package/types/services/users.d.ts +1184 -0
- package/types/services/vcs.d.ts +249 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "appbuild-oceanbase-console",
|
|
3
|
+
"homepage": "https://appwrite.io/support",
|
|
4
|
+
"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",
|
|
5
|
+
"version": "1.10.2",
|
|
6
|
+
"license": "BSD-3-Clause",
|
|
7
|
+
"main": "dist/cjs/sdk.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/esm/sdk.js",
|
|
11
|
+
"require": "./dist/cjs/sdk.js",
|
|
12
|
+
"types": "./types/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"module": "dist/esm/sdk.js",
|
|
17
|
+
"types": "types/index.d.ts",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"types",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/appwrite/sdk-for-console.git"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "npm run build:types && npm run build:libs",
|
|
33
|
+
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types",
|
|
34
|
+
"build:libs": "rollup -c"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@rollup/plugin-typescript": "8.3.2",
|
|
38
|
+
"playwright": "1.15.0",
|
|
39
|
+
"rollup": "2.79.2",
|
|
40
|
+
"serve-handler": "6.1.0",
|
|
41
|
+
"tslib": "2.4.0",
|
|
42
|
+
"typescript": "4.7.2"
|
|
43
|
+
},
|
|
44
|
+
"jsdelivr": "dist/iife/sdk.js",
|
|
45
|
+
"unpkg": "dist/iife/sdk.js",
|
|
46
|
+
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
|
|
47
|
+
}
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
import { Models } from './models';
|
|
2
|
+
/**
|
|
3
|
+
* Payload type representing a key-value pair with string keys and any values.
|
|
4
|
+
*/
|
|
5
|
+
declare type Payload = {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Headers type representing a key-value pair with string keys and string values.
|
|
10
|
+
*/
|
|
11
|
+
declare type Headers = {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Realtime event response structure with generic payload type.
|
|
16
|
+
*/
|
|
17
|
+
declare type RealtimeResponseEvent<T extends unknown> = {
|
|
18
|
+
/**
|
|
19
|
+
* List of event names associated with the response.
|
|
20
|
+
*/
|
|
21
|
+
events: string[];
|
|
22
|
+
/**
|
|
23
|
+
* List of channel names associated with the response.
|
|
24
|
+
*/
|
|
25
|
+
channels: string[];
|
|
26
|
+
/**
|
|
27
|
+
* Timestamp indicating the time of the event.
|
|
28
|
+
*/
|
|
29
|
+
timestamp: number;
|
|
30
|
+
/**
|
|
31
|
+
* Payload containing event-specific data.
|
|
32
|
+
*/
|
|
33
|
+
payload: T;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Type representing upload progress information.
|
|
37
|
+
*/
|
|
38
|
+
declare type UploadProgress = {
|
|
39
|
+
/**
|
|
40
|
+
* Identifier for the upload progress.
|
|
41
|
+
*/
|
|
42
|
+
$id: string;
|
|
43
|
+
/**
|
|
44
|
+
* Current progress of the upload (in percentage).
|
|
45
|
+
*/
|
|
46
|
+
progress: number;
|
|
47
|
+
/**
|
|
48
|
+
* Total size uploaded (in bytes) during the upload process.
|
|
49
|
+
*/
|
|
50
|
+
sizeUploaded: number;
|
|
51
|
+
/**
|
|
52
|
+
* Total number of chunks that need to be uploaded.
|
|
53
|
+
*/
|
|
54
|
+
chunksTotal: number;
|
|
55
|
+
/**
|
|
56
|
+
* Number of chunks that have been successfully uploaded.
|
|
57
|
+
*/
|
|
58
|
+
chunksUploaded: number;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Exception thrown by the package
|
|
62
|
+
*/
|
|
63
|
+
declare class AppwriteException extends Error {
|
|
64
|
+
/**
|
|
65
|
+
* The error code associated with the exception.
|
|
66
|
+
*/
|
|
67
|
+
code: number;
|
|
68
|
+
/**
|
|
69
|
+
* The response string associated with the exception.
|
|
70
|
+
*/
|
|
71
|
+
response: string;
|
|
72
|
+
/**
|
|
73
|
+
* Error type.
|
|
74
|
+
* See [Error Types](https://appwrite.io/docs/response-codes#errorTypes) for more information.
|
|
75
|
+
*/
|
|
76
|
+
type: string;
|
|
77
|
+
/**
|
|
78
|
+
* Initializes a Appwrite Exception.
|
|
79
|
+
*
|
|
80
|
+
* @param {string} message - The error message.
|
|
81
|
+
* @param {number} code - The error code. Default is 0.
|
|
82
|
+
* @param {string} type - The error type. Default is an empty string.
|
|
83
|
+
* @param {string} response - The response string. Default is an empty string.
|
|
84
|
+
*/
|
|
85
|
+
constructor(message: string, code?: number, type?: string, response?: string);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Client that handles requests to Appwrite
|
|
89
|
+
*/
|
|
90
|
+
declare class Client {
|
|
91
|
+
static CHUNK_SIZE: number;
|
|
92
|
+
/**
|
|
93
|
+
* Holds configuration such as project.
|
|
94
|
+
*/
|
|
95
|
+
config: {
|
|
96
|
+
endpoint: string;
|
|
97
|
+
endpointRealtime: string;
|
|
98
|
+
[key: string]: string | undefined;
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Custom headers for API requests.
|
|
102
|
+
*/
|
|
103
|
+
headers: Headers;
|
|
104
|
+
/**
|
|
105
|
+
* Set Endpoint
|
|
106
|
+
*
|
|
107
|
+
* Your project endpoint
|
|
108
|
+
*
|
|
109
|
+
* @param {string} endpoint
|
|
110
|
+
*
|
|
111
|
+
* @returns {this}
|
|
112
|
+
*/
|
|
113
|
+
setEndpoint(endpoint: string): this;
|
|
114
|
+
/**
|
|
115
|
+
* Set Realtime Endpoint
|
|
116
|
+
*
|
|
117
|
+
* @param {string} endpointRealtime
|
|
118
|
+
*
|
|
119
|
+
* @returns {this}
|
|
120
|
+
*/
|
|
121
|
+
setEndpointRealtime(endpointRealtime: string): this;
|
|
122
|
+
/**
|
|
123
|
+
* Set Project
|
|
124
|
+
*
|
|
125
|
+
* Your project ID
|
|
126
|
+
*
|
|
127
|
+
* @param value string
|
|
128
|
+
*
|
|
129
|
+
* @return {this}
|
|
130
|
+
*/
|
|
131
|
+
setProject(value: string): this;
|
|
132
|
+
/**
|
|
133
|
+
* Set Key
|
|
134
|
+
*
|
|
135
|
+
* Your secret API key
|
|
136
|
+
*
|
|
137
|
+
* @param value string
|
|
138
|
+
*
|
|
139
|
+
* @return {this}
|
|
140
|
+
*/
|
|
141
|
+
setKey(value: string): this;
|
|
142
|
+
/**
|
|
143
|
+
* Set JWT
|
|
144
|
+
*
|
|
145
|
+
* Your secret JSON Web Token
|
|
146
|
+
*
|
|
147
|
+
* @param value string
|
|
148
|
+
*
|
|
149
|
+
* @return {this}
|
|
150
|
+
*/
|
|
151
|
+
setJWT(value: string): this;
|
|
152
|
+
/**
|
|
153
|
+
* Set Locale
|
|
154
|
+
*
|
|
155
|
+
* @param value string
|
|
156
|
+
*
|
|
157
|
+
* @return {this}
|
|
158
|
+
*/
|
|
159
|
+
setLocale(value: string): this;
|
|
160
|
+
/**
|
|
161
|
+
* Set Mode
|
|
162
|
+
*
|
|
163
|
+
* @param value string
|
|
164
|
+
*
|
|
165
|
+
* @return {this}
|
|
166
|
+
*/
|
|
167
|
+
setMode(value: string): this;
|
|
168
|
+
private realtime;
|
|
169
|
+
/**
|
|
170
|
+
* Subscribes to Appwrite events and passes you the payload in realtime.
|
|
171
|
+
*
|
|
172
|
+
* @deprecated Use the Realtime service instead.
|
|
173
|
+
* @see Realtime
|
|
174
|
+
*
|
|
175
|
+
* @param {string|string[]} channels
|
|
176
|
+
* Channel to subscribe - pass a single channel as a string or multiple with an array of strings.
|
|
177
|
+
*
|
|
178
|
+
* Possible channels are:
|
|
179
|
+
* - account
|
|
180
|
+
* - collections
|
|
181
|
+
* - collections.[ID]
|
|
182
|
+
* - collections.[ID].documents
|
|
183
|
+
* - documents
|
|
184
|
+
* - documents.[ID]
|
|
185
|
+
* - files
|
|
186
|
+
* - files.[ID]
|
|
187
|
+
* - executions
|
|
188
|
+
* - executions.[ID]
|
|
189
|
+
* - functions.[ID]
|
|
190
|
+
* - teams
|
|
191
|
+
* - teams.[ID]
|
|
192
|
+
* - memberships
|
|
193
|
+
* - memberships.[ID]
|
|
194
|
+
* @param {(payload: RealtimeMessage) => void} callback Is called on every realtime update.
|
|
195
|
+
* @returns {() => void} Unsubscribes from events.
|
|
196
|
+
*/
|
|
197
|
+
subscribe<T extends unknown>(channels: string | string[], callback: (payload: RealtimeResponseEvent<T>) => void): () => void;
|
|
198
|
+
prepareRequest(method: string, url: URL, headers?: Headers, params?: Payload): {
|
|
199
|
+
uri: string;
|
|
200
|
+
options: RequestInit;
|
|
201
|
+
};
|
|
202
|
+
chunkedUpload(method: string, url: URL, headers: Headers | undefined, originalPayload: Payload | undefined, onProgress: (progress: UploadProgress) => void): Promise<any>;
|
|
203
|
+
ping(): Promise<string>;
|
|
204
|
+
call(method: string, url: URL, headers?: Headers, params?: Payload, responseType?: string): Promise<any>;
|
|
205
|
+
static flatten(data: Payload, prefix?: string): Payload;
|
|
206
|
+
}
|
|
207
|
+
export { Client, AppwriteException };
|
|
208
|
+
export { Query } from './query';
|
|
209
|
+
export type { Models, Payload, UploadProgress };
|
|
210
|
+
export type { RealtimeResponseEvent };
|
|
211
|
+
export type { QueryTypes, QueryTypesList } from './query';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum ApiService {
|
|
2
|
+
Account = "account",
|
|
3
|
+
Avatars = "avatars",
|
|
4
|
+
Databases = "databases",
|
|
5
|
+
Tablesdb = "tablesdb",
|
|
6
|
+
Locale = "locale",
|
|
7
|
+
Health = "health",
|
|
8
|
+
Storage = "storage",
|
|
9
|
+
Teams = "teams",
|
|
10
|
+
Users = "users",
|
|
11
|
+
Sites = "sites",
|
|
12
|
+
Functions = "functions",
|
|
13
|
+
Graphql = "graphql",
|
|
14
|
+
Messaging = "messaging"
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum BillingPlan {
|
|
2
|
+
Tier0 = "tier-0",
|
|
3
|
+
Tier1 = "tier-1",
|
|
4
|
+
Tier2 = "tier-2",
|
|
5
|
+
Imaginestarter = "imagine-starter",
|
|
6
|
+
Imaginebasic = "imagine-basic",
|
|
7
|
+
Imaginepro = "imagine-pro",
|
|
8
|
+
Imaginebusiness = "imagine-business",
|
|
9
|
+
Imagineenterprise = "imagine-enterprise"
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum Browser {
|
|
2
|
+
AvantBrowser = "aa",
|
|
3
|
+
AndroidWebViewBeta = "an",
|
|
4
|
+
GoogleChrome = "ch",
|
|
5
|
+
GoogleChromeIOS = "ci",
|
|
6
|
+
GoogleChromeMobile = "cm",
|
|
7
|
+
Chromium = "cr",
|
|
8
|
+
MozillaFirefox = "ff",
|
|
9
|
+
Safari = "sf",
|
|
10
|
+
MobileSafari = "mf",
|
|
11
|
+
MicrosoftEdge = "ps",
|
|
12
|
+
MicrosoftEdgeIOS = "oi",
|
|
13
|
+
OperaMini = "om",
|
|
14
|
+
Opera = "op",
|
|
15
|
+
OperaNext = "on"
|
|
16
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export declare enum BuildRuntime {
|
|
2
|
+
Node145 = "node-14.5",
|
|
3
|
+
Node160 = "node-16.0",
|
|
4
|
+
Node180 = "node-18.0",
|
|
5
|
+
Node190 = "node-19.0",
|
|
6
|
+
Node200 = "node-20.0",
|
|
7
|
+
Node210 = "node-21.0",
|
|
8
|
+
Node22 = "node-22",
|
|
9
|
+
Php80 = "php-8.0",
|
|
10
|
+
Php81 = "php-8.1",
|
|
11
|
+
Php82 = "php-8.2",
|
|
12
|
+
Php83 = "php-8.3",
|
|
13
|
+
Ruby30 = "ruby-3.0",
|
|
14
|
+
Ruby31 = "ruby-3.1",
|
|
15
|
+
Ruby32 = "ruby-3.2",
|
|
16
|
+
Ruby33 = "ruby-3.3",
|
|
17
|
+
Python38 = "python-3.8",
|
|
18
|
+
Python39 = "python-3.9",
|
|
19
|
+
Python310 = "python-3.10",
|
|
20
|
+
Python311 = "python-3.11",
|
|
21
|
+
Python312 = "python-3.12",
|
|
22
|
+
Pythonml311 = "python-ml-3.11",
|
|
23
|
+
Pythonml312 = "python-ml-3.12",
|
|
24
|
+
Deno140 = "deno-1.40",
|
|
25
|
+
Deno146 = "deno-1.46",
|
|
26
|
+
Deno20 = "deno-2.0",
|
|
27
|
+
Dart215 = "dart-2.15",
|
|
28
|
+
Dart216 = "dart-2.16",
|
|
29
|
+
Dart217 = "dart-2.17",
|
|
30
|
+
Dart218 = "dart-2.18",
|
|
31
|
+
Dart219 = "dart-2.19",
|
|
32
|
+
Dart30 = "dart-3.0",
|
|
33
|
+
Dart31 = "dart-3.1",
|
|
34
|
+
Dart33 = "dart-3.3",
|
|
35
|
+
Dart35 = "dart-3.5",
|
|
36
|
+
Dart38 = "dart-3.8",
|
|
37
|
+
Dart39 = "dart-3.9",
|
|
38
|
+
Dotnet60 = "dotnet-6.0",
|
|
39
|
+
Dotnet70 = "dotnet-7.0",
|
|
40
|
+
Dotnet80 = "dotnet-8.0",
|
|
41
|
+
Java80 = "java-8.0",
|
|
42
|
+
Java110 = "java-11.0",
|
|
43
|
+
Java170 = "java-17.0",
|
|
44
|
+
Java180 = "java-18.0",
|
|
45
|
+
Java210 = "java-21.0",
|
|
46
|
+
Java22 = "java-22",
|
|
47
|
+
Swift55 = "swift-5.5",
|
|
48
|
+
Swift58 = "swift-5.8",
|
|
49
|
+
Swift59 = "swift-5.9",
|
|
50
|
+
Swift510 = "swift-5.10",
|
|
51
|
+
Kotlin16 = "kotlin-1.6",
|
|
52
|
+
Kotlin18 = "kotlin-1.8",
|
|
53
|
+
Kotlin19 = "kotlin-1.9",
|
|
54
|
+
Kotlin20 = "kotlin-2.0",
|
|
55
|
+
Cpp17 = "cpp-17",
|
|
56
|
+
Cpp20 = "cpp-20",
|
|
57
|
+
Bun10 = "bun-1.0",
|
|
58
|
+
Bun11 = "bun-1.1",
|
|
59
|
+
Go123 = "go-1.23",
|
|
60
|
+
Static1 = "static-1",
|
|
61
|
+
Flutter324 = "flutter-3.24",
|
|
62
|
+
Flutter327 = "flutter-3.27",
|
|
63
|
+
Flutter329 = "flutter-3.29",
|
|
64
|
+
Flutter332 = "flutter-3.32",
|
|
65
|
+
Flutter335 = "flutter-3.35"
|
|
66
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare enum CreditCard {
|
|
2
|
+
AmericanExpress = "amex",
|
|
3
|
+
Argencard = "argencard",
|
|
4
|
+
Cabal = "cabal",
|
|
5
|
+
Cencosud = "cencosud",
|
|
6
|
+
DinersClub = "diners",
|
|
7
|
+
Discover = "discover",
|
|
8
|
+
Elo = "elo",
|
|
9
|
+
Hipercard = "hipercard",
|
|
10
|
+
JCB = "jcb",
|
|
11
|
+
Mastercard = "mastercard",
|
|
12
|
+
Naranja = "naranja",
|
|
13
|
+
TarjetaShopping = "targeta-shopping",
|
|
14
|
+
UnionPay = "unionpay",
|
|
15
|
+
Visa = "visa",
|
|
16
|
+
MIR = "mir",
|
|
17
|
+
Maestro = "maestro",
|
|
18
|
+
Rupay = "rupay"
|
|
19
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
export declare enum EmailTemplateLocale {
|
|
2
|
+
Af = "af",
|
|
3
|
+
Arae = "ar-ae",
|
|
4
|
+
Arbh = "ar-bh",
|
|
5
|
+
Ardz = "ar-dz",
|
|
6
|
+
Areg = "ar-eg",
|
|
7
|
+
Ariq = "ar-iq",
|
|
8
|
+
Arjo = "ar-jo",
|
|
9
|
+
Arkw = "ar-kw",
|
|
10
|
+
Arlb = "ar-lb",
|
|
11
|
+
Arly = "ar-ly",
|
|
12
|
+
Arma = "ar-ma",
|
|
13
|
+
Arom = "ar-om",
|
|
14
|
+
Arqa = "ar-qa",
|
|
15
|
+
Arsa = "ar-sa",
|
|
16
|
+
Arsy = "ar-sy",
|
|
17
|
+
Artn = "ar-tn",
|
|
18
|
+
Arye = "ar-ye",
|
|
19
|
+
As = "as",
|
|
20
|
+
Az = "az",
|
|
21
|
+
Be = "be",
|
|
22
|
+
Bg = "bg",
|
|
23
|
+
Bh = "bh",
|
|
24
|
+
Bn = "bn",
|
|
25
|
+
Bs = "bs",
|
|
26
|
+
Ca = "ca",
|
|
27
|
+
Cs = "cs",
|
|
28
|
+
Cy = "cy",
|
|
29
|
+
Da = "da",
|
|
30
|
+
De = "de",
|
|
31
|
+
Deat = "de-at",
|
|
32
|
+
Dech = "de-ch",
|
|
33
|
+
Deli = "de-li",
|
|
34
|
+
Delu = "de-lu",
|
|
35
|
+
El = "el",
|
|
36
|
+
En = "en",
|
|
37
|
+
Enau = "en-au",
|
|
38
|
+
Enbz = "en-bz",
|
|
39
|
+
Enca = "en-ca",
|
|
40
|
+
Engb = "en-gb",
|
|
41
|
+
Enie = "en-ie",
|
|
42
|
+
Enjm = "en-jm",
|
|
43
|
+
Ennz = "en-nz",
|
|
44
|
+
Entt = "en-tt",
|
|
45
|
+
Enus = "en-us",
|
|
46
|
+
Enza = "en-za",
|
|
47
|
+
Eo = "eo",
|
|
48
|
+
Es = "es",
|
|
49
|
+
Esar = "es-ar",
|
|
50
|
+
Esbo = "es-bo",
|
|
51
|
+
Escl = "es-cl",
|
|
52
|
+
Esco = "es-co",
|
|
53
|
+
Escr = "es-cr",
|
|
54
|
+
Esdo = "es-do",
|
|
55
|
+
Esec = "es-ec",
|
|
56
|
+
Esgt = "es-gt",
|
|
57
|
+
Eshn = "es-hn",
|
|
58
|
+
Esmx = "es-mx",
|
|
59
|
+
Esni = "es-ni",
|
|
60
|
+
Espa = "es-pa",
|
|
61
|
+
Espe = "es-pe",
|
|
62
|
+
Espr = "es-pr",
|
|
63
|
+
Espy = "es-py",
|
|
64
|
+
Essv = "es-sv",
|
|
65
|
+
Esuy = "es-uy",
|
|
66
|
+
Esve = "es-ve",
|
|
67
|
+
Et = "et",
|
|
68
|
+
Eu = "eu",
|
|
69
|
+
Fa = "fa",
|
|
70
|
+
Fi = "fi",
|
|
71
|
+
Fo = "fo",
|
|
72
|
+
Fr = "fr",
|
|
73
|
+
Frbe = "fr-be",
|
|
74
|
+
Frca = "fr-ca",
|
|
75
|
+
Frch = "fr-ch",
|
|
76
|
+
Frlu = "fr-lu",
|
|
77
|
+
Ga = "ga",
|
|
78
|
+
Gd = "gd",
|
|
79
|
+
He = "he",
|
|
80
|
+
Hi = "hi",
|
|
81
|
+
Hr = "hr",
|
|
82
|
+
Hu = "hu",
|
|
83
|
+
Id = "id",
|
|
84
|
+
Is = "is",
|
|
85
|
+
It = "it",
|
|
86
|
+
Itch = "it-ch",
|
|
87
|
+
Ja = "ja",
|
|
88
|
+
Ji = "ji",
|
|
89
|
+
Ko = "ko",
|
|
90
|
+
Ku = "ku",
|
|
91
|
+
Lt = "lt",
|
|
92
|
+
Lv = "lv",
|
|
93
|
+
Mk = "mk",
|
|
94
|
+
Ml = "ml",
|
|
95
|
+
Ms = "ms",
|
|
96
|
+
Mt = "mt",
|
|
97
|
+
Nb = "nb",
|
|
98
|
+
Ne = "ne",
|
|
99
|
+
Nl = "nl",
|
|
100
|
+
Nlbe = "nl-be",
|
|
101
|
+
Nn = "nn",
|
|
102
|
+
No = "no",
|
|
103
|
+
Pa = "pa",
|
|
104
|
+
Pl = "pl",
|
|
105
|
+
Pt = "pt",
|
|
106
|
+
Ptbr = "pt-br",
|
|
107
|
+
Rm = "rm",
|
|
108
|
+
Ro = "ro",
|
|
109
|
+
Romd = "ro-md",
|
|
110
|
+
Ru = "ru",
|
|
111
|
+
Rumd = "ru-md",
|
|
112
|
+
Sb = "sb",
|
|
113
|
+
Sk = "sk",
|
|
114
|
+
Sl = "sl",
|
|
115
|
+
Sq = "sq",
|
|
116
|
+
Sr = "sr",
|
|
117
|
+
Sv = "sv",
|
|
118
|
+
Svfi = "sv-fi",
|
|
119
|
+
Th = "th",
|
|
120
|
+
Tn = "tn",
|
|
121
|
+
Tr = "tr",
|
|
122
|
+
Ts = "ts",
|
|
123
|
+
Ua = "ua",
|
|
124
|
+
Ur = "ur",
|
|
125
|
+
Ve = "ve",
|
|
126
|
+
Vi = "vi",
|
|
127
|
+
Xh = "xh",
|
|
128
|
+
Zhcn = "zh-cn",
|
|
129
|
+
Zhhk = "zh-hk",
|
|
130
|
+
Zhsg = "zh-sg",
|
|
131
|
+
Zhtw = "zh-tw",
|
|
132
|
+
Zu = "zu"
|
|
133
|
+
}
|