@appwrite.io/console 8.1.0 → 8.1.1

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.
Files changed (898) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/sdk.js +1 -1
  3. package/dist/cjs/sdk.js.map +1 -0
  4. package/dist/esm/sdk.js +29705 -0
  5. package/dist/esm/sdk.js.map +1 -0
  6. package/dist/iife/sdk.js +33515 -0
  7. package/package.json +5 -1
  8. package/types/channel.d.ts +74 -0
  9. package/types/client.d.ts +302 -0
  10. package/types/enums/adapter.d.ts +4 -0
  11. package/types/enums/api-service.d.ts +15 -0
  12. package/types/enums/api.d.ts +5 -0
  13. package/types/enums/appwrite-migration-resource.d.ts +27 -0
  14. package/types/enums/attribute-status.d.ts +7 -0
  15. package/types/enums/auth-method.d.ts +9 -0
  16. package/types/enums/authentication-factor.d.ts +6 -0
  17. package/types/enums/authenticator-type.d.ts +3 -0
  18. package/types/enums/backup-services.d.ts +8 -0
  19. package/types/enums/billing-plan-group.d.ts +5 -0
  20. package/types/enums/browser-permission.d.ts +22 -0
  21. package/types/enums/browser.d.ts +16 -0
  22. package/types/enums/build-runtime.d.ts +88 -0
  23. package/types/enums/column-status.d.ts +7 -0
  24. package/types/enums/compression.d.ts +5 -0
  25. package/types/enums/console-resource-type.d.ts +3 -0
  26. package/types/enums/credit-card.d.ts +19 -0
  27. package/types/enums/database-type.d.ts +6 -0
  28. package/types/enums/databases-index-type.d.ts +6 -0
  29. package/types/enums/deployment-download-type.d.ts +4 -0
  30. package/types/enums/deployment-status.d.ts +8 -0
  31. package/types/enums/domain-purchase-status.d.ts +6 -0
  32. package/types/enums/domain-transfer-status-enum.d.ts +10 -0
  33. package/types/enums/email-template-locale.d.ts +133 -0
  34. package/types/enums/email-template-type.d.ts +9 -0
  35. package/types/enums/execution-method.d.ts +9 -0
  36. package/types/enums/execution-status.d.ts +7 -0
  37. package/types/enums/execution-trigger.d.ts +5 -0
  38. package/types/enums/filter-type.d.ts +4 -0
  39. package/types/enums/firebase-migration-resource.d.ts +12 -0
  40. package/types/enums/flag.d.ts +197 -0
  41. package/types/enums/framework.d.ts +17 -0
  42. package/types/enums/frameworks.d.ts +17 -0
  43. package/types/enums/health-antivirus-status.d.ts +5 -0
  44. package/types/enums/health-check-status.d.ts +4 -0
  45. package/types/enums/image-format.d.ts +9 -0
  46. package/types/enums/image-gravity.d.ts +11 -0
  47. package/types/enums/index-status.d.ts +7 -0
  48. package/types/enums/message-priority.d.ts +4 -0
  49. package/types/enums/message-status.d.ts +7 -0
  50. package/types/enums/messaging-provider-type.d.ts +5 -0
  51. package/types/enums/n-host-migration-resource.d.ts +13 -0
  52. package/types/enums/name.d.ts +15 -0
  53. package/types/enums/o-auth-provider.d.ts +41 -0
  54. package/types/enums/order-by.d.ts +4 -0
  55. package/types/enums/password-hash.d.ts +13 -0
  56. package/types/enums/platform-type.d.ts +17 -0
  57. package/types/enums/platform.d.ts +4 -0
  58. package/types/enums/project-usage-range.d.ts +4 -0
  59. package/types/enums/proxy-resource-type.d.ts +4 -0
  60. package/types/enums/proxy-rule-deployment-resource-type.d.ts +4 -0
  61. package/types/enums/proxy-rule-status.d.ts +6 -0
  62. package/types/enums/region.d.ts +8 -0
  63. package/types/enums/registration-type.d.ts +6 -0
  64. package/types/enums/relation-mutate.d.ts +5 -0
  65. package/types/enums/relationship-type.d.ts +6 -0
  66. package/types/enums/resource-type.d.ts +6 -0
  67. package/types/enums/runtime.d.ts +88 -0
  68. package/types/enums/runtimes.d.ts +88 -0
  69. package/types/enums/scopes.d.ts +81 -0
  70. package/types/enums/sms-template-locale.d.ts +133 -0
  71. package/types/enums/sms-template-type.d.ts +6 -0
  72. package/types/enums/smtp-encryption.d.ts +5 -0
  73. package/types/enums/smtp-secure.d.ts +4 -0
  74. package/types/enums/status-code.d.ts +6 -0
  75. package/types/enums/status.d.ts +3 -0
  76. package/types/enums/supabase-migration-resource.d.ts +13 -0
  77. package/types/enums/tables-db-index-type.d.ts +6 -0
  78. package/types/enums/template-reference-type.d.ts +5 -0
  79. package/types/enums/theme.d.ts +4 -0
  80. package/types/enums/timezone.d.ts +421 -0
  81. package/types/enums/usage-range.d.ts +5 -0
  82. package/types/enums/use-cases.d.ts +16 -0
  83. package/types/enums/vcs-detection-type.d.ts +4 -0
  84. package/types/enums/vcs-reference-type.d.ts +5 -0
  85. package/types/id.d.ts +20 -0
  86. package/{src/index.ts → types/index.d.ts} +1 -1
  87. package/{src/models.ts → types/models.d.ts} +268 -518
  88. package/types/operator.d.ts +180 -0
  89. package/{src/permission.ts → types/permission.d.ts} +6 -20
  90. package/types/query.d.ts +442 -0
  91. package/{src/role.ts → types/role.d.ts} +28 -58
  92. package/types/service.d.ts +11 -0
  93. package/types/services/account.d.ts +1536 -0
  94. package/types/services/activities.d.ts +46 -0
  95. package/types/services/assistant.d.ts +24 -0
  96. package/{src/services/avatars.ts → types/services/avatars.d.ts} +91 -525
  97. package/types/services/backups.d.ts +277 -0
  98. package/types/services/console.d.ts +248 -0
  99. package/types/services/databases.d.ts +2435 -0
  100. package/types/services/domains.d.ts +1527 -0
  101. package/types/services/functions.d.ts +842 -0
  102. package/types/services/graphql.d.ts +43 -0
  103. package/types/services/health.d.ts +475 -0
  104. package/types/services/locale.d.ts +64 -0
  105. package/types/services/messaging.d.ts +1989 -0
  106. package/types/services/migrations.d.ts +417 -0
  107. package/types/services/organizations.d.ts +1009 -0
  108. package/types/services/project.d.ts +148 -0
  109. package/types/services/projects.d.ts +1626 -0
  110. package/types/services/proxy.d.ts +190 -0
  111. package/types/services/realtime.d.ts +134 -0
  112. package/types/services/sites.d.ts +800 -0
  113. package/types/services/storage.d.ts +467 -0
  114. package/types/services/tables-db.d.ts +2352 -0
  115. package/types/services/teams.d.ts +366 -0
  116. package/types/services/tokens.d.ts +119 -0
  117. package/types/services/users.d.ts +1208 -0
  118. package/types/services/vcs.d.ts +252 -0
  119. package/types/services/webhooks.d.ts +165 -0
  120. package/.github/workflows/autoclose.yml +0 -11
  121. package/.github/workflows/publish.yml +0 -43
  122. package/CHANGELOG.md +0 -169
  123. package/docs/examples/account/create-anonymous-session.md +0 -13
  124. package/docs/examples/account/create-billing-address.md +0 -20
  125. package/docs/examples/account/create-email-password-session.md +0 -16
  126. package/docs/examples/account/create-email-token.md +0 -17
  127. package/docs/examples/account/create-email-verification.md +0 -15
  128. package/docs/examples/account/create-jwt.md +0 -15
  129. package/docs/examples/account/create-key.md +0 -17
  130. package/docs/examples/account/create-magic-url-token.md +0 -18
  131. package/docs/examples/account/create-mfa-authenticator.md +0 -15
  132. package/docs/examples/account/create-mfa-challenge.md +0 -15
  133. package/docs/examples/account/create-mfa-recovery-codes.md +0 -13
  134. package/docs/examples/account/create-o-auth-2-session.md +0 -17
  135. package/docs/examples/account/create-o-auth-2-token.md +0 -17
  136. package/docs/examples/account/create-payment-method.md +0 -13
  137. package/docs/examples/account/create-phone-token.md +0 -16
  138. package/docs/examples/account/create-phone-verification.md +0 -13
  139. package/docs/examples/account/create-push-target.md +0 -17
  140. package/docs/examples/account/create-recovery.md +0 -16
  141. package/docs/examples/account/create-session.md +0 -16
  142. package/docs/examples/account/create-verification.md +0 -15
  143. package/docs/examples/account/create.md +0 -18
  144. package/docs/examples/account/delete-billing-address.md +0 -15
  145. package/docs/examples/account/delete-identity.md +0 -15
  146. package/docs/examples/account/delete-key.md +0 -15
  147. package/docs/examples/account/delete-mfa-authenticator.md +0 -15
  148. package/docs/examples/account/delete-payment-method.md +0 -15
  149. package/docs/examples/account/delete-push-target.md +0 -15
  150. package/docs/examples/account/delete-session.md +0 -15
  151. package/docs/examples/account/delete-sessions.md +0 -13
  152. package/docs/examples/account/delete.md +0 -13
  153. package/docs/examples/account/get-billing-address.md +0 -15
  154. package/docs/examples/account/get-coupon.md +0 -15
  155. package/docs/examples/account/get-key.md +0 -15
  156. package/docs/examples/account/get-mfa-recovery-codes.md +0 -13
  157. package/docs/examples/account/get-payment-method.md +0 -15
  158. package/docs/examples/account/get-prefs.md +0 -13
  159. package/docs/examples/account/get-session.md +0 -15
  160. package/docs/examples/account/get.md +0 -13
  161. package/docs/examples/account/list-billing-addresses.md +0 -15
  162. package/docs/examples/account/list-identities.md +0 -16
  163. package/docs/examples/account/list-invoices.md +0 -15
  164. package/docs/examples/account/list-keys.md +0 -15
  165. package/docs/examples/account/list-logs.md +0 -16
  166. package/docs/examples/account/list-mfa-factors.md +0 -13
  167. package/docs/examples/account/list-payment-methods.md +0 -15
  168. package/docs/examples/account/list-sessions.md +0 -13
  169. package/docs/examples/account/update-billing-address.md +0 -21
  170. package/docs/examples/account/update-email-verification.md +0 -16
  171. package/docs/examples/account/update-email.md +0 -16
  172. package/docs/examples/account/update-key.md +0 -18
  173. package/docs/examples/account/update-magic-url-session.md +0 -16
  174. package/docs/examples/account/update-mfa-authenticator.md +0 -16
  175. package/docs/examples/account/update-mfa-challenge.md +0 -16
  176. package/docs/examples/account/update-mfa-recovery-codes.md +0 -13
  177. package/docs/examples/account/update-mfa.md +0 -15
  178. package/docs/examples/account/update-name.md +0 -15
  179. package/docs/examples/account/update-password.md +0 -16
  180. package/docs/examples/account/update-payment-method-mandate-options.md +0 -15
  181. package/docs/examples/account/update-payment-method-provider.md +0 -18
  182. package/docs/examples/account/update-payment-method.md +0 -18
  183. package/docs/examples/account/update-phone-session.md +0 -16
  184. package/docs/examples/account/update-phone-verification.md +0 -16
  185. package/docs/examples/account/update-phone.md +0 -16
  186. package/docs/examples/account/update-prefs.md +0 -19
  187. package/docs/examples/account/update-push-target.md +0 -16
  188. package/docs/examples/account/update-recovery.md +0 -17
  189. package/docs/examples/account/update-session.md +0 -15
  190. package/docs/examples/account/update-status.md +0 -13
  191. package/docs/examples/account/update-verification.md +0 -16
  192. package/docs/examples/activities/get-event.md +0 -15
  193. package/docs/examples/activities/list-events.md +0 -15
  194. package/docs/examples/assistant/chat.md +0 -15
  195. package/docs/examples/avatars/get-browser.md +0 -18
  196. package/docs/examples/avatars/get-credit-card.md +0 -18
  197. package/docs/examples/avatars/get-favicon.md +0 -15
  198. package/docs/examples/avatars/get-flag.md +0 -18
  199. package/docs/examples/avatars/get-image.md +0 -17
  200. package/docs/examples/avatars/get-initials.md +0 -18
  201. package/docs/examples/avatars/get-qr.md +0 -18
  202. package/docs/examples/avatars/get-screenshot.md +0 -37
  203. package/docs/examples/backups/create-archive.md +0 -16
  204. package/docs/examples/backups/create-policy.md +0 -21
  205. package/docs/examples/backups/create-restoration.md +0 -18
  206. package/docs/examples/backups/delete-archive.md +0 -15
  207. package/docs/examples/backups/delete-policy.md +0 -15
  208. package/docs/examples/backups/get-archive.md +0 -15
  209. package/docs/examples/backups/get-policy.md +0 -15
  210. package/docs/examples/backups/get-restoration.md +0 -15
  211. package/docs/examples/backups/list-archives.md +0 -15
  212. package/docs/examples/backups/list-policies.md +0 -15
  213. package/docs/examples/backups/list-restorations.md +0 -15
  214. package/docs/examples/backups/update-policy.md +0 -19
  215. package/docs/examples/console/create-program-membership.md +0 -15
  216. package/docs/examples/console/create-source.md +0 -19
  217. package/docs/examples/console/get-campaign.md +0 -15
  218. package/docs/examples/console/get-coupon.md +0 -15
  219. package/docs/examples/console/get-plan.md +0 -15
  220. package/docs/examples/console/get-plans.md +0 -15
  221. package/docs/examples/console/get-program.md +0 -15
  222. package/docs/examples/console/get-resource.md +0 -16
  223. package/docs/examples/console/list-regions.md +0 -13
  224. package/docs/examples/console/suggest-columns.md +0 -19
  225. package/docs/examples/console/suggest-indexes.md +0 -18
  226. package/docs/examples/console/variables.md +0 -13
  227. package/docs/examples/databases/create-boolean-attribute.md +0 -20
  228. package/docs/examples/databases/create-collection.md +0 -22
  229. package/docs/examples/databases/create-datetime-attribute.md +0 -20
  230. package/docs/examples/databases/create-document.md +0 -26
  231. package/docs/examples/databases/create-documents.md +0 -18
  232. package/docs/examples/databases/create-email-attribute.md +0 -20
  233. package/docs/examples/databases/create-enum-attribute.md +0 -21
  234. package/docs/examples/databases/create-float-attribute.md +0 -22
  235. package/docs/examples/databases/create-index.md +0 -21
  236. package/docs/examples/databases/create-integer-attribute.md +0 -22
  237. package/docs/examples/databases/create-ip-attribute.md +0 -20
  238. package/docs/examples/databases/create-line-attribute.md +0 -19
  239. package/docs/examples/databases/create-longtext-attribute.md +0 -21
  240. package/docs/examples/databases/create-mediumtext-attribute.md +0 -21
  241. package/docs/examples/databases/create-operations.md +0 -26
  242. package/docs/examples/databases/create-point-attribute.md +0 -19
  243. package/docs/examples/databases/create-polygon-attribute.md +0 -19
  244. package/docs/examples/databases/create-relationship-attribute.md +0 -22
  245. package/docs/examples/databases/create-string-attribute.md +0 -22
  246. package/docs/examples/databases/create-text-attribute.md +0 -21
  247. package/docs/examples/databases/create-transaction.md +0 -15
  248. package/docs/examples/databases/create-url-attribute.md +0 -20
  249. package/docs/examples/databases/create-varchar-attribute.md +0 -22
  250. package/docs/examples/databases/create.md +0 -17
  251. package/docs/examples/databases/decrement-document-attribute.md +0 -21
  252. package/docs/examples/databases/delete-attribute.md +0 -17
  253. package/docs/examples/databases/delete-collection.md +0 -16
  254. package/docs/examples/databases/delete-document.md +0 -18
  255. package/docs/examples/databases/delete-documents.md +0 -18
  256. package/docs/examples/databases/delete-index.md +0 -17
  257. package/docs/examples/databases/delete-transaction.md +0 -15
  258. package/docs/examples/databases/delete.md +0 -15
  259. package/docs/examples/databases/get-attribute.md +0 -17
  260. package/docs/examples/databases/get-collection-usage.md +0 -17
  261. package/docs/examples/databases/get-collection.md +0 -16
  262. package/docs/examples/databases/get-document.md +0 -19
  263. package/docs/examples/databases/get-index.md +0 -17
  264. package/docs/examples/databases/get-transaction.md +0 -15
  265. package/docs/examples/databases/get-usage.md +0 -16
  266. package/docs/examples/databases/get.md +0 -15
  267. package/docs/examples/databases/increment-document-attribute.md +0 -21
  268. package/docs/examples/databases/list-attributes.md +0 -18
  269. package/docs/examples/databases/list-collection-logs.md +0 -17
  270. package/docs/examples/databases/list-collections.md +0 -18
  271. package/docs/examples/databases/list-document-logs.md +0 -18
  272. package/docs/examples/databases/list-documents.md +0 -20
  273. package/docs/examples/databases/list-indexes.md +0 -18
  274. package/docs/examples/databases/list-logs.md +0 -16
  275. package/docs/examples/databases/list-transactions.md +0 -15
  276. package/docs/examples/databases/list-usage.md +0 -15
  277. package/docs/examples/databases/list.md +0 -17
  278. package/docs/examples/databases/update-boolean-attribute.md +0 -20
  279. package/docs/examples/databases/update-collection.md +0 -20
  280. package/docs/examples/databases/update-datetime-attribute.md +0 -20
  281. package/docs/examples/databases/update-document.md +0 -26
  282. package/docs/examples/databases/update-documents.md +0 -25
  283. package/docs/examples/databases/update-email-attribute.md +0 -20
  284. package/docs/examples/databases/update-enum-attribute.md +0 -21
  285. package/docs/examples/databases/update-float-attribute.md +0 -22
  286. package/docs/examples/databases/update-integer-attribute.md +0 -22
  287. package/docs/examples/databases/update-ip-attribute.md +0 -20
  288. package/docs/examples/databases/update-line-attribute.md +0 -20
  289. package/docs/examples/databases/update-longtext-attribute.md +0 -20
  290. package/docs/examples/databases/update-mediumtext-attribute.md +0 -20
  291. package/docs/examples/databases/update-point-attribute.md +0 -20
  292. package/docs/examples/databases/update-polygon-attribute.md +0 -20
  293. package/docs/examples/databases/update-relationship-attribute.md +0 -19
  294. package/docs/examples/databases/update-string-attribute.md +0 -21
  295. package/docs/examples/databases/update-text-attribute.md +0 -20
  296. package/docs/examples/databases/update-transaction.md +0 -17
  297. package/docs/examples/databases/update-url-attribute.md +0 -20
  298. package/docs/examples/databases/update-varchar-attribute.md +0 -21
  299. package/docs/examples/databases/update.md +0 -17
  300. package/docs/examples/databases/upsert-document.md +0 -26
  301. package/docs/examples/databases/upsert-documents.md +0 -18
  302. package/docs/examples/domains/create-preset-google-workspace.md +0 -15
  303. package/docs/examples/domains/create-preset-i-cloud.md +0 -15
  304. package/docs/examples/domains/create-preset-mailgun.md +0 -15
  305. package/docs/examples/domains/create-preset-outlook.md +0 -15
  306. package/docs/examples/domains/create-preset-proton-mail.md +0 -15
  307. package/docs/examples/domains/create-preset-zoho.md +0 -15
  308. package/docs/examples/domains/create-purchase.md +0 -26
  309. package/docs/examples/domains/create-record-a.md +0 -19
  310. package/docs/examples/domains/create-record-aaaa.md +0 -19
  311. package/docs/examples/domains/create-record-alias.md +0 -19
  312. package/docs/examples/domains/create-record-caa.md +0 -19
  313. package/docs/examples/domains/create-record-cname.md +0 -19
  314. package/docs/examples/domains/create-record-https.md +0 -19
  315. package/docs/examples/domains/create-record-mx.md +0 -20
  316. package/docs/examples/domains/create-record-ns.md +0 -19
  317. package/docs/examples/domains/create-record-srv.md +0 -22
  318. package/docs/examples/domains/create-record-txt.md +0 -19
  319. package/docs/examples/domains/create-transfer-in.md +0 -19
  320. package/docs/examples/domains/create-transfer-out.md +0 -16
  321. package/docs/examples/domains/create.md +0 -16
  322. package/docs/examples/domains/delete-record.md +0 -16
  323. package/docs/examples/domains/delete.md +0 -15
  324. package/docs/examples/domains/get-preset-google-workspace.md +0 -15
  325. package/docs/examples/domains/get-preset-i-cloud.md +0 -15
  326. package/docs/examples/domains/get-preset-mailgun.md +0 -15
  327. package/docs/examples/domains/get-preset-outlook.md +0 -15
  328. package/docs/examples/domains/get-preset-proton-mail.md +0 -15
  329. package/docs/examples/domains/get-preset-zoho.md +0 -15
  330. package/docs/examples/domains/get-price.md +0 -17
  331. package/docs/examples/domains/get-record.md +0 -16
  332. package/docs/examples/domains/get-transfer-status.md +0 -15
  333. package/docs/examples/domains/get-zone.md +0 -15
  334. package/docs/examples/domains/get.md +0 -15
  335. package/docs/examples/domains/list-records.md +0 -16
  336. package/docs/examples/domains/list-suggestions.md +0 -20
  337. package/docs/examples/domains/list.md +0 -16
  338. package/docs/examples/domains/update-auto-renewal.md +0 -16
  339. package/docs/examples/domains/update-nameservers.md +0 -15
  340. package/docs/examples/domains/update-purchase.md +0 -16
  341. package/docs/examples/domains/update-record-a.md +0 -20
  342. package/docs/examples/domains/update-record-aaaa.md +0 -20
  343. package/docs/examples/domains/update-record-alias.md +0 -20
  344. package/docs/examples/domains/update-record-caa.md +0 -20
  345. package/docs/examples/domains/update-record-cname.md +0 -20
  346. package/docs/examples/domains/update-record-https.md +0 -20
  347. package/docs/examples/domains/update-record-mx.md +0 -21
  348. package/docs/examples/domains/update-record-ns.md +0 -20
  349. package/docs/examples/domains/update-record-srv.md +0 -23
  350. package/docs/examples/domains/update-record-txt.md +0 -20
  351. package/docs/examples/domains/update-team.md +0 -16
  352. package/docs/examples/domains/update-transfer-in.md +0 -16
  353. package/docs/examples/domains/update-zone.md +0 -16
  354. package/docs/examples/functions/create-deployment.md +0 -19
  355. package/docs/examples/functions/create-duplicate-deployment.md +0 -17
  356. package/docs/examples/functions/create-execution.md +0 -21
  357. package/docs/examples/functions/create-template-deployment.md +0 -21
  358. package/docs/examples/functions/create-variable.md +0 -18
  359. package/docs/examples/functions/create-vcs-deployment.md +0 -18
  360. package/docs/examples/functions/create.md +0 -34
  361. package/docs/examples/functions/delete-deployment.md +0 -16
  362. package/docs/examples/functions/delete-execution.md +0 -16
  363. package/docs/examples/functions/delete-variable.md +0 -16
  364. package/docs/examples/functions/delete.md +0 -15
  365. package/docs/examples/functions/get-deployment-download.md +0 -17
  366. package/docs/examples/functions/get-deployment.md +0 -16
  367. package/docs/examples/functions/get-execution.md +0 -16
  368. package/docs/examples/functions/get-template.md +0 -15
  369. package/docs/examples/functions/get-usage.md +0 -16
  370. package/docs/examples/functions/get-variable.md +0 -16
  371. package/docs/examples/functions/get.md +0 -15
  372. package/docs/examples/functions/list-deployments.md +0 -18
  373. package/docs/examples/functions/list-executions.md +0 -17
  374. package/docs/examples/functions/list-runtimes.md +0 -13
  375. package/docs/examples/functions/list-specifications.md +0 -13
  376. package/docs/examples/functions/list-templates.md +0 -19
  377. package/docs/examples/functions/list-usage.md +0 -15
  378. package/docs/examples/functions/list-variables.md +0 -15
  379. package/docs/examples/functions/list.md +0 -17
  380. package/docs/examples/functions/update-deployment-status.md +0 -16
  381. package/docs/examples/functions/update-function-deployment.md +0 -16
  382. package/docs/examples/functions/update-variable.md +0 -19
  383. package/docs/examples/functions/update.md +0 -34
  384. package/docs/examples/graphql/mutation.md +0 -15
  385. package/docs/examples/graphql/query.md +0 -15
  386. package/docs/examples/health/get-antivirus.md +0 -13
  387. package/docs/examples/health/get-cache.md +0 -13
  388. package/docs/examples/health/get-certificate.md +0 -15
  389. package/docs/examples/health/get-console-pausing.md +0 -16
  390. package/docs/examples/health/get-db.md +0 -13
  391. package/docs/examples/health/get-failed-jobs.md +0 -16
  392. package/docs/examples/health/get-pub-sub.md +0 -13
  393. package/docs/examples/health/get-queue-audits.md +0 -15
  394. package/docs/examples/health/get-queue-billing-project-aggregation.md +0 -15
  395. package/docs/examples/health/get-queue-billing-team-aggregation.md +0 -15
  396. package/docs/examples/health/get-queue-builds.md +0 -15
  397. package/docs/examples/health/get-queue-certificates.md +0 -15
  398. package/docs/examples/health/get-queue-databases.md +0 -16
  399. package/docs/examples/health/get-queue-deletes.md +0 -15
  400. package/docs/examples/health/get-queue-functions.md +0 -15
  401. package/docs/examples/health/get-queue-logs.md +0 -15
  402. package/docs/examples/health/get-queue-mails.md +0 -15
  403. package/docs/examples/health/get-queue-messaging.md +0 -15
  404. package/docs/examples/health/get-queue-migrations.md +0 -15
  405. package/docs/examples/health/get-queue-priority-builds.md +0 -15
  406. package/docs/examples/health/get-queue-region-manager.md +0 -15
  407. package/docs/examples/health/get-queue-stats-resources.md +0 -15
  408. package/docs/examples/health/get-queue-threats.md +0 -15
  409. package/docs/examples/health/get-queue-usage.md +0 -15
  410. package/docs/examples/health/get-queue-webhooks.md +0 -15
  411. package/docs/examples/health/get-storage-local.md +0 -13
  412. package/docs/examples/health/get-storage.md +0 -13
  413. package/docs/examples/health/get-time.md +0 -13
  414. package/docs/examples/health/get.md +0 -13
  415. package/docs/examples/locale/get.md +0 -13
  416. package/docs/examples/locale/list-codes.md +0 -13
  417. package/docs/examples/locale/list-continents.md +0 -13
  418. package/docs/examples/locale/list-countries-eu.md +0 -13
  419. package/docs/examples/locale/list-countries-phones.md +0 -13
  420. package/docs/examples/locale/list-countries.md +0 -13
  421. package/docs/examples/locale/list-currencies.md +0 -13
  422. package/docs/examples/locale/list-languages.md +0 -13
  423. package/docs/examples/messaging/create-apns-provider.md +0 -22
  424. package/docs/examples/messaging/create-email.md +0 -26
  425. package/docs/examples/messaging/create-fcm-provider.md +0 -18
  426. package/docs/examples/messaging/create-mailgun-provider.md +0 -24
  427. package/docs/examples/messaging/create-msg-91-provider.md +0 -20
  428. package/docs/examples/messaging/create-push.md +0 -33
  429. package/docs/examples/messaging/create-resend-provider.md +0 -22
  430. package/docs/examples/messaging/create-sendgrid-provider.md +0 -22
  431. package/docs/examples/messaging/create-sms.md +0 -21
  432. package/docs/examples/messaging/create-smtp-provider.md +0 -28
  433. package/docs/examples/messaging/create-subscriber.md +0 -17
  434. package/docs/examples/messaging/create-telesign-provider.md +0 -20
  435. package/docs/examples/messaging/create-textmagic-provider.md +0 -20
  436. package/docs/examples/messaging/create-topic.md +0 -17
  437. package/docs/examples/messaging/create-twilio-provider.md +0 -20
  438. package/docs/examples/messaging/create-vonage-provider.md +0 -20
  439. package/docs/examples/messaging/delete-provider.md +0 -15
  440. package/docs/examples/messaging/delete-subscriber.md +0 -16
  441. package/docs/examples/messaging/delete-topic.md +0 -15
  442. package/docs/examples/messaging/delete.md +0 -15
  443. package/docs/examples/messaging/get-message.md +0 -15
  444. package/docs/examples/messaging/get-provider.md +0 -15
  445. package/docs/examples/messaging/get-subscriber.md +0 -16
  446. package/docs/examples/messaging/get-topic.md +0 -15
  447. package/docs/examples/messaging/list-message-logs.md +0 -17
  448. package/docs/examples/messaging/list-messages.md +0 -17
  449. package/docs/examples/messaging/list-provider-logs.md +0 -17
  450. package/docs/examples/messaging/list-providers.md +0 -17
  451. package/docs/examples/messaging/list-subscriber-logs.md +0 -17
  452. package/docs/examples/messaging/list-subscribers.md +0 -18
  453. package/docs/examples/messaging/list-targets.md +0 -17
  454. package/docs/examples/messaging/list-topic-logs.md +0 -17
  455. package/docs/examples/messaging/list-topics.md +0 -17
  456. package/docs/examples/messaging/update-apns-provider.md +0 -22
  457. package/docs/examples/messaging/update-email.md +0 -26
  458. package/docs/examples/messaging/update-fcm-provider.md +0 -18
  459. package/docs/examples/messaging/update-mailgun-provider.md +0 -24
  460. package/docs/examples/messaging/update-msg-91-provider.md +0 -20
  461. package/docs/examples/messaging/update-push.md +0 -33
  462. package/docs/examples/messaging/update-resend-provider.md +0 -22
  463. package/docs/examples/messaging/update-sendgrid-provider.md +0 -22
  464. package/docs/examples/messaging/update-sms.md +0 -21
  465. package/docs/examples/messaging/update-smtp-provider.md +0 -28
  466. package/docs/examples/messaging/update-telesign-provider.md +0 -20
  467. package/docs/examples/messaging/update-textmagic-provider.md +0 -20
  468. package/docs/examples/messaging/update-topic.md +0 -17
  469. package/docs/examples/messaging/update-twilio-provider.md +0 -20
  470. package/docs/examples/messaging/update-vonage-provider.md +0 -20
  471. package/docs/examples/migrations/create-appwrite-migration.md +0 -18
  472. package/docs/examples/migrations/create-csv-export.md +0 -23
  473. package/docs/examples/migrations/create-csv-import.md +0 -18
  474. package/docs/examples/migrations/create-firebase-migration.md +0 -16
  475. package/docs/examples/migrations/create-n-host-migration.md +0 -22
  476. package/docs/examples/migrations/create-supabase-migration.md +0 -21
  477. package/docs/examples/migrations/delete.md +0 -15
  478. package/docs/examples/migrations/get-appwrite-report.md +0 -18
  479. package/docs/examples/migrations/get-firebase-report.md +0 -16
  480. package/docs/examples/migrations/get-n-host-report.md +0 -22
  481. package/docs/examples/migrations/get-supabase-report.md +0 -21
  482. package/docs/examples/migrations/get.md +0 -15
  483. package/docs/examples/migrations/list.md +0 -17
  484. package/docs/examples/migrations/retry.md +0 -15
  485. package/docs/examples/organizations/add-credit.md +0 -16
  486. package/docs/examples/organizations/cancel-downgrade.md +0 -15
  487. package/docs/examples/organizations/create-downgrade-feedback.md +0 -19
  488. package/docs/examples/organizations/create-invoice-payment.md +0 -17
  489. package/docs/examples/organizations/create-key.md +0 -18
  490. package/docs/examples/organizations/create.md +0 -24
  491. package/docs/examples/organizations/delete-backup-payment-method.md +0 -15
  492. package/docs/examples/organizations/delete-billing-address.md +0 -15
  493. package/docs/examples/organizations/delete-default-payment-method.md +0 -15
  494. package/docs/examples/organizations/delete-key.md +0 -16
  495. package/docs/examples/organizations/delete.md +0 -15
  496. package/docs/examples/organizations/estimation-create-organization.md +0 -19
  497. package/docs/examples/organizations/estimation-delete-organization.md +0 -15
  498. package/docs/examples/organizations/estimation-update-plan.md +0 -18
  499. package/docs/examples/organizations/get-aggregation.md +0 -18
  500. package/docs/examples/organizations/get-available-credits.md +0 -15
  501. package/docs/examples/organizations/get-billing-address.md +0 -16
  502. package/docs/examples/organizations/get-credit.md +0 -16
  503. package/docs/examples/organizations/get-invoice-download.md +0 -16
  504. package/docs/examples/organizations/get-invoice-view.md +0 -16
  505. package/docs/examples/organizations/get-invoice.md +0 -16
  506. package/docs/examples/organizations/get-key.md +0 -16
  507. package/docs/examples/organizations/get-payment-method.md +0 -16
  508. package/docs/examples/organizations/get-plan.md +0 -15
  509. package/docs/examples/organizations/get-scopes.md +0 -16
  510. package/docs/examples/organizations/get-usage.md +0 -17
  511. package/docs/examples/organizations/list-aggregations.md +0 -16
  512. package/docs/examples/organizations/list-credits.md +0 -16
  513. package/docs/examples/organizations/list-invoices.md +0 -16
  514. package/docs/examples/organizations/list-keys.md +0 -16
  515. package/docs/examples/organizations/list-regions.md +0 -15
  516. package/docs/examples/organizations/list.md +0 -16
  517. package/docs/examples/organizations/set-backup-payment-method.md +0 -16
  518. package/docs/examples/organizations/set-billing-address.md +0 -16
  519. package/docs/examples/organizations/set-billing-email.md +0 -16
  520. package/docs/examples/organizations/set-billing-tax-id.md +0 -16
  521. package/docs/examples/organizations/set-default-payment-method.md +0 -16
  522. package/docs/examples/organizations/update-budget.md +0 -17
  523. package/docs/examples/organizations/update-key.md +0 -19
  524. package/docs/examples/organizations/update-plan.md +0 -22
  525. package/docs/examples/organizations/validate-invoice.md +0 -16
  526. package/docs/examples/organizations/validate-payment.md +0 -16
  527. package/docs/examples/project/create-variable.md +0 -18
  528. package/docs/examples/project/delete-variable.md +0 -15
  529. package/docs/examples/project/get-usage.md +0 -17
  530. package/docs/examples/project/get-variable.md +0 -15
  531. package/docs/examples/project/list-variables.md +0 -16
  532. package/docs/examples/project/update-variable.md +0 -18
  533. package/docs/examples/projects/create-dev-key.md +0 -17
  534. package/docs/examples/projects/create-jwt.md +0 -17
  535. package/docs/examples/projects/create-key.md +0 -19
  536. package/docs/examples/projects/create-platform.md +0 -20
  537. package/docs/examples/projects/create-schedule.md +0 -20
  538. package/docs/examples/projects/create-smtp-test.md +0 -24
  539. package/docs/examples/projects/create.md +0 -27
  540. package/docs/examples/projects/delete-dev-key.md +0 -16
  541. package/docs/examples/projects/delete-email-template.md +0 -17
  542. package/docs/examples/projects/delete-key.md +0 -16
  543. package/docs/examples/projects/delete-platform.md +0 -16
  544. package/docs/examples/projects/delete-sms-template.md +0 -17
  545. package/docs/examples/projects/delete.md +0 -15
  546. package/docs/examples/projects/get-dev-key.md +0 -16
  547. package/docs/examples/projects/get-email-template.md +0 -17
  548. package/docs/examples/projects/get-key.md +0 -16
  549. package/docs/examples/projects/get-platform.md +0 -16
  550. package/docs/examples/projects/get-schedule.md +0 -16
  551. package/docs/examples/projects/get-sms-template.md +0 -17
  552. package/docs/examples/projects/get.md +0 -15
  553. package/docs/examples/projects/list-dev-keys.md +0 -16
  554. package/docs/examples/projects/list-keys.md +0 -17
  555. package/docs/examples/projects/list-platforms.md +0 -16
  556. package/docs/examples/projects/list-schedules.md +0 -17
  557. package/docs/examples/projects/list.md +0 -17
  558. package/docs/examples/projects/update-api-status-all.md +0 -16
  559. package/docs/examples/projects/update-api-status.md +0 -17
  560. package/docs/examples/projects/update-auth-duration.md +0 -16
  561. package/docs/examples/projects/update-auth-limit.md +0 -16
  562. package/docs/examples/projects/update-auth-password-dictionary.md +0 -16
  563. package/docs/examples/projects/update-auth-password-history.md +0 -16
  564. package/docs/examples/projects/update-auth-sessions-limit.md +0 -16
  565. package/docs/examples/projects/update-auth-status.md +0 -17
  566. package/docs/examples/projects/update-console-access.md +0 -15
  567. package/docs/examples/projects/update-dev-key.md +0 -18
  568. package/docs/examples/projects/update-email-template.md +0 -22
  569. package/docs/examples/projects/update-key.md +0 -19
  570. package/docs/examples/projects/update-labels.md +0 -16
  571. package/docs/examples/projects/update-memberships-privacy.md +0 -18
  572. package/docs/examples/projects/update-mock-numbers.md +0 -16
  573. package/docs/examples/projects/update-o-auth-2.md +0 -19
  574. package/docs/examples/projects/update-personal-data-check.md +0 -16
  575. package/docs/examples/projects/update-platform.md +0 -20
  576. package/docs/examples/projects/update-service-status-all.md +0 -16
  577. package/docs/examples/projects/update-service-status.md +0 -17
  578. package/docs/examples/projects/update-session-alerts.md +0 -16
  579. package/docs/examples/projects/update-session-invalidation.md +0 -16
  580. package/docs/examples/projects/update-sms-template.md +0 -18
  581. package/docs/examples/projects/update-smtp.md +0 -24
  582. package/docs/examples/projects/update-status.md +0 -16
  583. package/docs/examples/projects/update-team.md +0 -16
  584. package/docs/examples/projects/update.md +0 -25
  585. package/docs/examples/proxy/create-api-rule.md +0 -15
  586. package/docs/examples/proxy/create-function-rule.md +0 -17
  587. package/docs/examples/proxy/create-redirect-rule.md +0 -19
  588. package/docs/examples/proxy/create-site-rule.md +0 -17
  589. package/docs/examples/proxy/delete-rule.md +0 -15
  590. package/docs/examples/proxy/get-rule.md +0 -15
  591. package/docs/examples/proxy/list-rules.md +0 -17
  592. package/docs/examples/proxy/update-rule-verification.md +0 -15
  593. package/docs/examples/sites/create-deployment.md +0 -20
  594. package/docs/examples/sites/create-duplicate-deployment.md +0 -16
  595. package/docs/examples/sites/create-template-deployment.md +0 -21
  596. package/docs/examples/sites/create-variable.md +0 -18
  597. package/docs/examples/sites/create-vcs-deployment.md +0 -18
  598. package/docs/examples/sites/create.md +0 -35
  599. package/docs/examples/sites/delete-deployment.md +0 -16
  600. package/docs/examples/sites/delete-log.md +0 -16
  601. package/docs/examples/sites/delete-variable.md +0 -16
  602. package/docs/examples/sites/delete.md +0 -15
  603. package/docs/examples/sites/get-deployment-download.md +0 -17
  604. package/docs/examples/sites/get-deployment.md +0 -16
  605. package/docs/examples/sites/get-log.md +0 -16
  606. package/docs/examples/sites/get-template.md +0 -15
  607. package/docs/examples/sites/get-usage.md +0 -16
  608. package/docs/examples/sites/get-variable.md +0 -16
  609. package/docs/examples/sites/get.md +0 -15
  610. package/docs/examples/sites/list-deployments.md +0 -18
  611. package/docs/examples/sites/list-frameworks.md +0 -13
  612. package/docs/examples/sites/list-logs.md +0 -17
  613. package/docs/examples/sites/list-specifications.md +0 -13
  614. package/docs/examples/sites/list-templates.md +0 -18
  615. package/docs/examples/sites/list-usage.md +0 -15
  616. package/docs/examples/sites/list-variables.md +0 -15
  617. package/docs/examples/sites/list.md +0 -17
  618. package/docs/examples/sites/update-deployment-status.md +0 -16
  619. package/docs/examples/sites/update-site-deployment.md +0 -16
  620. package/docs/examples/sites/update-variable.md +0 -19
  621. package/docs/examples/sites/update.md +0 -35
  622. package/docs/examples/storage/create-bucket.md +0 -25
  623. package/docs/examples/storage/create-file.md +0 -18
  624. package/docs/examples/storage/delete-bucket.md +0 -15
  625. package/docs/examples/storage/delete-file.md +0 -16
  626. package/docs/examples/storage/get-bucket-usage.md +0 -16
  627. package/docs/examples/storage/get-bucket.md +0 -15
  628. package/docs/examples/storage/get-file-download.md +0 -17
  629. package/docs/examples/storage/get-file-preview.md +0 -28
  630. package/docs/examples/storage/get-file-view.md +0 -17
  631. package/docs/examples/storage/get-file.md +0 -16
  632. package/docs/examples/storage/get-usage.md +0 -15
  633. package/docs/examples/storage/list-buckets.md +0 -17
  634. package/docs/examples/storage/list-files.md +0 -18
  635. package/docs/examples/storage/update-bucket.md +0 -25
  636. package/docs/examples/storage/update-file.md +0 -18
  637. package/docs/examples/tablesdb/create-boolean-column.md +0 -20
  638. package/docs/examples/tablesdb/create-datetime-column.md +0 -20
  639. package/docs/examples/tablesdb/create-email-column.md +0 -20
  640. package/docs/examples/tablesdb/create-enum-column.md +0 -21
  641. package/docs/examples/tablesdb/create-float-column.md +0 -22
  642. package/docs/examples/tablesdb/create-index.md +0 -21
  643. package/docs/examples/tablesdb/create-integer-column.md +0 -22
  644. package/docs/examples/tablesdb/create-ip-column.md +0 -20
  645. package/docs/examples/tablesdb/create-line-column.md +0 -19
  646. package/docs/examples/tablesdb/create-longtext-column.md +0 -21
  647. package/docs/examples/tablesdb/create-mediumtext-column.md +0 -21
  648. package/docs/examples/tablesdb/create-operations.md +0 -26
  649. package/docs/examples/tablesdb/create-point-column.md +0 -19
  650. package/docs/examples/tablesdb/create-polygon-column.md +0 -19
  651. package/docs/examples/tablesdb/create-relationship-column.md +0 -22
  652. package/docs/examples/tablesdb/create-row.md +0 -26
  653. package/docs/examples/tablesdb/create-rows.md +0 -18
  654. package/docs/examples/tablesdb/create-string-column.md +0 -22
  655. package/docs/examples/tablesdb/create-table.md +0 -22
  656. package/docs/examples/tablesdb/create-text-column.md +0 -21
  657. package/docs/examples/tablesdb/create-transaction.md +0 -15
  658. package/docs/examples/tablesdb/create-url-column.md +0 -20
  659. package/docs/examples/tablesdb/create-varchar-column.md +0 -22
  660. package/docs/examples/tablesdb/create.md +0 -17
  661. package/docs/examples/tablesdb/decrement-row-column.md +0 -21
  662. package/docs/examples/tablesdb/delete-column.md +0 -17
  663. package/docs/examples/tablesdb/delete-index.md +0 -17
  664. package/docs/examples/tablesdb/delete-row.md +0 -18
  665. package/docs/examples/tablesdb/delete-rows.md +0 -18
  666. package/docs/examples/tablesdb/delete-table.md +0 -16
  667. package/docs/examples/tablesdb/delete-transaction.md +0 -15
  668. package/docs/examples/tablesdb/delete.md +0 -15
  669. package/docs/examples/tablesdb/get-column.md +0 -17
  670. package/docs/examples/tablesdb/get-index.md +0 -17
  671. package/docs/examples/tablesdb/get-row.md +0 -19
  672. package/docs/examples/tablesdb/get-table-usage.md +0 -17
  673. package/docs/examples/tablesdb/get-table.md +0 -16
  674. package/docs/examples/tablesdb/get-transaction.md +0 -15
  675. package/docs/examples/tablesdb/get-usage.md +0 -16
  676. package/docs/examples/tablesdb/get.md +0 -15
  677. package/docs/examples/tablesdb/increment-row-column.md +0 -21
  678. package/docs/examples/tablesdb/list-columns.md +0 -18
  679. package/docs/examples/tablesdb/list-indexes.md +0 -18
  680. package/docs/examples/tablesdb/list-row-logs.md +0 -18
  681. package/docs/examples/tablesdb/list-rows.md +0 -20
  682. package/docs/examples/tablesdb/list-table-logs.md +0 -17
  683. package/docs/examples/tablesdb/list-tables.md +0 -18
  684. package/docs/examples/tablesdb/list-transactions.md +0 -15
  685. package/docs/examples/tablesdb/list-usage.md +0 -15
  686. package/docs/examples/tablesdb/list.md +0 -17
  687. package/docs/examples/tablesdb/update-boolean-column.md +0 -20
  688. package/docs/examples/tablesdb/update-datetime-column.md +0 -20
  689. package/docs/examples/tablesdb/update-email-column.md +0 -20
  690. package/docs/examples/tablesdb/update-enum-column.md +0 -21
  691. package/docs/examples/tablesdb/update-float-column.md +0 -22
  692. package/docs/examples/tablesdb/update-integer-column.md +0 -22
  693. package/docs/examples/tablesdb/update-ip-column.md +0 -20
  694. package/docs/examples/tablesdb/update-line-column.md +0 -20
  695. package/docs/examples/tablesdb/update-longtext-column.md +0 -20
  696. package/docs/examples/tablesdb/update-mediumtext-column.md +0 -20
  697. package/docs/examples/tablesdb/update-point-column.md +0 -20
  698. package/docs/examples/tablesdb/update-polygon-column.md +0 -20
  699. package/docs/examples/tablesdb/update-relationship-column.md +0 -19
  700. package/docs/examples/tablesdb/update-row.md +0 -26
  701. package/docs/examples/tablesdb/update-rows.md +0 -25
  702. package/docs/examples/tablesdb/update-string-column.md +0 -21
  703. package/docs/examples/tablesdb/update-table.md +0 -20
  704. package/docs/examples/tablesdb/update-text-column.md +0 -20
  705. package/docs/examples/tablesdb/update-transaction.md +0 -17
  706. package/docs/examples/tablesdb/update-url-column.md +0 -20
  707. package/docs/examples/tablesdb/update-varchar-column.md +0 -21
  708. package/docs/examples/tablesdb/update.md +0 -17
  709. package/docs/examples/tablesdb/upsert-row.md +0 -26
  710. package/docs/examples/tablesdb/upsert-rows.md +0 -18
  711. package/docs/examples/teams/create-membership.md +0 -21
  712. package/docs/examples/teams/create.md +0 -17
  713. package/docs/examples/teams/delete-membership.md +0 -16
  714. package/docs/examples/teams/delete.md +0 -15
  715. package/docs/examples/teams/get-membership.md +0 -16
  716. package/docs/examples/teams/get-prefs.md +0 -15
  717. package/docs/examples/teams/get.md +0 -15
  718. package/docs/examples/teams/list-logs.md +0 -17
  719. package/docs/examples/teams/list-memberships.md +0 -18
  720. package/docs/examples/teams/list.md +0 -17
  721. package/docs/examples/teams/update-membership-status.md +0 -18
  722. package/docs/examples/teams/update-membership.md +0 -17
  723. package/docs/examples/teams/update-name.md +0 -16
  724. package/docs/examples/teams/update-prefs.md +0 -16
  725. package/docs/examples/tokens/create-file-token.md +0 -17
  726. package/docs/examples/tokens/delete.md +0 -15
  727. package/docs/examples/tokens/get.md +0 -15
  728. package/docs/examples/tokens/list.md +0 -18
  729. package/docs/examples/tokens/update.md +0 -16
  730. package/docs/examples/users/create-argon-2-user.md +0 -18
  731. package/docs/examples/users/create-bcrypt-user.md +0 -18
  732. package/docs/examples/users/create-jwt.md +0 -17
  733. package/docs/examples/users/create-md-5-user.md +0 -18
  734. package/docs/examples/users/create-mfa-recovery-codes.md +0 -15
  735. package/docs/examples/users/create-ph-pass-user.md +0 -18
  736. package/docs/examples/users/create-scrypt-modified-user.md +0 -21
  737. package/docs/examples/users/create-scrypt-user.md +0 -23
  738. package/docs/examples/users/create-session.md +0 -15
  739. package/docs/examples/users/create-sha-user.md +0 -19
  740. package/docs/examples/users/create-target.md +0 -20
  741. package/docs/examples/users/create-token.md +0 -17
  742. package/docs/examples/users/create.md +0 -19
  743. package/docs/examples/users/delete-identity.md +0 -15
  744. package/docs/examples/users/delete-mfa-authenticator.md +0 -16
  745. package/docs/examples/users/delete-session.md +0 -16
  746. package/docs/examples/users/delete-sessions.md +0 -15
  747. package/docs/examples/users/delete-target.md +0 -16
  748. package/docs/examples/users/delete.md +0 -15
  749. package/docs/examples/users/get-mfa-recovery-codes.md +0 -15
  750. package/docs/examples/users/get-prefs.md +0 -15
  751. package/docs/examples/users/get-target.md +0 -16
  752. package/docs/examples/users/get-usage.md +0 -15
  753. package/docs/examples/users/get.md +0 -15
  754. package/docs/examples/users/list-identities.md +0 -17
  755. package/docs/examples/users/list-logs.md +0 -17
  756. package/docs/examples/users/list-memberships.md +0 -18
  757. package/docs/examples/users/list-mfa-factors.md +0 -15
  758. package/docs/examples/users/list-sessions.md +0 -16
  759. package/docs/examples/users/list-targets.md +0 -17
  760. package/docs/examples/users/list.md +0 -17
  761. package/docs/examples/users/update-email-verification.md +0 -16
  762. package/docs/examples/users/update-email.md +0 -16
  763. package/docs/examples/users/update-impersonator.md +0 -16
  764. package/docs/examples/users/update-labels.md +0 -16
  765. package/docs/examples/users/update-mfa-recovery-codes.md +0 -15
  766. package/docs/examples/users/update-mfa.md +0 -16
  767. package/docs/examples/users/update-name.md +0 -16
  768. package/docs/examples/users/update-password.md +0 -16
  769. package/docs/examples/users/update-phone-verification.md +0 -16
  770. package/docs/examples/users/update-phone.md +0 -16
  771. package/docs/examples/users/update-prefs.md +0 -16
  772. package/docs/examples/users/update-status.md +0 -16
  773. package/docs/examples/users/update-target.md +0 -19
  774. package/docs/examples/vcs/create-repository-detection.md +0 -18
  775. package/docs/examples/vcs/create-repository.md +0 -17
  776. package/docs/examples/vcs/delete-installation.md +0 -15
  777. package/docs/examples/vcs/get-installation.md +0 -15
  778. package/docs/examples/vcs/get-repository-contents.md +0 -18
  779. package/docs/examples/vcs/get-repository.md +0 -16
  780. package/docs/examples/vcs/list-installations.md +0 -17
  781. package/docs/examples/vcs/list-repositories.md +0 -18
  782. package/docs/examples/vcs/list-repository-branches.md +0 -16
  783. package/docs/examples/vcs/update-external-deployments.md +0 -17
  784. package/docs/examples/webhooks/create.md +0 -22
  785. package/docs/examples/webhooks/delete.md +0 -15
  786. package/docs/examples/webhooks/get.md +0 -15
  787. package/docs/examples/webhooks/list.md +0 -16
  788. package/docs/examples/webhooks/update-signature.md +0 -15
  789. package/docs/examples/webhooks/update.md +0 -22
  790. package/rollup.config.js +0 -44
  791. package/src/channel.ts +0 -158
  792. package/src/client.ts +0 -1085
  793. package/src/enums/adapter.ts +0 -4
  794. package/src/enums/api-service.ts +0 -15
  795. package/src/enums/api.ts +0 -5
  796. package/src/enums/appwrite-migration-resource.ts +0 -27
  797. package/src/enums/attribute-status.ts +0 -7
  798. package/src/enums/auth-method.ts +0 -9
  799. package/src/enums/authentication-factor.ts +0 -6
  800. package/src/enums/authenticator-type.ts +0 -3
  801. package/src/enums/backup-services.ts +0 -8
  802. package/src/enums/billing-plan-group.ts +0 -5
  803. package/src/enums/browser-permission.ts +0 -22
  804. package/src/enums/browser.ts +0 -16
  805. package/src/enums/build-runtime.ts +0 -88
  806. package/src/enums/column-status.ts +0 -7
  807. package/src/enums/compression.ts +0 -5
  808. package/src/enums/console-resource-type.ts +0 -3
  809. package/src/enums/credit-card.ts +0 -19
  810. package/src/enums/database-type.ts +0 -6
  811. package/src/enums/databases-index-type.ts +0 -6
  812. package/src/enums/deployment-download-type.ts +0 -4
  813. package/src/enums/deployment-status.ts +0 -8
  814. package/src/enums/domain-purchase-status.ts +0 -6
  815. package/src/enums/domain-transfer-status-enum.ts +0 -10
  816. package/src/enums/email-template-locale.ts +0 -133
  817. package/src/enums/email-template-type.ts +0 -9
  818. package/src/enums/execution-method.ts +0 -9
  819. package/src/enums/execution-status.ts +0 -7
  820. package/src/enums/execution-trigger.ts +0 -5
  821. package/src/enums/filter-type.ts +0 -4
  822. package/src/enums/firebase-migration-resource.ts +0 -12
  823. package/src/enums/flag.ts +0 -197
  824. package/src/enums/framework.ts +0 -17
  825. package/src/enums/frameworks.ts +0 -17
  826. package/src/enums/health-antivirus-status.ts +0 -5
  827. package/src/enums/health-check-status.ts +0 -4
  828. package/src/enums/image-format.ts +0 -9
  829. package/src/enums/image-gravity.ts +0 -11
  830. package/src/enums/index-status.ts +0 -7
  831. package/src/enums/message-priority.ts +0 -4
  832. package/src/enums/message-status.ts +0 -7
  833. package/src/enums/messaging-provider-type.ts +0 -5
  834. package/src/enums/n-host-migration-resource.ts +0 -13
  835. package/src/enums/name.ts +0 -15
  836. package/src/enums/o-auth-provider.ts +0 -41
  837. package/src/enums/order-by.ts +0 -4
  838. package/src/enums/password-hash.ts +0 -13
  839. package/src/enums/platform-type.ts +0 -17
  840. package/src/enums/platform.ts +0 -4
  841. package/src/enums/project-usage-range.ts +0 -4
  842. package/src/enums/proxy-resource-type.ts +0 -4
  843. package/src/enums/proxy-rule-deployment-resource-type.ts +0 -4
  844. package/src/enums/proxy-rule-status.ts +0 -6
  845. package/src/enums/region.ts +0 -8
  846. package/src/enums/registration-type.ts +0 -6
  847. package/src/enums/relation-mutate.ts +0 -5
  848. package/src/enums/relationship-type.ts +0 -6
  849. package/src/enums/resource-type.ts +0 -6
  850. package/src/enums/runtime.ts +0 -88
  851. package/src/enums/runtimes.ts +0 -88
  852. package/src/enums/scopes.ts +0 -81
  853. package/src/enums/sms-template-locale.ts +0 -133
  854. package/src/enums/sms-template-type.ts +0 -6
  855. package/src/enums/smtp-encryption.ts +0 -5
  856. package/src/enums/smtp-secure.ts +0 -4
  857. package/src/enums/status-code.ts +0 -6
  858. package/src/enums/status.ts +0 -3
  859. package/src/enums/supabase-migration-resource.ts +0 -13
  860. package/src/enums/tables-db-index-type.ts +0 -6
  861. package/src/enums/template-reference-type.ts +0 -5
  862. package/src/enums/theme.ts +0 -4
  863. package/src/enums/timezone.ts +0 -421
  864. package/src/enums/usage-range.ts +0 -5
  865. package/src/enums/use-cases.ts +0 -16
  866. package/src/enums/vcs-detection-type.ts +0 -4
  867. package/src/enums/vcs-reference-type.ts +0 -5
  868. package/src/id.ts +0 -47
  869. package/src/operator.ts +0 -308
  870. package/src/query.ts +0 -576
  871. package/src/service.ts +0 -30
  872. package/src/services/account.ts +0 -4293
  873. package/src/services/activities.ts +0 -116
  874. package/src/services/assistant.ts +0 -67
  875. package/src/services/backups.ts +0 -754
  876. package/src/services/console.ts +0 -678
  877. package/src/services/databases.ts +0 -6376
  878. package/src/services/domains.ts +0 -4064
  879. package/src/services/functions.ts +0 -2224
  880. package/src/services/graphql.ts +0 -124
  881. package/src/services/health.ts +0 -1296
  882. package/src/services/locale.ts +0 -198
  883. package/src/services/messaging.ts +0 -5194
  884. package/src/services/migrations.ts +0 -1207
  885. package/src/services/organizations.ts +0 -2742
  886. package/src/services/project.ts +0 -404
  887. package/src/services/projects.ts +0 -4431
  888. package/src/services/proxy.ts +0 -532
  889. package/src/services/realtime.ts +0 -537
  890. package/src/services/sites.ts +0 -2131
  891. package/src/services/storage.ts +0 -1196
  892. package/src/services/tables-db.ts +0 -6256
  893. package/src/services/teams.ts +0 -959
  894. package/src/services/tokens.ts +0 -315
  895. package/src/services/users.ts +0 -3324
  896. package/src/services/vcs.ts +0 -676
  897. package/src/services/webhooks.ts +0 -451
  898. package/tsconfig.json +0 -24
@@ -1,27 +1,24 @@
1
- import { DatabaseType } from "./enums/database-type"
2
- import { AttributeStatus } from "./enums/attribute-status"
3
- import { ColumnStatus } from "./enums/column-status"
4
- import { IndexStatus } from "./enums/index-status"
5
- import { DeploymentStatus } from "./enums/deployment-status"
6
- import { ExecutionTrigger } from "./enums/execution-trigger"
7
- import { ExecutionStatus } from "./enums/execution-status"
8
- import { PlatformType } from "./enums/platform-type"
9
- import { HealthAntivirusStatus } from "./enums/health-antivirus-status"
10
- import { HealthCheckStatus } from "./enums/health-check-status"
11
- import { ProxyRuleDeploymentResourceType } from "./enums/proxy-rule-deployment-resource-type"
12
- import { ProxyRuleStatus } from "./enums/proxy-rule-status"
13
- import { MessageStatus } from "./enums/message-status"
14
- import { BillingPlanGroup } from "./enums/billing-plan-group"
15
- import { DomainTransferStatusEnum } from "./enums/domain-transfer-status-enum"
16
- import { DomainPurchaseStatus } from "./enums/domain-purchase-status"
17
-
1
+ import { DatabaseType } from "./enums/database-type";
2
+ import { AttributeStatus } from "./enums/attribute-status";
3
+ import { ColumnStatus } from "./enums/column-status";
4
+ import { IndexStatus } from "./enums/index-status";
5
+ import { DeploymentStatus } from "./enums/deployment-status";
6
+ import { ExecutionTrigger } from "./enums/execution-trigger";
7
+ import { ExecutionStatus } from "./enums/execution-status";
8
+ import { PlatformType } from "./enums/platform-type";
9
+ import { HealthAntivirusStatus } from "./enums/health-antivirus-status";
10
+ import { HealthCheckStatus } from "./enums/health-check-status";
11
+ import { ProxyRuleDeploymentResourceType } from "./enums/proxy-rule-deployment-resource-type";
12
+ import { ProxyRuleStatus } from "./enums/proxy-rule-status";
13
+ import { MessageStatus } from "./enums/message-status";
14
+ import { BillingPlanGroup } from "./enums/billing-plan-group";
15
+ import { DomainTransferStatusEnum } from "./enums/domain-transfer-status-enum";
16
+ import { DomainPurchaseStatus } from "./enums/domain-purchase-status";
18
17
  /**
19
18
  * Appwrite Models
20
19
  */
21
- export namespace Models {
22
-
23
- declare const __default: unique symbol;
24
-
20
+ export declare namespace Models {
21
+ const __default: unique symbol;
25
22
  /**
26
23
  * Rows List
27
24
  */
@@ -34,8 +31,7 @@ export namespace Models {
34
31
  * List of rows.
35
32
  */
36
33
  rows: Row[];
37
- }
38
-
34
+ };
39
35
  /**
40
36
  * Documents List
41
37
  */
@@ -48,8 +44,7 @@ export namespace Models {
48
44
  * List of documents.
49
45
  */
50
46
  documents: Document[];
51
- }
52
-
47
+ };
53
48
  /**
54
49
  * Tables List
55
50
  */
@@ -62,8 +57,7 @@ export namespace Models {
62
57
  * List of tables.
63
58
  */
64
59
  tables: Table[];
65
- }
66
-
60
+ };
67
61
  /**
68
62
  * Collections List
69
63
  */
@@ -76,8 +70,7 @@ export namespace Models {
76
70
  * List of collections.
77
71
  */
78
72
  collections: Collection[];
79
- }
80
-
73
+ };
81
74
  /**
82
75
  * Databases List
83
76
  */
@@ -90,8 +83,7 @@ export namespace Models {
90
83
  * List of databases.
91
84
  */
92
85
  databases: Database[];
93
- }
94
-
86
+ };
95
87
  /**
96
88
  * Indexes List
97
89
  */
@@ -104,8 +96,7 @@ export namespace Models {
104
96
  * List of indexes.
105
97
  */
106
98
  indexes: Index[];
107
- }
108
-
99
+ };
109
100
  /**
110
101
  * Column Indexes List
111
102
  */
@@ -118,8 +109,7 @@ export namespace Models {
118
109
  * List of indexes.
119
110
  */
120
111
  indexes: ColumnIndex[];
121
- }
122
-
112
+ };
123
113
  /**
124
114
  * Users List
125
115
  */
@@ -132,8 +122,7 @@ export namespace Models {
132
122
  * List of users.
133
123
  */
134
124
  users: User<Preferences>[];
135
- }
136
-
125
+ };
137
126
  /**
138
127
  * Sessions List
139
128
  */
@@ -146,8 +135,7 @@ export namespace Models {
146
135
  * List of sessions.
147
136
  */
148
137
  sessions: Session[];
149
- }
150
-
138
+ };
151
139
  /**
152
140
  * Identities List
153
141
  */
@@ -160,8 +148,7 @@ export namespace Models {
160
148
  * List of identities.
161
149
  */
162
150
  identities: Identity[];
163
- }
164
-
151
+ };
165
152
  /**
166
153
  * Logs List
167
154
  */
@@ -174,8 +161,7 @@ export namespace Models {
174
161
  * List of logs.
175
162
  */
176
163
  logs: Log[];
177
- }
178
-
164
+ };
179
165
  /**
180
166
  * Files List
181
167
  */
@@ -188,8 +174,7 @@ export namespace Models {
188
174
  * List of files.
189
175
  */
190
176
  files: File[];
191
- }
192
-
177
+ };
193
178
  /**
194
179
  * Buckets List
195
180
  */
@@ -202,8 +187,7 @@ export namespace Models {
202
187
  * List of buckets.
203
188
  */
204
189
  buckets: Bucket[];
205
- }
206
-
190
+ };
207
191
  /**
208
192
  * Resource Tokens List
209
193
  */
@@ -216,8 +200,7 @@ export namespace Models {
216
200
  * List of tokens.
217
201
  */
218
202
  tokens: ResourceToken[];
219
- }
220
-
203
+ };
221
204
  /**
222
205
  * Teams List
223
206
  */
@@ -230,8 +213,7 @@ export namespace Models {
230
213
  * List of teams.
231
214
  */
232
215
  teams: Team<Preferences>[];
233
- }
234
-
216
+ };
235
217
  /**
236
218
  * Memberships List
237
219
  */
@@ -244,8 +226,7 @@ export namespace Models {
244
226
  * List of memberships.
245
227
  */
246
228
  memberships: Membership[];
247
- }
248
-
229
+ };
249
230
  /**
250
231
  * Sites List
251
232
  */
@@ -258,8 +239,7 @@ export namespace Models {
258
239
  * List of sites.
259
240
  */
260
241
  sites: Site[];
261
- }
262
-
242
+ };
263
243
  /**
264
244
  * Site Templates List
265
245
  */
@@ -272,8 +252,7 @@ export namespace Models {
272
252
  * List of templates.
273
253
  */
274
254
  templates: TemplateSite[];
275
- }
276
-
255
+ };
277
256
  /**
278
257
  * Functions List
279
258
  */
@@ -286,8 +265,7 @@ export namespace Models {
286
265
  * List of functions.
287
266
  */
288
267
  functions: Function[];
289
- }
290
-
268
+ };
291
269
  /**
292
270
  * Function Templates List
293
271
  */
@@ -300,8 +278,7 @@ export namespace Models {
300
278
  * List of templates.
301
279
  */
302
280
  templates: TemplateFunction[];
303
- }
304
-
281
+ };
305
282
  /**
306
283
  * Installations List
307
284
  */
@@ -314,8 +291,7 @@ export namespace Models {
314
291
  * List of installations.
315
292
  */
316
293
  installations: Installation[];
317
- }
318
-
294
+ };
319
295
  /**
320
296
  * Framework Provider Repositories List
321
297
  */
@@ -328,8 +304,7 @@ export namespace Models {
328
304
  * List of frameworkProviderRepositories.
329
305
  */
330
306
  frameworkProviderRepositories: ProviderRepositoryFramework[];
331
- }
332
-
307
+ };
333
308
  /**
334
309
  * Runtime Provider Repositories List
335
310
  */
@@ -342,8 +317,7 @@ export namespace Models {
342
317
  * List of runtimeProviderRepositories.
343
318
  */
344
319
  runtimeProviderRepositories: ProviderRepositoryRuntime[];
345
- }
346
-
320
+ };
347
321
  /**
348
322
  * Branches List
349
323
  */
@@ -356,8 +330,7 @@ export namespace Models {
356
330
  * List of branches.
357
331
  */
358
332
  branches: Branch[];
359
- }
360
-
333
+ };
361
334
  /**
362
335
  * Frameworks List
363
336
  */
@@ -370,8 +343,7 @@ export namespace Models {
370
343
  * List of frameworks.
371
344
  */
372
345
  frameworks: Framework[];
373
- }
374
-
346
+ };
375
347
  /**
376
348
  * Runtimes List
377
349
  */
@@ -384,8 +356,7 @@ export namespace Models {
384
356
  * List of runtimes.
385
357
  */
386
358
  runtimes: Runtime[];
387
- }
388
-
359
+ };
389
360
  /**
390
361
  * Deployments List
391
362
  */
@@ -398,8 +369,7 @@ export namespace Models {
398
369
  * List of deployments.
399
370
  */
400
371
  deployments: Deployment[];
401
- }
402
-
372
+ };
403
373
  /**
404
374
  * Executions List
405
375
  */
@@ -412,8 +382,7 @@ export namespace Models {
412
382
  * List of executions.
413
383
  */
414
384
  executions: Execution[];
415
- }
416
-
385
+ };
417
386
  /**
418
387
  * Projects List
419
388
  */
@@ -426,8 +395,7 @@ export namespace Models {
426
395
  * List of projects.
427
396
  */
428
397
  projects: Project[];
429
- }
430
-
398
+ };
431
399
  /**
432
400
  * Webhooks List
433
401
  */
@@ -440,8 +408,7 @@ export namespace Models {
440
408
  * List of webhooks.
441
409
  */
442
410
  webhooks: Webhook[];
443
- }
444
-
411
+ };
445
412
  /**
446
413
  * API Keys List
447
414
  */
@@ -454,8 +421,7 @@ export namespace Models {
454
421
  * List of keys.
455
422
  */
456
423
  keys: Key[];
457
- }
458
-
424
+ };
459
425
  /**
460
426
  * Dev Keys List
461
427
  */
@@ -468,8 +434,7 @@ export namespace Models {
468
434
  * List of devKeys.
469
435
  */
470
436
  devKeys: DevKey[];
471
- }
472
-
437
+ };
473
438
  /**
474
439
  * Platforms List
475
440
  */
@@ -482,8 +447,7 @@ export namespace Models {
482
447
  * List of platforms.
483
448
  */
484
449
  platforms: Platform[];
485
- }
486
-
450
+ };
487
451
  /**
488
452
  * Countries List
489
453
  */
@@ -496,8 +460,7 @@ export namespace Models {
496
460
  * List of countries.
497
461
  */
498
462
  countries: Country[];
499
- }
500
-
463
+ };
501
464
  /**
502
465
  * Continents List
503
466
  */
@@ -510,8 +473,7 @@ export namespace Models {
510
473
  * List of continents.
511
474
  */
512
475
  continents: Continent[];
513
- }
514
-
476
+ };
515
477
  /**
516
478
  * Languages List
517
479
  */
@@ -524,8 +486,7 @@ export namespace Models {
524
486
  * List of languages.
525
487
  */
526
488
  languages: Language[];
527
- }
528
-
489
+ };
529
490
  /**
530
491
  * Currencies List
531
492
  */
@@ -538,8 +499,7 @@ export namespace Models {
538
499
  * List of currencies.
539
500
  */
540
501
  currencies: Currency[];
541
- }
542
-
502
+ };
543
503
  /**
544
504
  * Phones List
545
505
  */
@@ -552,8 +512,7 @@ export namespace Models {
552
512
  * List of phones.
553
513
  */
554
514
  phones: Phone[];
555
- }
556
-
515
+ };
557
516
  /**
558
517
  * Variables List
559
518
  */
@@ -566,8 +525,7 @@ export namespace Models {
566
525
  * List of variables.
567
526
  */
568
527
  variables: Variable[];
569
- }
570
-
528
+ };
571
529
  /**
572
530
  * Status List
573
531
  */
@@ -580,8 +538,7 @@ export namespace Models {
580
538
  * List of statuses.
581
539
  */
582
540
  statuses: HealthStatus[];
583
- }
584
-
541
+ };
585
542
  /**
586
543
  * Rule List
587
544
  */
@@ -594,8 +551,7 @@ export namespace Models {
594
551
  * List of rules.
595
552
  */
596
553
  rules: ProxyRule[];
597
- }
598
-
554
+ };
599
555
  /**
600
556
  * Schedules List
601
557
  */
@@ -608,8 +564,7 @@ export namespace Models {
608
564
  * List of schedules.
609
565
  */
610
566
  schedules: Schedule[];
611
- }
612
-
567
+ };
613
568
  /**
614
569
  * Locale codes list
615
570
  */
@@ -622,8 +577,7 @@ export namespace Models {
622
577
  * List of localeCodes.
623
578
  */
624
579
  localeCodes: LocaleCode[];
625
- }
626
-
580
+ };
627
581
  /**
628
582
  * Provider list
629
583
  */
@@ -636,8 +590,7 @@ export namespace Models {
636
590
  * List of providers.
637
591
  */
638
592
  providers: Provider[];
639
- }
640
-
593
+ };
641
594
  /**
642
595
  * Message list
643
596
  */
@@ -650,8 +603,7 @@ export namespace Models {
650
603
  * List of messages.
651
604
  */
652
605
  messages: Message[];
653
- }
654
-
606
+ };
655
607
  /**
656
608
  * Topic list
657
609
  */
@@ -664,8 +616,7 @@ export namespace Models {
664
616
  * List of topics.
665
617
  */
666
618
  topics: Topic[];
667
- }
668
-
619
+ };
669
620
  /**
670
621
  * Subscriber list
671
622
  */
@@ -678,8 +629,7 @@ export namespace Models {
678
629
  * List of subscribers.
679
630
  */
680
631
  subscribers: Subscriber[];
681
- }
682
-
632
+ };
683
633
  /**
684
634
  * Target list
685
635
  */
@@ -692,8 +642,7 @@ export namespace Models {
692
642
  * List of targets.
693
643
  */
694
644
  targets: Target[];
695
- }
696
-
645
+ };
697
646
  /**
698
647
  * Transaction List
699
648
  */
@@ -706,8 +655,7 @@ export namespace Models {
706
655
  * List of transactions.
707
656
  */
708
657
  transactions: Transaction[];
709
- }
710
-
658
+ };
711
659
  /**
712
660
  * Migrations List
713
661
  */
@@ -720,8 +668,7 @@ export namespace Models {
720
668
  * List of migrations.
721
669
  */
722
670
  migrations: Migration[];
723
- }
724
-
671
+ };
725
672
  /**
726
673
  * Specifications List
727
674
  */
@@ -734,8 +681,7 @@ export namespace Models {
734
681
  * List of specifications.
735
682
  */
736
683
  specifications: Specification[];
737
- }
738
-
684
+ };
739
685
  /**
740
686
  * VCS Content List
741
687
  */
@@ -748,8 +694,7 @@ export namespace Models {
748
694
  * List of contents.
749
695
  */
750
696
  contents: VcsContent[];
751
- }
752
-
697
+ };
753
698
  /**
754
699
  * Database
755
700
  */
@@ -786,8 +731,7 @@ export namespace Models {
786
731
  * Database backup archives.
787
732
  */
788
733
  archives: Collection[];
789
- }
790
-
734
+ };
791
735
  /**
792
736
  * Collection
793
737
  */
@@ -840,8 +784,7 @@ export namespace Models {
840
784
  * Currently used document size in bytes based on defined attributes.
841
785
  */
842
786
  bytesUsed: number;
843
- }
844
-
787
+ };
845
788
  /**
846
789
  * Attributes List
847
790
  */
@@ -854,8 +797,7 @@ export namespace Models {
854
797
  * List of attributes.
855
798
  */
856
799
  attributes: (Models.AttributeBoolean | Models.AttributeInteger | Models.AttributeFloat | Models.AttributeEmail | Models.AttributeEnum | Models.AttributeUrl | Models.AttributeIp | Models.AttributeDatetime | Models.AttributeRelationship | Models.AttributePoint | Models.AttributeLine | Models.AttributePolygon | Models.AttributeVarchar | Models.AttributeText | Models.AttributeMediumtext | Models.AttributeLongtext | Models.AttributeString)[];
857
- }
858
-
800
+ };
859
801
  /**
860
802
  * AttributeString
861
803
  */
@@ -904,8 +846,7 @@ export namespace Models {
904
846
  * Defines whether this attribute is encrypted or not.
905
847
  */
906
848
  encrypt?: boolean;
907
- }
908
-
849
+ };
909
850
  /**
910
851
  * AttributeInteger
911
852
  */
@@ -954,8 +895,7 @@ export namespace Models {
954
895
  * Default value for attribute when not provided. Cannot be set when attribute is required.
955
896
  */
956
897
  default?: number;
957
- }
958
-
898
+ };
959
899
  /**
960
900
  * AttributeFloat
961
901
  */
@@ -1004,8 +944,7 @@ export namespace Models {
1004
944
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1005
945
  */
1006
946
  default?: number;
1007
- }
1008
-
947
+ };
1009
948
  /**
1010
949
  * AttributeBoolean
1011
950
  */
@@ -1046,8 +985,7 @@ export namespace Models {
1046
985
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1047
986
  */
1048
987
  default?: boolean;
1049
- }
1050
-
988
+ };
1051
989
  /**
1052
990
  * AttributeEmail
1053
991
  */
@@ -1092,8 +1030,7 @@ export namespace Models {
1092
1030
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1093
1031
  */
1094
1032
  default?: string;
1095
- }
1096
-
1033
+ };
1097
1034
  /**
1098
1035
  * AttributeEnum
1099
1036
  */
@@ -1142,8 +1079,7 @@ export namespace Models {
1142
1079
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1143
1080
  */
1144
1081
  default?: string;
1145
- }
1146
-
1082
+ };
1147
1083
  /**
1148
1084
  * AttributeIP
1149
1085
  */
@@ -1188,8 +1124,7 @@ export namespace Models {
1188
1124
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1189
1125
  */
1190
1126
  default?: string;
1191
- }
1192
-
1127
+ };
1193
1128
  /**
1194
1129
  * AttributeURL
1195
1130
  */
@@ -1234,8 +1169,7 @@ export namespace Models {
1234
1169
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1235
1170
  */
1236
1171
  default?: string;
1237
- }
1238
-
1172
+ };
1239
1173
  /**
1240
1174
  * AttributeDatetime
1241
1175
  */
@@ -1280,8 +1214,7 @@ export namespace Models {
1280
1214
  * Default value for attribute when not provided. Only null is optional
1281
1215
  */
1282
1216
  default?: string;
1283
- }
1284
-
1217
+ };
1285
1218
  /**
1286
1219
  * AttributeRelationship
1287
1220
  */
@@ -1342,8 +1275,7 @@ export namespace Models {
1342
1275
  * Whether this is the parent or child side of the relationship
1343
1276
  */
1344
1277
  side: string;
1345
- }
1346
-
1278
+ };
1347
1279
  /**
1348
1280
  * AttributePoint
1349
1281
  */
@@ -1384,8 +1316,7 @@ export namespace Models {
1384
1316
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1385
1317
  */
1386
1318
  default?: any[];
1387
- }
1388
-
1319
+ };
1389
1320
  /**
1390
1321
  * AttributeLine
1391
1322
  */
@@ -1426,8 +1357,7 @@ export namespace Models {
1426
1357
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1427
1358
  */
1428
1359
  default?: any[];
1429
- }
1430
-
1360
+ };
1431
1361
  /**
1432
1362
  * AttributePolygon
1433
1363
  */
@@ -1468,8 +1398,7 @@ export namespace Models {
1468
1398
  * Default value for attribute when not provided. Cannot be set when attribute is required.
1469
1399
  */
1470
1400
  default?: any[];
1471
- }
1472
-
1401
+ };
1473
1402
  /**
1474
1403
  * AttributeVarchar
1475
1404
  */
@@ -1518,8 +1447,7 @@ export namespace Models {
1518
1447
  * Defines whether this attribute is encrypted or not.
1519
1448
  */
1520
1449
  encrypt?: boolean;
1521
- }
1522
-
1450
+ };
1523
1451
  /**
1524
1452
  * AttributeText
1525
1453
  */
@@ -1564,8 +1492,7 @@ export namespace Models {
1564
1492
  * Defines whether this attribute is encrypted or not.
1565
1493
  */
1566
1494
  encrypt?: boolean;
1567
- }
1568
-
1495
+ };
1569
1496
  /**
1570
1497
  * AttributeMediumtext
1571
1498
  */
@@ -1610,8 +1537,7 @@ export namespace Models {
1610
1537
  * Defines whether this attribute is encrypted or not.
1611
1538
  */
1612
1539
  encrypt?: boolean;
1613
- }
1614
-
1540
+ };
1615
1541
  /**
1616
1542
  * AttributeLongtext
1617
1543
  */
@@ -1656,8 +1582,7 @@ export namespace Models {
1656
1582
  * Defines whether this attribute is encrypted or not.
1657
1583
  */
1658
1584
  encrypt?: boolean;
1659
- }
1660
-
1585
+ };
1661
1586
  /**
1662
1587
  * Table
1663
1588
  */
@@ -1710,8 +1635,7 @@ export namespace Models {
1710
1635
  * Currently used row size in bytes based on defined columns.
1711
1636
  */
1712
1637
  bytesUsed: number;
1713
- }
1714
-
1638
+ };
1715
1639
  /**
1716
1640
  * Columns List
1717
1641
  */
@@ -1724,8 +1648,7 @@ export namespace Models {
1724
1648
  * List of columns.
1725
1649
  */
1726
1650
  columns: (Models.ColumnBoolean | Models.ColumnInteger | Models.ColumnFloat | Models.ColumnEmail | Models.ColumnEnum | Models.ColumnUrl | Models.ColumnIp | Models.ColumnDatetime | Models.ColumnRelationship | Models.ColumnPoint | Models.ColumnLine | Models.ColumnPolygon | Models.ColumnVarchar | Models.ColumnText | Models.ColumnMediumtext | Models.ColumnLongtext | Models.ColumnString)[];
1727
- }
1728
-
1651
+ };
1729
1652
  /**
1730
1653
  * ColumnString
1731
1654
  */
@@ -1774,8 +1697,7 @@ export namespace Models {
1774
1697
  * Defines whether this column is encrypted or not.
1775
1698
  */
1776
1699
  encrypt?: boolean;
1777
- }
1778
-
1700
+ };
1779
1701
  /**
1780
1702
  * ColumnInteger
1781
1703
  */
@@ -1824,8 +1746,7 @@ export namespace Models {
1824
1746
  * Default value for column when not provided. Cannot be set when column is required.
1825
1747
  */
1826
1748
  default?: number;
1827
- }
1828
-
1749
+ };
1829
1750
  /**
1830
1751
  * ColumnFloat
1831
1752
  */
@@ -1874,8 +1795,7 @@ export namespace Models {
1874
1795
  * Default value for column when not provided. Cannot be set when column is required.
1875
1796
  */
1876
1797
  default?: number;
1877
- }
1878
-
1798
+ };
1879
1799
  /**
1880
1800
  * ColumnBoolean
1881
1801
  */
@@ -1916,8 +1836,7 @@ export namespace Models {
1916
1836
  * Default value for column when not provided. Cannot be set when column is required.
1917
1837
  */
1918
1838
  default?: boolean;
1919
- }
1920
-
1839
+ };
1921
1840
  /**
1922
1841
  * ColumnEmail
1923
1842
  */
@@ -1962,8 +1881,7 @@ export namespace Models {
1962
1881
  * Default value for column when not provided. Cannot be set when column is required.
1963
1882
  */
1964
1883
  default?: string;
1965
- }
1966
-
1884
+ };
1967
1885
  /**
1968
1886
  * ColumnEnum
1969
1887
  */
@@ -2012,8 +1930,7 @@ export namespace Models {
2012
1930
  * Default value for column when not provided. Cannot be set when column is required.
2013
1931
  */
2014
1932
  default?: string;
2015
- }
2016
-
1933
+ };
2017
1934
  /**
2018
1935
  * ColumnIP
2019
1936
  */
@@ -2058,8 +1975,7 @@ export namespace Models {
2058
1975
  * Default value for column when not provided. Cannot be set when column is required.
2059
1976
  */
2060
1977
  default?: string;
2061
- }
2062
-
1978
+ };
2063
1979
  /**
2064
1980
  * ColumnURL
2065
1981
  */
@@ -2104,8 +2020,7 @@ export namespace Models {
2104
2020
  * Default value for column when not provided. Cannot be set when column is required.
2105
2021
  */
2106
2022
  default?: string;
2107
- }
2108
-
2023
+ };
2109
2024
  /**
2110
2025
  * ColumnDatetime
2111
2026
  */
@@ -2150,8 +2065,7 @@ export namespace Models {
2150
2065
  * Default value for column when not provided. Only null is optional
2151
2066
  */
2152
2067
  default?: string;
2153
- }
2154
-
2068
+ };
2155
2069
  /**
2156
2070
  * ColumnRelationship
2157
2071
  */
@@ -2212,8 +2126,7 @@ export namespace Models {
2212
2126
  * Whether this is the parent or child side of the relationship
2213
2127
  */
2214
2128
  side: string;
2215
- }
2216
-
2129
+ };
2217
2130
  /**
2218
2131
  * ColumnPoint
2219
2132
  */
@@ -2254,8 +2167,7 @@ export namespace Models {
2254
2167
  * Default value for column when not provided. Cannot be set when column is required.
2255
2168
  */
2256
2169
  default?: any[];
2257
- }
2258
-
2170
+ };
2259
2171
  /**
2260
2172
  * ColumnLine
2261
2173
  */
@@ -2296,8 +2208,7 @@ export namespace Models {
2296
2208
  * Default value for column when not provided. Cannot be set when column is required.
2297
2209
  */
2298
2210
  default?: any[];
2299
- }
2300
-
2211
+ };
2301
2212
  /**
2302
2213
  * ColumnPolygon
2303
2214
  */
@@ -2338,8 +2249,7 @@ export namespace Models {
2338
2249
  * Default value for column when not provided. Cannot be set when column is required.
2339
2250
  */
2340
2251
  default?: any[];
2341
- }
2342
-
2252
+ };
2343
2253
  /**
2344
2254
  * ColumnVarchar
2345
2255
  */
@@ -2388,8 +2298,7 @@ export namespace Models {
2388
2298
  * Defines whether this column is encrypted or not.
2389
2299
  */
2390
2300
  encrypt?: boolean;
2391
- }
2392
-
2301
+ };
2393
2302
  /**
2394
2303
  * ColumnText
2395
2304
  */
@@ -2434,8 +2343,7 @@ export namespace Models {
2434
2343
  * Defines whether this column is encrypted or not.
2435
2344
  */
2436
2345
  encrypt?: boolean;
2437
- }
2438
-
2346
+ };
2439
2347
  /**
2440
2348
  * ColumnMediumtext
2441
2349
  */
@@ -2480,8 +2388,7 @@ export namespace Models {
2480
2388
  * Defines whether this column is encrypted or not.
2481
2389
  */
2482
2390
  encrypt?: boolean;
2483
- }
2484
-
2391
+ };
2485
2392
  /**
2486
2393
  * ColumnLongtext
2487
2394
  */
@@ -2526,8 +2433,7 @@ export namespace Models {
2526
2433
  * Defines whether this column is encrypted or not.
2527
2434
  */
2528
2435
  encrypt?: boolean;
2529
- }
2530
-
2436
+ };
2531
2437
  /**
2532
2438
  * Index
2533
2439
  */
@@ -2572,8 +2478,7 @@ export namespace Models {
2572
2478
  * Index orders.
2573
2479
  */
2574
2480
  orders?: string[];
2575
- }
2576
-
2481
+ };
2577
2482
  /**
2578
2483
  * Index
2579
2484
  */
@@ -2618,8 +2523,7 @@ export namespace Models {
2618
2523
  * Index orders.
2619
2524
  */
2620
2525
  orders?: string[];
2621
- }
2622
-
2526
+ };
2623
2527
  /**
2624
2528
  * Row
2625
2529
  */
@@ -2652,13 +2556,11 @@ export namespace Models {
2652
2556
  * Row permissions. [Learn more about permissions](https://appwrite.io/docs/permissions).
2653
2557
  */
2654
2558
  $permissions: string[];
2655
- }
2656
-
2559
+ };
2657
2560
  export type DefaultRow = Row & {
2658
2561
  [key: string]: any;
2659
2562
  [__default]: true;
2660
2563
  };
2661
-
2662
2564
  /**
2663
2565
  * Document
2664
2566
  */
@@ -2691,13 +2593,11 @@ export namespace Models {
2691
2593
  * Document permissions. [Learn more about permissions](https://appwrite.io/docs/permissions).
2692
2594
  */
2693
2595
  $permissions: string[];
2694
- }
2695
-
2596
+ };
2696
2597
  export type DefaultDocument = Document & {
2697
2598
  [key: string]: any;
2698
2599
  [__default]: true;
2699
2600
  };
2700
-
2701
2601
  /**
2702
2602
  * Log
2703
2603
  */
@@ -2786,8 +2686,7 @@ export namespace Models {
2786
2686
  * Country name.
2787
2687
  */
2788
2688
  countryName: string;
2789
- }
2790
-
2689
+ };
2791
2690
  /**
2792
2691
  * User
2793
2692
  */
@@ -2876,8 +2775,7 @@ export namespace Models {
2876
2775
  * ID of the original actor performing the impersonation. Present only when the current request is impersonating another user. Internal audit logs attribute the action to this user, while the impersonated target is recorded only in internal audit payload data.
2877
2776
  */
2878
2777
  impersonatorUserId?: string;
2879
- }
2880
-
2778
+ };
2881
2779
  /**
2882
2780
  * AlgoMD5
2883
2781
  */
@@ -2886,8 +2784,7 @@ export namespace Models {
2886
2784
  * Algo type.
2887
2785
  */
2888
2786
  type: string;
2889
- }
2890
-
2787
+ };
2891
2788
  /**
2892
2789
  * AlgoSHA
2893
2790
  */
@@ -2896,8 +2793,7 @@ export namespace Models {
2896
2793
  * Algo type.
2897
2794
  */
2898
2795
  type: string;
2899
- }
2900
-
2796
+ };
2901
2797
  /**
2902
2798
  * AlgoPHPass
2903
2799
  */
@@ -2906,8 +2802,7 @@ export namespace Models {
2906
2802
  * Algo type.
2907
2803
  */
2908
2804
  type: string;
2909
- }
2910
-
2805
+ };
2911
2806
  /**
2912
2807
  * AlgoBcrypt
2913
2808
  */
@@ -2916,8 +2811,7 @@ export namespace Models {
2916
2811
  * Algo type.
2917
2812
  */
2918
2813
  type: string;
2919
- }
2920
-
2814
+ };
2921
2815
  /**
2922
2816
  * AlgoScrypt
2923
2817
  */
@@ -2942,8 +2836,7 @@ export namespace Models {
2942
2836
  * Length used to compute hash.
2943
2837
  */
2944
2838
  length: number;
2945
- }
2946
-
2839
+ };
2947
2840
  /**
2948
2841
  * AlgoScryptModified
2949
2842
  */
@@ -2964,8 +2857,7 @@ export namespace Models {
2964
2857
  * Key used to compute hash.
2965
2858
  */
2966
2859
  signerKey: string;
2967
- }
2968
-
2860
+ };
2969
2861
  /**
2970
2862
  * AlgoArgon2
2971
2863
  */
@@ -2986,19 +2878,15 @@ export namespace Models {
2986
2878
  * Number of threads used to compute hash.
2987
2879
  */
2988
2880
  threads: number;
2989
- }
2990
-
2881
+ };
2991
2882
  /**
2992
2883
  * Preferences
2993
2884
  */
2994
- export type Preferences = {
2995
- }
2996
-
2885
+ export type Preferences = {};
2997
2886
  export type DefaultPreferences = Preferences & {
2998
2887
  [key: string]: any;
2999
2888
  [__default]: true;
3000
2889
  };
3001
-
3002
2890
  /**
3003
2891
  * Session
3004
2892
  */
@@ -3119,8 +3007,7 @@ export namespace Models {
3119
3007
  * Most recent date in ISO 8601 format when the session successfully passed MFA challenge.
3120
3008
  */
3121
3009
  mfaUpdatedAt: string;
3122
- }
3123
-
3010
+ };
3124
3011
  /**
3125
3012
  * Identity
3126
3013
  */
@@ -3165,8 +3052,7 @@ export namespace Models {
3165
3052
  * Identity Provider Refresh Token.
3166
3053
  */
3167
3054
  providerRefreshToken: string;
3168
- }
3169
-
3055
+ };
3170
3056
  /**
3171
3057
  * Token
3172
3058
  */
@@ -3195,8 +3081,7 @@ export namespace Models {
3195
3081
  * Security phrase of a token. Empty if security phrase was not requested when creating a token. It includes randomly generated phrase which is also sent in the external resource such as email.
3196
3082
  */
3197
3083
  phrase: string;
3198
- }
3199
-
3084
+ };
3200
3085
  /**
3201
3086
  * JWT
3202
3087
  */
@@ -3205,8 +3090,7 @@ export namespace Models {
3205
3090
  * JWT encoded string.
3206
3091
  */
3207
3092
  jwt: string;
3208
- }
3209
-
3093
+ };
3210
3094
  /**
3211
3095
  * Locale
3212
3096
  */
@@ -3239,8 +3123,7 @@ export namespace Models {
3239
3123
  * Currency code in [ISO 4217-1](http://en.wikipedia.org/wiki/ISO_4217) three-character format
3240
3124
  */
3241
3125
  currency: string;
3242
- }
3243
-
3126
+ };
3244
3127
  /**
3245
3128
  * LocaleCode
3246
3129
  */
@@ -3253,8 +3136,7 @@ export namespace Models {
3253
3136
  * Locale name
3254
3137
  */
3255
3138
  name: string;
3256
- }
3257
-
3139
+ };
3258
3140
  /**
3259
3141
  * File
3260
3142
  */
@@ -3311,8 +3193,7 @@ export namespace Models {
3311
3193
  * Compression algorithm used for the file. Will be one of none, [gzip](https://en.wikipedia.org/wiki/Gzip), or [zstd](https://en.wikipedia.org/wiki/Zstd).
3312
3194
  */
3313
3195
  compression: string;
3314
- }
3315
-
3196
+ };
3316
3197
  /**
3317
3198
  * Bucket
3318
3199
  */
@@ -3373,8 +3254,7 @@ export namespace Models {
3373
3254
  * Total size of this bucket in bytes.
3374
3255
  */
3375
3256
  totalSize: number;
3376
- }
3377
-
3257
+ };
3378
3258
  /**
3379
3259
  * ResourceToken
3380
3260
  */
@@ -3407,8 +3287,7 @@ export namespace Models {
3407
3287
  * Most recent access date in ISO 8601 format. This attribute is only updated again after 24 hours.
3408
3288
  */
3409
3289
  accessedAt: string;
3410
- }
3411
-
3290
+ };
3412
3291
  /**
3413
3292
  * Team
3414
3293
  */
@@ -3437,8 +3316,7 @@ export namespace Models {
3437
3316
  * Team preferences as a key-value object
3438
3317
  */
3439
3318
  prefs: Preferences;
3440
- }
3441
-
3319
+ };
3442
3320
  /**
3443
3321
  * Membership
3444
3322
  */
@@ -3495,8 +3373,7 @@ export namespace Models {
3495
3373
  * User list of roles
3496
3374
  */
3497
3375
  roles: string[];
3498
- }
3499
-
3376
+ };
3500
3377
  /**
3501
3378
  * Site
3502
3379
  */
@@ -3629,8 +3506,7 @@ export namespace Models {
3629
3506
  * Name of fallback file to use instead of 404 page. If null, Appwrite 404 page will be displayed.
3630
3507
  */
3631
3508
  fallbackFile: string;
3632
- }
3633
-
3509
+ };
3634
3510
  /**
3635
3511
  * Template Site
3636
3512
  */
@@ -3687,8 +3563,7 @@ export namespace Models {
3687
3563
  * Site variables.
3688
3564
  */
3689
3565
  variables: TemplateVariable[];
3690
- }
3691
-
3566
+ };
3692
3567
  /**
3693
3568
  * Template Framework
3694
3569
  */
@@ -3729,8 +3604,7 @@ export namespace Models {
3729
3604
  * Fallback file for SPA. Only relevant for static serve runtime.
3730
3605
  */
3731
3606
  fallbackFile: string;
3732
- }
3733
-
3607
+ };
3734
3608
  /**
3735
3609
  * Function
3736
3610
  */
@@ -3855,8 +3729,7 @@ export namespace Models {
3855
3729
  * Machine specification for executions.
3856
3730
  */
3857
3731
  runtimeSpecification: string;
3858
- }
3859
-
3732
+ };
3860
3733
  /**
3861
3734
  * Template Function
3862
3735
  */
@@ -3929,8 +3802,7 @@ export namespace Models {
3929
3802
  * Function scopes.
3930
3803
  */
3931
3804
  scopes: string[];
3932
- }
3933
-
3805
+ };
3934
3806
  /**
3935
3807
  * Template Runtime
3936
3808
  */
@@ -3951,8 +3823,7 @@ export namespace Models {
3951
3823
  * Path to function in VCS (Version Control System) repository
3952
3824
  */
3953
3825
  providerRootDirectory: string;
3954
- }
3955
-
3826
+ };
3956
3827
  /**
3957
3828
  * Template Variable
3958
3829
  */
@@ -3985,8 +3856,7 @@ export namespace Models {
3985
3856
  * Variable Type.
3986
3857
  */
3987
3858
  type: string;
3988
- }
3989
-
3859
+ };
3990
3860
  /**
3991
3861
  * Installation
3992
3862
  */
@@ -4015,8 +3885,7 @@ export namespace Models {
4015
3885
  * VCS (Version Control System) installation ID.
4016
3886
  */
4017
3887
  providerInstallationId: string;
4018
- }
4019
-
3888
+ };
4020
3889
  /**
4021
3890
  * ProviderRepository
4022
3891
  */
@@ -4061,8 +3930,7 @@ export namespace Models {
4061
3930
  * Environment variables found in .env files
4062
3931
  */
4063
3932
  variables: string[];
4064
- }
4065
-
3933
+ };
4066
3934
  /**
4067
3935
  * ProviderRepositoryFramework
4068
3936
  */
@@ -4111,8 +3979,7 @@ export namespace Models {
4111
3979
  * Auto-detected framework. Empty if type is not "framework".
4112
3980
  */
4113
3981
  framework: string;
4114
- }
4115
-
3982
+ };
4116
3983
  /**
4117
3984
  * ProviderRepositoryRuntime
4118
3985
  */
@@ -4161,8 +4028,7 @@ export namespace Models {
4161
4028
  * Auto-detected runtime. Empty if type is not "runtime".
4162
4029
  */
4163
4030
  runtime: string;
4164
- }
4165
-
4031
+ };
4166
4032
  /**
4167
4033
  * DetectionFramework
4168
4034
  */
@@ -4187,8 +4053,7 @@ export namespace Models {
4187
4053
  * Site Output Directory
4188
4054
  */
4189
4055
  outputDirectory: string;
4190
- }
4191
-
4056
+ };
4192
4057
  /**
4193
4058
  * DetectionRuntime
4194
4059
  */
@@ -4209,8 +4074,7 @@ export namespace Models {
4209
4074
  * Function install and build commands
4210
4075
  */
4211
4076
  commands: string;
4212
- }
4213
-
4077
+ };
4214
4078
  /**
4215
4079
  * DetectionVariable
4216
4080
  */
@@ -4223,8 +4087,7 @@ export namespace Models {
4223
4087
  * Value of environment variable
4224
4088
  */
4225
4089
  value: string;
4226
- }
4227
-
4090
+ };
4228
4091
  /**
4229
4092
  * VcsContents
4230
4093
  */
@@ -4241,8 +4104,7 @@ export namespace Models {
4241
4104
  * Name of directory or file.
4242
4105
  */
4243
4106
  name: string;
4244
- }
4245
-
4107
+ };
4246
4108
  /**
4247
4109
  * Branch
4248
4110
  */
@@ -4251,8 +4113,7 @@ export namespace Models {
4251
4113
  * Branch Name.
4252
4114
  */
4253
4115
  name: string;
4254
- }
4255
-
4116
+ };
4256
4117
  /**
4257
4118
  * Runtime
4258
4119
  */
@@ -4289,8 +4150,7 @@ export namespace Models {
4289
4150
  * List of supported architectures.
4290
4151
  */
4291
4152
  supports: string[];
4292
- }
4293
-
4153
+ };
4294
4154
  /**
4295
4155
  * Framework
4296
4156
  */
@@ -4315,8 +4175,7 @@ export namespace Models {
4315
4175
  * List of supported adapters.
4316
4176
  */
4317
4177
  adapters: FrameworkAdapter[];
4318
- }
4319
-
4178
+ };
4320
4179
  /**
4321
4180
  * Framework Adapter
4322
4181
  */
@@ -4341,8 +4200,7 @@ export namespace Models {
4341
4200
  * Name of fallback file to use instead of 404 page. If null, Appwrite 404 page will be displayed.
4342
4201
  */
4343
4202
  fallbackFile: string;
4344
- }
4345
-
4203
+ };
4346
4204
  /**
4347
4205
  * Deployment
4348
4206
  */
@@ -4455,8 +4313,7 @@ export namespace Models {
4455
4313
  * The branch of the vcs repository
4456
4314
  */
4457
4315
  providerBranchUrl: string;
4458
- }
4459
-
4316
+ };
4460
4317
  /**
4461
4318
  * Execution
4462
4319
  */
@@ -4533,8 +4390,7 @@ export namespace Models {
4533
4390
  * The scheduled time for execution. If left empty, execution will be queued immediately.
4534
4391
  */
4535
4392
  scheduledAt?: string;
4536
- }
4537
-
4393
+ };
4538
4394
  /**
4539
4395
  * Project
4540
4396
  */
@@ -4811,8 +4667,7 @@ export namespace Models {
4811
4667
  * Last time the project was accessed via console. Used with plan's projectInactivityDays to determine if project is paused.
4812
4668
  */
4813
4669
  consoleAccessedAt: string;
4814
- }
4815
-
4670
+ };
4816
4671
  /**
4817
4672
  * Webhook
4818
4673
  */
@@ -4869,8 +4724,7 @@ export namespace Models {
4869
4724
  * Number of consecutive failed webhook attempts.
4870
4725
  */
4871
4726
  attempts: number;
4872
- }
4873
-
4727
+ };
4874
4728
  /**
4875
4729
  * Key
4876
4730
  */
@@ -4911,8 +4765,7 @@ export namespace Models {
4911
4765
  * List of SDK user agents that used this key.
4912
4766
  */
4913
4767
  sdks: string[];
4914
- }
4915
-
4768
+ };
4916
4769
  /**
4917
4770
  * DevKey
4918
4771
  */
@@ -4949,8 +4802,7 @@ export namespace Models {
4949
4802
  * List of SDK user agents that used this key.
4950
4803
  */
4951
4804
  sdks: string[];
4952
- }
4953
-
4805
+ };
4954
4806
  /**
4955
4807
  * Mock Number
4956
4808
  */
@@ -4960,11 +4812,10 @@ export namespace Models {
4960
4812
  */
4961
4813
  phone: string;
4962
4814
  /**
4963
- * Mock OTP for the number.
4815
+ * Mock OTP for the number.
4964
4816
  */
4965
4817
  otp: string;
4966
- }
4967
-
4818
+ };
4968
4819
  /**
4969
4820
  * AuthProvider
4970
4821
  */
@@ -4989,8 +4840,7 @@ export namespace Models {
4989
4840
  * Auth Provider is active and can be used to create session.
4990
4841
  */
4991
4842
  enabled: boolean;
4992
- }
4993
-
4843
+ };
4994
4844
  /**
4995
4845
  * Platform
4996
4846
  */
@@ -5035,8 +4885,7 @@ export namespace Models {
5035
4885
  * HTTP basic authentication password.
5036
4886
  */
5037
4887
  httpPass: string;
5038
- }
5039
-
4888
+ };
5040
4889
  /**
5041
4890
  * Variable
5042
4891
  */
@@ -5073,8 +4922,7 @@ export namespace Models {
5073
4922
  * ID of resource to which the variable belongs. If resourceType is "project", it is empty. If resourceType is "function", it is ID of the function.
5074
4923
  */
5075
4924
  resourceId: string;
5076
- }
5077
-
4925
+ };
5078
4926
  /**
5079
4927
  * Country
5080
4928
  */
@@ -5087,8 +4935,7 @@ export namespace Models {
5087
4935
  * Country two-character ISO 3166-1 alpha code.
5088
4936
  */
5089
4937
  code: string;
5090
- }
5091
-
4938
+ };
5092
4939
  /**
5093
4940
  * Continent
5094
4941
  */
@@ -5101,8 +4948,7 @@ export namespace Models {
5101
4948
  * Continent two letter code.
5102
4949
  */
5103
4950
  code: string;
5104
- }
5105
-
4951
+ };
5106
4952
  /**
5107
4953
  * Language
5108
4954
  */
@@ -5119,8 +4965,7 @@ export namespace Models {
5119
4965
  * Language native name.
5120
4966
  */
5121
4967
  nativeName: string;
5122
- }
5123
-
4968
+ };
5124
4969
  /**
5125
4970
  * Currency
5126
4971
  */
@@ -5153,8 +4998,7 @@ export namespace Models {
5153
4998
  * Currency plural name
5154
4999
  */
5155
5000
  namePlural: string;
5156
- }
5157
-
5001
+ };
5158
5002
  /**
5159
5003
  * Phone
5160
5004
  */
@@ -5171,8 +5015,7 @@ export namespace Models {
5171
5015
  * Country name.
5172
5016
  */
5173
5017
  countryName: string;
5174
- }
5175
-
5018
+ };
5176
5019
  /**
5177
5020
  * Health Antivirus
5178
5021
  */
@@ -5185,8 +5028,7 @@ export namespace Models {
5185
5028
  * Antivirus status. Possible values are: `disabled`, `offline`, `online`
5186
5029
  */
5187
5030
  status: HealthAntivirusStatus;
5188
- }
5189
-
5031
+ };
5190
5032
  /**
5191
5033
  * Health Queue
5192
5034
  */
@@ -5195,8 +5037,7 @@ export namespace Models {
5195
5037
  * Amount of actions in the queue.
5196
5038
  */
5197
5039
  size: number;
5198
- }
5199
-
5040
+ };
5200
5041
  /**
5201
5042
  * Health Status
5202
5043
  */
@@ -5213,8 +5054,7 @@ export namespace Models {
5213
5054
  * Service status. Possible values are: `pass`, `fail`
5214
5055
  */
5215
5056
  status: HealthCheckStatus;
5216
- }
5217
-
5057
+ };
5218
5058
  /**
5219
5059
  * Health Certificate
5220
5060
  */
@@ -5243,8 +5083,7 @@ export namespace Models {
5243
5083
  * Signature type SN
5244
5084
  */
5245
5085
  signatureTypeSN: string;
5246
- }
5247
-
5086
+ };
5248
5087
  /**
5249
5088
  * Health Time
5250
5089
  */
@@ -5261,8 +5100,7 @@ export namespace Models {
5261
5100
  * Difference of unix remote and local timestamps in milliseconds.
5262
5101
  */
5263
5102
  diff: number;
5264
- }
5265
-
5103
+ };
5266
5104
  /**
5267
5105
  * Metric
5268
5106
  */
@@ -5275,8 +5113,7 @@ export namespace Models {
5275
5113
  * The date at which this metric was aggregated in ISO 8601 format.
5276
5114
  */
5277
5115
  date: string;
5278
- }
5279
-
5116
+ };
5280
5117
  /**
5281
5118
  * Metric Breakdown
5282
5119
  */
@@ -5297,8 +5134,7 @@ export namespace Models {
5297
5134
  * The estimated value of this metric at the end of the period.
5298
5135
  */
5299
5136
  estimate?: number;
5300
- }
5301
-
5137
+ };
5302
5138
  /**
5303
5139
  * UsageDatabases
5304
5140
  */
@@ -5371,8 +5207,7 @@ export namespace Models {
5371
5207
  * An array of aggregated number of database writes.
5372
5208
  */
5373
5209
  databasesWrites: Metric[];
5374
- }
5375
-
5210
+ };
5376
5211
  /**
5377
5212
  * UsageDatabase
5378
5213
  */
@@ -5437,8 +5272,7 @@ export namespace Models {
5437
5272
  * An array of aggregated number of database writes.
5438
5273
  */
5439
5274
  databaseWrites: Metric[];
5440
- }
5441
-
5275
+ };
5442
5276
  /**
5443
5277
  * UsageTable
5444
5278
  */
@@ -5455,8 +5289,7 @@ export namespace Models {
5455
5289
  * Aggregated number of rows per period.
5456
5290
  */
5457
5291
  rows: Metric[];
5458
- }
5459
-
5292
+ };
5460
5293
  /**
5461
5294
  * UsageCollection
5462
5295
  */
@@ -5473,8 +5306,7 @@ export namespace Models {
5473
5306
  * Aggregated number of documents per period.
5474
5307
  */
5475
5308
  documents: Metric[];
5476
- }
5477
-
5309
+ };
5478
5310
  /**
5479
5311
  * UsageUsers
5480
5312
  */
@@ -5499,8 +5331,7 @@ export namespace Models {
5499
5331
  * Aggregated number of active sessions per period.
5500
5332
  */
5501
5333
  sessions: Metric[];
5502
- }
5503
-
5334
+ };
5504
5335
  /**
5505
5336
  * StorageUsage
5506
5337
  */
@@ -5533,8 +5364,7 @@ export namespace Models {
5533
5364
  * Aggregated number of files storage (in bytes) per period .
5534
5365
  */
5535
5366
  storage: Metric[];
5536
- }
5537
-
5367
+ };
5538
5368
  /**
5539
5369
  * UsageBuckets
5540
5370
  */
@@ -5567,8 +5397,7 @@ export namespace Models {
5567
5397
  * Total aggregated number of files transformations.
5568
5398
  */
5569
5399
  imageTransformationsTotal: number;
5570
- }
5571
-
5400
+ };
5572
5401
  /**
5573
5402
  * UsageFunctions
5574
5403
  */
@@ -5673,8 +5502,7 @@ export namespace Models {
5673
5502
  * Aggregated number of failed function builds per period.
5674
5503
  */
5675
5504
  buildsFailed: Metric[];
5676
- }
5677
-
5505
+ };
5678
5506
  /**
5679
5507
  * UsageFunction
5680
5508
  */
@@ -5775,8 +5603,7 @@ export namespace Models {
5775
5603
  * Aggregated number of failed builds per period.
5776
5604
  */
5777
5605
  buildsFailed: Metric[];
5778
- }
5779
-
5606
+ };
5780
5607
  /**
5781
5608
  * UsageSites
5782
5609
  */
@@ -5905,8 +5732,7 @@ export namespace Models {
5905
5732
  * Aggregated number of failed site builds per period.
5906
5733
  */
5907
5734
  buildsFailed: Metric[];
5908
- }
5909
-
5735
+ };
5910
5736
  /**
5911
5737
  * UsageSite
5912
5738
  */
@@ -6031,8 +5857,7 @@ export namespace Models {
6031
5857
  * Aggregated number of outbound bandwidth per period.
6032
5858
  */
6033
5859
  outbound: Metric[];
6034
- }
6035
-
5860
+ };
6036
5861
  /**
6037
5862
  * UsageProject
6038
5863
  */
@@ -6341,8 +6166,7 @@ export namespace Models {
6341
6166
  * Aggregated consumed Realtime bandwidth (in bytes) per period.
6342
6167
  */
6343
6168
  realtimeBandwidth: Metric[];
6344
- }
6345
-
6169
+ };
6346
6170
  /**
6347
6171
  * Headers
6348
6172
  */
@@ -6355,8 +6179,7 @@ export namespace Models {
6355
6179
  * Header value.
6356
6180
  */
6357
6181
  value: string;
6358
- }
6359
-
6182
+ };
6360
6183
  /**
6361
6184
  * Specification
6362
6185
  */
@@ -6377,8 +6200,7 @@ export namespace Models {
6377
6200
  * Size slug.
6378
6201
  */
6379
6202
  slug: string;
6380
- }
6381
-
6203
+ };
6382
6204
  /**
6383
6205
  * Rule
6384
6206
  */
@@ -6443,8 +6265,7 @@ export namespace Models {
6443
6265
  * Certificate auto-renewal date in ISO 8601 format.
6444
6266
  */
6445
6267
  renewAt: string;
6446
- }
6447
-
6268
+ };
6448
6269
  /**
6449
6270
  * Schedule
6450
6271
  */
@@ -6493,8 +6314,7 @@ export namespace Models {
6493
6314
  * The region where the schedule is deployed.
6494
6315
  */
6495
6316
  region: string;
6496
- }
6497
-
6317
+ };
6498
6318
  /**
6499
6319
  * SmsTemplate
6500
6320
  */
@@ -6511,8 +6331,7 @@ export namespace Models {
6511
6331
  * Template message
6512
6332
  */
6513
6333
  message: string;
6514
- }
6515
-
6334
+ };
6516
6335
  /**
6517
6336
  * EmailTemplate
6518
6337
  */
@@ -6545,8 +6364,7 @@ export namespace Models {
6545
6364
  * Email subject
6546
6365
  */
6547
6366
  subject: string;
6548
- }
6549
-
6367
+ };
6550
6368
  /**
6551
6369
  * Console Variables
6552
6370
  */
@@ -6655,8 +6473,7 @@ export namespace Models {
6655
6473
  * Whether the database adapter uses integer sequence IDs.
6656
6474
  */
6657
6475
  supportForIntegerIds: boolean;
6658
- }
6659
-
6476
+ };
6660
6477
  /**
6661
6478
  * MFA Challenge
6662
6479
  */
@@ -6677,8 +6494,7 @@ export namespace Models {
6677
6494
  * Token expiration date in ISO 8601 format.
6678
6495
  */
6679
6496
  expire: string;
6680
- }
6681
-
6497
+ };
6682
6498
  /**
6683
6499
  * MFA Recovery Codes
6684
6500
  */
@@ -6687,8 +6503,7 @@ export namespace Models {
6687
6503
  * Recovery codes.
6688
6504
  */
6689
6505
  recoveryCodes: string[];
6690
- }
6691
-
6506
+ };
6692
6507
  /**
6693
6508
  * MFAType
6694
6509
  */
@@ -6701,8 +6516,7 @@ export namespace Models {
6701
6516
  * URI for authenticator apps.
6702
6517
  */
6703
6518
  uri: string;
6704
- }
6705
-
6519
+ };
6706
6520
  /**
6707
6521
  * MFAFactors
6708
6522
  */
@@ -6723,8 +6537,7 @@ export namespace Models {
6723
6537
  * Can recovery code be used for MFA challenge for this account.
6724
6538
  */
6725
6539
  recoveryCode: boolean;
6726
- }
6727
-
6540
+ };
6728
6541
  /**
6729
6542
  * Provider
6730
6543
  */
@@ -6765,8 +6578,7 @@ export namespace Models {
6765
6578
  * Provider options.
6766
6579
  */
6767
6580
  options?: object;
6768
- }
6769
-
6581
+ };
6770
6582
  /**
6771
6583
  * Message
6772
6584
  */
@@ -6823,8 +6635,7 @@ export namespace Models {
6823
6635
  * Status of delivery.
6824
6636
  */
6825
6637
  status: MessageStatus;
6826
- }
6827
-
6638
+ };
6828
6639
  /**
6829
6640
  * Topic
6830
6641
  */
@@ -6861,8 +6672,7 @@ export namespace Models {
6861
6672
  * Subscribe permissions.
6862
6673
  */
6863
6674
  subscribe: string[];
6864
- }
6865
-
6675
+ };
6866
6676
  /**
6867
6677
  * Transaction
6868
6678
  */
@@ -6891,8 +6701,7 @@ export namespace Models {
6891
6701
  * Expiration time in ISO 8601 format.
6892
6702
  */
6893
6703
  expiresAt: string;
6894
- }
6895
-
6704
+ };
6896
6705
  /**
6897
6706
  * Subscriber
6898
6707
  */
@@ -6933,8 +6742,7 @@ export namespace Models {
6933
6742
  * The target provider type. Can be one of the following: `email`, `sms` or `push`.
6934
6743
  */
6935
6744
  providerType: string;
6936
- }
6937
-
6745
+ };
6938
6746
  /**
6939
6747
  * Target
6940
6748
  */
@@ -6975,8 +6783,7 @@ export namespace Models {
6975
6783
  * Is the target expired.
6976
6784
  */
6977
6785
  expired: boolean;
6978
- }
6979
-
6786
+ };
6980
6787
  /**
6981
6788
  * Migration
6982
6789
  */
@@ -6994,7 +6801,7 @@ export namespace Models {
6994
6801
  */
6995
6802
  $updatedAt: string;
6996
6803
  /**
6997
- * Migration status ( pending, processing, failed, completed )
6804
+ * Migration status ( pending, processing, failed, completed )
6998
6805
  */
6999
6806
  status: string;
7000
6807
  /**
@@ -7033,8 +6840,7 @@ export namespace Models {
7033
6840
  * Migration options used during the migration process.
7034
6841
  */
7035
6842
  options: object;
7036
- }
7037
-
6843
+ };
7038
6844
  /**
7039
6845
  * Migration Report
7040
6846
  */
@@ -7095,8 +6901,7 @@ export namespace Models {
7095
6901
  * Version of the Appwrite instance to be migrated.
7096
6902
  */
7097
6903
  version: string;
7098
- }
7099
-
6904
+ };
7100
6905
  /**
7101
6906
  * ActivityEvent
7102
6907
  */
@@ -7229,8 +7034,7 @@ export namespace Models {
7229
7034
  * Country name.
7230
7035
  */
7231
7036
  countryName: string;
7232
- }
7233
-
7037
+ };
7234
7038
  /**
7235
7039
  * AdditionalResource
7236
7040
  */
@@ -7259,8 +7063,7 @@ export namespace Models {
7259
7063
  * Description on invoice
7260
7064
  */
7261
7065
  invoiceDesc: string;
7262
- }
7263
-
7066
+ };
7264
7067
  /**
7265
7068
  * AggregationTeam
7266
7069
  */
@@ -7381,8 +7184,7 @@ export namespace Models {
7381
7184
  * Usage resources
7382
7185
  */
7383
7186
  resources: UsageResources[];
7384
- }
7385
-
7187
+ };
7386
7188
  /**
7387
7189
  * AggregationBreakdown
7388
7190
  */
@@ -7404,11 +7206,10 @@ export namespace Models {
7404
7206
  */
7405
7207
  amount: number;
7406
7208
  /**
7407
- *
7209
+ *
7408
7210
  */
7409
7211
  resources: UsageResources[];
7410
- }
7411
-
7212
+ };
7412
7213
  /**
7413
7214
  * Archive
7414
7215
  */
@@ -7461,8 +7262,7 @@ export namespace Models {
7461
7262
  * The resource type to backup. Set only if this archive should backup a single resource.
7462
7263
  */
7463
7264
  resourceType?: string;
7464
- }
7465
-
7265
+ };
7466
7266
  /**
7467
7267
  * BillingAddress
7468
7268
  */
@@ -7499,8 +7299,7 @@ export namespace Models {
7499
7299
  * postal code
7500
7300
  */
7501
7301
  postalCode: string;
7502
- }
7503
-
7302
+ };
7504
7303
  /**
7505
7304
  * billingPlan
7506
7305
  */
@@ -7741,8 +7540,7 @@ export namespace Models {
7741
7540
  * Details of the program this plan is a part of.
7742
7541
  */
7743
7542
  program?: Program;
7744
- }
7745
-
7543
+ };
7746
7544
  /**
7747
7545
  * BillingPlanAddon
7748
7546
  */
@@ -7755,8 +7553,7 @@ export namespace Models {
7755
7553
  * Addon projects
7756
7554
  */
7757
7555
  projects: BillingPlanAddonDetails;
7758
- }
7759
-
7556
+ };
7760
7557
  /**
7761
7558
  * BillingPlanAddonDetails
7762
7559
  */
@@ -7793,8 +7590,7 @@ export namespace Models {
7793
7590
  * Description on invoice
7794
7591
  */
7795
7592
  invoiceDesc: string;
7796
- }
7797
-
7593
+ };
7798
7594
  /**
7799
7595
  * BillingPlanLimits
7800
7596
  */
@@ -7807,8 +7603,7 @@ export namespace Models {
7807
7603
  * Daily credits limit (if applicable)
7808
7604
  */
7809
7605
  dailyCredits?: number;
7810
- }
7811
-
7606
+ };
7812
7607
  /**
7813
7608
  * BillingLimits
7814
7609
  */
@@ -7845,8 +7640,7 @@ export namespace Models {
7845
7640
  * Budget limit percentage
7846
7641
  */
7847
7642
  budgetLimit: number;
7848
- }
7849
-
7643
+ };
7850
7644
  /**
7851
7645
  * Block
7852
7646
  */
@@ -7871,8 +7665,7 @@ export namespace Models {
7871
7665
  * Block expiration date in ISO 8601 format.
7872
7666
  */
7873
7667
  expiredAt: string;
7874
- }
7875
-
7668
+ };
7876
7669
  /**
7877
7670
  * Campaign
7878
7671
  */
@@ -7925,8 +7718,7 @@ export namespace Models {
7925
7718
  * Is footer
7926
7719
  */
7927
7720
  footer?: boolean;
7928
- }
7929
-
7721
+ };
7930
7722
  /**
7931
7723
  * Program
7932
7724
  */
@@ -7967,8 +7759,7 @@ export namespace Models {
7967
7759
  * Billing plan ID that this is program is associated with.
7968
7760
  */
7969
7761
  billingPlanId: string;
7970
- }
7971
-
7762
+ };
7972
7763
  /**
7973
7764
  * Coupon
7974
7765
  */
@@ -8005,8 +7796,7 @@ export namespace Models {
8005
7796
  * If the coupon is only valid for new organizations or not.
8006
7797
  */
8007
7798
  onlyNewOrgs: boolean;
8008
- }
8009
-
7799
+ };
8010
7800
  /**
8011
7801
  * Credit
8012
7802
  */
@@ -8055,8 +7845,7 @@ export namespace Models {
8055
7845
  * Status of the credit. Can be one of `disabled`, `active` or `expired`.
8056
7846
  */
8057
7847
  status: string;
8058
- }
8059
-
7848
+ };
8060
7849
  /**
8061
7850
  * CreditAvailable
8062
7851
  */
@@ -8065,8 +7854,7 @@ export namespace Models {
8065
7854
  * Total available credits for the organization.
8066
7855
  */
8067
7856
  available: number;
8068
- }
8069
-
7857
+ };
8070
7858
  /**
8071
7859
  * CreditList
8072
7860
  */
@@ -8083,8 +7871,7 @@ export namespace Models {
8083
7871
  * Total available credit balance in USD
8084
7872
  */
8085
7873
  available: number;
8086
- }
8087
-
7874
+ };
8088
7875
  /**
8089
7876
  * Downgrade Feedback
8090
7877
  */
@@ -8129,8 +7916,7 @@ export namespace Models {
8129
7916
  * Console version
8130
7917
  */
8131
7918
  version: string;
8132
- }
8133
-
7919
+ };
8134
7920
  /**
8135
7921
  * Invoice
8136
7922
  */
@@ -8223,8 +8009,7 @@ export namespace Models {
8223
8009
  * End date of the invoice
8224
8010
  */
8225
8011
  to: string;
8226
- }
8227
-
8012
+ };
8228
8013
  /**
8229
8014
  * Organization
8230
8015
  */
@@ -8369,8 +8154,7 @@ export namespace Models {
8369
8154
  * Selected projects
8370
8155
  */
8371
8156
  projects: string[];
8372
- }
8373
-
8157
+ };
8374
8158
  /**
8375
8159
  * PaymentAuthentication
8376
8160
  */
@@ -8391,8 +8175,7 @@ export namespace Models {
8391
8175
  * Invoice ID against which the payment needs to be validated.
8392
8176
  */
8393
8177
  invoiceId: string;
8394
- }
8395
-
8178
+ };
8396
8179
  /**
8397
8180
  * paymentMethod
8398
8181
  */
@@ -8477,8 +8260,7 @@ export namespace Models {
8477
8260
  * True when payment method has failed to process multiple times.
8478
8261
  */
8479
8262
  failed: boolean;
8480
- }
8481
-
8263
+ };
8482
8264
  /**
8483
8265
  * backup
8484
8266
  */
@@ -8527,8 +8309,7 @@ export namespace Models {
8527
8309
  * Is this policy enabled.
8528
8310
  */
8529
8311
  enabled: boolean;
8530
- }
8531
-
8312
+ };
8532
8313
  /**
8533
8314
  * Region
8534
8315
  */
@@ -8557,8 +8338,7 @@ export namespace Models {
8557
8338
  * Region flag code.
8558
8339
  */
8559
8340
  flag: string;
8560
- }
8561
-
8341
+ };
8562
8342
  /**
8563
8343
  * Restoration
8564
8344
  */
@@ -8604,11 +8384,10 @@ export namespace Models {
8604
8384
  */
8605
8385
  resources: string[];
8606
8386
  /**
8607
- * Optional data in key-value object.
8387
+ * Optional data in key-value object.
8608
8388
  */
8609
8389
  options: string;
8610
- }
8611
-
8390
+ };
8612
8391
  /**
8613
8392
  * Review
8614
8393
  */
@@ -8629,8 +8408,7 @@ export namespace Models {
8629
8408
  * Review
8630
8409
  */
8631
8410
  review: string;
8632
- }
8633
-
8411
+ };
8634
8412
  /**
8635
8413
  * Roles
8636
8414
  */
@@ -8643,8 +8421,7 @@ export namespace Models {
8643
8421
  * Array of roles assigned to current user.
8644
8422
  */
8645
8423
  roles: string[];
8646
- }
8647
-
8424
+ };
8648
8425
  /**
8649
8426
  * UsageOrganization
8650
8427
  */
@@ -8777,8 +8554,7 @@ export namespace Models {
8777
8554
  * Aggregated stats for total realtime bandwidth.
8778
8555
  */
8779
8556
  realtimeBandwidthTotal: number;
8780
- }
8781
-
8557
+ };
8782
8558
  /**
8783
8559
  * UsageOrganizationProject
8784
8560
  */
@@ -8867,8 +8643,7 @@ export namespace Models {
8867
8643
  * Aggregated stats for realtime bandwidth.
8868
8644
  */
8869
8645
  realtimeBandwidth: number;
8870
- }
8871
-
8646
+ };
8872
8647
  /**
8873
8648
  * Domain
8874
8649
  */
@@ -8925,8 +8700,7 @@ export namespace Models {
8925
8700
  * Dns records
8926
8701
  */
8927
8702
  dnsRecords: DnsRecord[];
8928
- }
8929
-
8703
+ };
8930
8704
  /**
8931
8705
  * DomainPurchase
8932
8706
  */
@@ -8971,8 +8745,7 @@ export namespace Models {
8971
8745
  * Currency code.
8972
8746
  */
8973
8747
  currency: string;
8974
- }
8975
-
8748
+ };
8976
8749
  /**
8977
8750
  * DNSRecord
8978
8751
  */
@@ -9025,8 +8798,7 @@ export namespace Models {
9025
8798
  * Comment for the DNS record.
9026
8799
  */
9027
8800
  comment: string;
9028
- }
9029
-
8801
+ };
9030
8802
  /**
9031
8803
  * UsageResource
9032
8804
  */
@@ -9055,8 +8827,7 @@ export namespace Models {
9055
8827
  * Resource ID
9056
8828
  */
9057
8829
  resourceId: string;
9058
- }
9059
-
8830
+ };
9060
8831
  /**
9061
8832
  * usageBillingPlan
9062
8833
  */
@@ -9105,8 +8876,7 @@ export namespace Models {
9105
8876
  * Credits additional resources
9106
8877
  */
9107
8878
  credits: AdditionalResource;
9108
- }
9109
-
8879
+ };
9110
8880
  /**
9111
8881
  * Estimation
9112
8882
  */
@@ -9143,8 +8913,7 @@ export namespace Models {
9143
8913
  * Trial end date
9144
8914
  */
9145
8915
  trialEndDate?: string;
9146
- }
9147
-
8916
+ };
9148
8917
  /**
9149
8918
  * EstimationUpdatePlan
9150
8919
  */
@@ -9185,8 +8954,7 @@ export namespace Models {
9185
8954
  * Organization's existing credits
9186
8955
  */
9187
8956
  organizationCredits: number;
9188
- }
9189
-
8957
+ };
9190
8958
  /**
9191
8959
  * EstimationDeleteOrganization
9192
8960
  */
@@ -9195,8 +8963,7 @@ export namespace Models {
9195
8963
  * List of unpaid invoices
9196
8964
  */
9197
8965
  unpaidInvoices: Invoice[];
9198
- }
9199
-
8966
+ };
9200
8967
  /**
9201
8968
  * EstimationItem
9202
8969
  */
@@ -9209,8 +8976,7 @@ export namespace Models {
9209
8976
  * Gross payable amount
9210
8977
  */
9211
8978
  value: number;
9212
- }
9213
-
8979
+ };
9214
8980
  /**
9215
8981
  * DomainPrice
9216
8982
  */
@@ -9239,8 +9005,7 @@ export namespace Models {
9239
9005
  * Whether the domain is a premium domain.
9240
9006
  */
9241
9007
  premium: boolean;
9242
- }
9243
-
9008
+ };
9244
9009
  /**
9245
9010
  * DomainSuggestion
9246
9011
  */
@@ -9261,8 +9026,7 @@ export namespace Models {
9261
9026
  * Is the domain available?
9262
9027
  */
9263
9028
  available: boolean;
9264
- }
9265
-
9029
+ };
9266
9030
  /**
9267
9031
  * domainTransferOut
9268
9032
  */
@@ -9271,8 +9035,7 @@ export namespace Models {
9271
9035
  * Domain transfer authorization code.
9272
9036
  */
9273
9037
  authCode: string;
9274
- }
9275
-
9038
+ };
9276
9039
  /**
9277
9040
  * domainTransferStatus
9278
9041
  */
@@ -9289,8 +9052,7 @@ export namespace Models {
9289
9052
  * Transfer status timestamp in ISO 8601 format.
9290
9053
  */
9291
9054
  timestamp: string;
9292
- }
9293
-
9055
+ };
9294
9056
  /**
9295
9057
  * Activity event list
9296
9058
  */
@@ -9303,8 +9065,7 @@ export namespace Models {
9303
9065
  * List of events.
9304
9066
  */
9305
9067
  events: ActivityEvent[];
9306
- }
9307
-
9068
+ };
9308
9069
  /**
9309
9070
  * Aggregation team list
9310
9071
  */
@@ -9317,8 +9078,7 @@ export namespace Models {
9317
9078
  * List of aggregations.
9318
9079
  */
9319
9080
  aggregations: AggregationTeam[];
9320
- }
9321
-
9081
+ };
9322
9082
  /**
9323
9083
  * Backup archive list
9324
9084
  */
@@ -9331,8 +9091,7 @@ export namespace Models {
9331
9091
  * List of archives.
9332
9092
  */
9333
9093
  archives: BackupArchive[];
9334
- }
9335
-
9094
+ };
9336
9095
  /**
9337
9096
  * Backup policy list
9338
9097
  */
@@ -9345,8 +9104,7 @@ export namespace Models {
9345
9104
  * List of policies.
9346
9105
  */
9347
9106
  policies: BackupPolicy[];
9348
- }
9349
-
9107
+ };
9350
9108
  /**
9351
9109
  * Backup restoration list
9352
9110
  */
@@ -9359,8 +9117,7 @@ export namespace Models {
9359
9117
  * List of restorations.
9360
9118
  */
9361
9119
  restorations: BackupRestoration[];
9362
- }
9363
-
9120
+ };
9364
9121
  /**
9365
9122
  * Billing invoices list
9366
9123
  */
@@ -9373,8 +9130,7 @@ export namespace Models {
9373
9130
  * List of invoices.
9374
9131
  */
9375
9132
  invoices: Invoice[];
9376
- }
9377
-
9133
+ };
9378
9134
  /**
9379
9135
  * Billing address list
9380
9136
  */
@@ -9387,8 +9143,7 @@ export namespace Models {
9387
9143
  * List of billingAddresses.
9388
9144
  */
9389
9145
  billingAddresses: BillingAddress[];
9390
- }
9391
-
9146
+ };
9392
9147
  /**
9393
9148
  * Billing plan list
9394
9149
  */
@@ -9401,8 +9156,7 @@ export namespace Models {
9401
9156
  * List of plans.
9402
9157
  */
9403
9158
  plans: BillingPlan[];
9404
- }
9405
-
9159
+ };
9406
9160
  /**
9407
9161
  * Organizations list
9408
9162
  */
@@ -9415,8 +9169,7 @@ export namespace Models {
9415
9169
  * List of teams.
9416
9170
  */
9417
9171
  teams: Organization<Preferences>[];
9418
- }
9419
-
9172
+ };
9420
9173
  /**
9421
9174
  * Payment methods list
9422
9175
  */
@@ -9429,8 +9182,7 @@ export namespace Models {
9429
9182
  * List of paymentMethods.
9430
9183
  */
9431
9184
  paymentMethods: PaymentMethod[];
9432
- }
9433
-
9185
+ };
9434
9186
  /**
9435
9187
  * Regions list
9436
9188
  */
@@ -9443,8 +9195,7 @@ export namespace Models {
9443
9195
  * List of regions.
9444
9196
  */
9445
9197
  regions: ConsoleRegion[];
9446
- }
9447
-
9198
+ };
9448
9199
  /**
9449
9200
  * Domains list
9450
9201
  */
@@ -9457,8 +9208,7 @@ export namespace Models {
9457
9208
  * List of domains.
9458
9209
  */
9459
9210
  domains: Domain[];
9460
- }
9461
-
9211
+ };
9462
9212
  /**
9463
9213
  * DNS records list
9464
9214
  */
@@ -9471,8 +9221,7 @@ export namespace Models {
9471
9221
  * List of dnsRecords.
9472
9222
  */
9473
9223
  dnsRecords: DnsRecord[];
9474
- }
9475
-
9224
+ };
9476
9225
  /**
9477
9226
  * Domain suggestions list
9478
9227
  */
@@ -9485,5 +9234,6 @@ export namespace Models {
9485
9234
  * List of suggestions.
9486
9235
  */
9487
9236
  suggestions: DomainSuggestion[];
9488
- }
9237
+ };
9238
+ export {};
9489
9239
  }