appwrite-cli 0.14.0

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 (413) hide show
  1. package/.github/workflows/npm-publish.yml +41 -0
  2. package/Formula/appwrite.rb +19 -0
  3. package/LICENSE.md +12 -0
  4. package/README.md +102 -0
  5. package/docs/examples/account/create-anonymous-session.md +1 -0
  6. package/docs/examples/account/create-j-w-t.md +1 -0
  7. package/docs/examples/account/create-magic-u-r-l-session.md +4 -0
  8. package/docs/examples/account/create-o-auth2session.md +5 -0
  9. package/docs/examples/account/create-recovery.md +3 -0
  10. package/docs/examples/account/create-session.md +3 -0
  11. package/docs/examples/account/create-verification.md +2 -0
  12. package/docs/examples/account/create.md +5 -0
  13. package/docs/examples/account/delete-session.md +2 -0
  14. package/docs/examples/account/delete-sessions.md +1 -0
  15. package/docs/examples/account/delete.md +1 -0
  16. package/docs/examples/account/get-logs.md +3 -0
  17. package/docs/examples/account/get-prefs.md +1 -0
  18. package/docs/examples/account/get-session.md +2 -0
  19. package/docs/examples/account/get-sessions.md +1 -0
  20. package/docs/examples/account/get.md +1 -0
  21. package/docs/examples/account/update-email.md +3 -0
  22. package/docs/examples/account/update-magic-u-r-l-session.md +3 -0
  23. package/docs/examples/account/update-name.md +2 -0
  24. package/docs/examples/account/update-password.md +3 -0
  25. package/docs/examples/account/update-prefs.md +2 -0
  26. package/docs/examples/account/update-recovery.md +5 -0
  27. package/docs/examples/account/update-session.md +2 -0
  28. package/docs/examples/account/update-verification.md +3 -0
  29. package/docs/examples/avatars/get-browser.md +5 -0
  30. package/docs/examples/avatars/get-credit-card.md +5 -0
  31. package/docs/examples/avatars/get-favicon.md +2 -0
  32. package/docs/examples/avatars/get-flag.md +5 -0
  33. package/docs/examples/avatars/get-image.md +4 -0
  34. package/docs/examples/avatars/get-initials.md +6 -0
  35. package/docs/examples/avatars/get-q-r.md +5 -0
  36. package/docs/examples/database/create-boolean-attribute.md +6 -0
  37. package/docs/examples/database/create-collection.md +6 -0
  38. package/docs/examples/database/create-document.md +6 -0
  39. package/docs/examples/database/create-email-attribute.md +6 -0
  40. package/docs/examples/database/create-enum-attribute.md +7 -0
  41. package/docs/examples/database/create-float-attribute.md +8 -0
  42. package/docs/examples/database/create-index.md +6 -0
  43. package/docs/examples/database/create-integer-attribute.md +8 -0
  44. package/docs/examples/database/create-ip-attribute.md +6 -0
  45. package/docs/examples/database/create-string-attribute.md +7 -0
  46. package/docs/examples/database/create-url-attribute.md +6 -0
  47. package/docs/examples/database/delete-attribute.md +3 -0
  48. package/docs/examples/database/delete-collection.md +2 -0
  49. package/docs/examples/database/delete-document.md +3 -0
  50. package/docs/examples/database/delete-index.md +3 -0
  51. package/docs/examples/database/get-attribute.md +3 -0
  52. package/docs/examples/database/get-collection-usage.md +3 -0
  53. package/docs/examples/database/get-collection.md +2 -0
  54. package/docs/examples/database/get-document.md +3 -0
  55. package/docs/examples/database/get-index.md +3 -0
  56. package/docs/examples/database/get-usage.md +2 -0
  57. package/docs/examples/database/list-attributes.md +2 -0
  58. package/docs/examples/database/list-collection-logs.md +4 -0
  59. package/docs/examples/database/list-collections.md +7 -0
  60. package/docs/examples/database/list-document-logs.md +5 -0
  61. package/docs/examples/database/list-documents.md +9 -0
  62. package/docs/examples/database/list-indexes.md +2 -0
  63. package/docs/examples/database/update-collection.md +7 -0
  64. package/docs/examples/database/update-document.md +6 -0
  65. package/docs/examples/functions/create-deployment.md +5 -0
  66. package/docs/examples/functions/create-execution.md +4 -0
  67. package/docs/examples/functions/create.md +9 -0
  68. package/docs/examples/functions/delete-deployment.md +3 -0
  69. package/docs/examples/functions/delete.md +2 -0
  70. package/docs/examples/functions/get-deployment.md +3 -0
  71. package/docs/examples/functions/get-execution.md +3 -0
  72. package/docs/examples/functions/get-usage.md +3 -0
  73. package/docs/examples/functions/get.md +2 -0
  74. package/docs/examples/functions/list-deployments.md +8 -0
  75. package/docs/examples/functions/list-executions.md +7 -0
  76. package/docs/examples/functions/list-runtimes.md +1 -0
  77. package/docs/examples/functions/list.md +7 -0
  78. package/docs/examples/functions/retry-build.md +4 -0
  79. package/docs/examples/functions/update-deployment.md +3 -0
  80. package/docs/examples/functions/update.md +8 -0
  81. package/docs/examples/health/get-antivirus.md +1 -0
  82. package/docs/examples/health/get-cache.md +1 -0
  83. package/docs/examples/health/get-d-b.md +1 -0
  84. package/docs/examples/health/get-queue-certificates.md +1 -0
  85. package/docs/examples/health/get-queue-functions.md +1 -0
  86. package/docs/examples/health/get-queue-logs.md +1 -0
  87. package/docs/examples/health/get-queue-usage.md +1 -0
  88. package/docs/examples/health/get-queue-webhooks.md +1 -0
  89. package/docs/examples/health/get-storage-local.md +1 -0
  90. package/docs/examples/health/get-time.md +1 -0
  91. package/docs/examples/health/get.md +1 -0
  92. package/docs/examples/locale/get-continents.md +1 -0
  93. package/docs/examples/locale/get-countries-e-u.md +1 -0
  94. package/docs/examples/locale/get-countries-phones.md +1 -0
  95. package/docs/examples/locale/get-countries.md +1 -0
  96. package/docs/examples/locale/get-currencies.md +1 -0
  97. package/docs/examples/locale/get-languages.md +1 -0
  98. package/docs/examples/locale/get.md +1 -0
  99. package/docs/examples/projects/create-domain.md +3 -0
  100. package/docs/examples/projects/create-key.md +4 -0
  101. package/docs/examples/projects/create-platform.md +7 -0
  102. package/docs/examples/projects/create-webhook.md +8 -0
  103. package/docs/examples/projects/create.md +13 -0
  104. package/docs/examples/projects/delete-domain.md +3 -0
  105. package/docs/examples/projects/delete-key.md +3 -0
  106. package/docs/examples/projects/delete-platform.md +3 -0
  107. package/docs/examples/projects/delete-webhook.md +3 -0
  108. package/docs/examples/projects/delete.md +3 -0
  109. package/docs/examples/projects/get-domain.md +3 -0
  110. package/docs/examples/projects/get-key.md +3 -0
  111. package/docs/examples/projects/get-platform.md +3 -0
  112. package/docs/examples/projects/get-usage.md +3 -0
  113. package/docs/examples/projects/get-webhook.md +3 -0
  114. package/docs/examples/projects/get.md +2 -0
  115. package/docs/examples/projects/list-domains.md +2 -0
  116. package/docs/examples/projects/list-keys.md +2 -0
  117. package/docs/examples/projects/list-platforms.md +2 -0
  118. package/docs/examples/projects/list-webhooks.md +2 -0
  119. package/docs/examples/projects/list.md +7 -0
  120. package/docs/examples/projects/update-auth-limit.md +3 -0
  121. package/docs/examples/projects/update-auth-status.md +4 -0
  122. package/docs/examples/projects/update-domain-verification.md +3 -0
  123. package/docs/examples/projects/update-key.md +5 -0
  124. package/docs/examples/projects/update-o-auth2.md +5 -0
  125. package/docs/examples/projects/update-platform.md +7 -0
  126. package/docs/examples/projects/update-service-status.md +4 -0
  127. package/docs/examples/projects/update-webhook.md +9 -0
  128. package/docs/examples/projects/update.md +12 -0
  129. package/docs/examples/storage/create-bucket.md +11 -0
  130. package/docs/examples/storage/create-file.md +6 -0
  131. package/docs/examples/storage/delete-bucket.md +2 -0
  132. package/docs/examples/storage/delete-file.md +3 -0
  133. package/docs/examples/storage/get-bucket-usage.md +3 -0
  134. package/docs/examples/storage/get-bucket.md +2 -0
  135. package/docs/examples/storage/get-file-download.md +3 -0
  136. package/docs/examples/storage/get-file-preview.md +14 -0
  137. package/docs/examples/storage/get-file-view.md +3 -0
  138. package/docs/examples/storage/get-file.md +3 -0
  139. package/docs/examples/storage/get-usage.md +2 -0
  140. package/docs/examples/storage/list-buckets.md +7 -0
  141. package/docs/examples/storage/list-files.md +8 -0
  142. package/docs/examples/storage/update-bucket.md +11 -0
  143. package/docs/examples/storage/update-file.md +5 -0
  144. package/docs/examples/teams/create-membership.md +6 -0
  145. package/docs/examples/teams/create.md +4 -0
  146. package/docs/examples/teams/delete-membership.md +3 -0
  147. package/docs/examples/teams/delete.md +2 -0
  148. package/docs/examples/teams/get-membership.md +3 -0
  149. package/docs/examples/teams/get-memberships.md +8 -0
  150. package/docs/examples/teams/get.md +2 -0
  151. package/docs/examples/teams/list.md +7 -0
  152. package/docs/examples/teams/update-membership-roles.md +4 -0
  153. package/docs/examples/teams/update-membership-status.md +5 -0
  154. package/docs/examples/teams/update.md +3 -0
  155. package/docs/examples/users/create.md +5 -0
  156. package/docs/examples/users/delete-session.md +3 -0
  157. package/docs/examples/users/delete-sessions.md +2 -0
  158. package/docs/examples/users/delete.md +2 -0
  159. package/docs/examples/users/get-logs.md +4 -0
  160. package/docs/examples/users/get-prefs.md +2 -0
  161. package/docs/examples/users/get-sessions.md +2 -0
  162. package/docs/examples/users/get-usage.md +3 -0
  163. package/docs/examples/users/get.md +2 -0
  164. package/docs/examples/users/list.md +7 -0
  165. package/docs/examples/users/update-email.md +3 -0
  166. package/docs/examples/users/update-name.md +3 -0
  167. package/docs/examples/users/update-password.md +3 -0
  168. package/docs/examples/users/update-prefs.md +3 -0
  169. package/docs/examples/users/update-status.md +3 -0
  170. package/docs/examples/users/update-verification.md +3 -0
  171. package/index.js +49 -0
  172. package/install.sh +165 -0
  173. package/ldid/COPYING +661 -0
  174. package/ldid/Makefile +51 -0
  175. package/ldid/control +12 -0
  176. package/ldid/control.sh +5 -0
  177. package/ldid/deb.sh +10 -0
  178. package/ldid/ios.sh +2 -0
  179. package/ldid/ldid.cpp +3253 -0
  180. package/ldid/ldid.hpp +164 -0
  181. package/ldid/libplist/.github/workflows/build.yml +62 -0
  182. package/ldid/libplist/.github/workflows/codeql-analysis.yml +71 -0
  183. package/ldid/libplist/AUTHORS +28 -0
  184. package/ldid/libplist/COPYING +340 -0
  185. package/ldid/libplist/COPYING.LESSER +502 -0
  186. package/ldid/libplist/Makefile.am +20 -0
  187. package/ldid/libplist/NEWS +252 -0
  188. package/ldid/libplist/README.md +114 -0
  189. package/ldid/libplist/aclocal.m4 +1729 -0
  190. package/ldid/libplist/autogen.sh +26 -0
  191. package/ldid/libplist/configure.ac +292 -0
  192. package/ldid/libplist/cython/Makefile.am +53 -0
  193. package/ldid/libplist/cython/plist.pxd +78 -0
  194. package/ldid/libplist/cython/plist.pyx +947 -0
  195. package/ldid/libplist/cython/plist_util.c +40 -0
  196. package/ldid/libplist/cython/plist_util.h +5 -0
  197. package/ldid/libplist/docs/Makefile.am +3 -0
  198. package/ldid/libplist/docs/plistutil.1 +62 -0
  199. package/ldid/libplist/fuzz/Makefile.am +43 -0
  200. package/ldid/libplist/fuzz/bplist-crashes/clusterfuzz-testcase-4766291097288704 +0 -0
  201. package/ldid/libplist/fuzz/bplist-crashes/clusterfuzz-testcase-4930725262393344 +0 -0
  202. package/ldid/libplist/fuzz/bplist-crashes/clusterfuzz-testcase-5421965105954816 +0 -0
  203. package/ldid/libplist/fuzz/bplist-crashes/clusterfuzz-testcase-5556177727389696 +0 -0
  204. package/ldid/libplist/fuzz/bplist-crashes/clusterfuzz-testcase-6557963011489792 +0 -0
  205. package/ldid/libplist/fuzz/bplist-crashes/clusterfuzz-testcase-6605859144597504 +0 -0
  206. package/ldid/libplist/fuzz/bplist-crashes/crash-0ce4dd483b645bc05ec45a97d285dcf1933ee840 +0 -0
  207. package/ldid/libplist/fuzz/bplist-crashes/crash-0d59cdcb5c3416c2790612b78a631ce9f5622800 +0 -0
  208. package/ldid/libplist/fuzz/bplist-crashes/crash-17d635ab460fef74df1ac7561f1253533a6359c5 +0 -0
  209. package/ldid/libplist/fuzz/bplist-crashes/crash-33a67313fa7864cd627ef92d12017a127d342f28 +0 -0
  210. package/ldid/libplist/fuzz/bplist-crashes/crash-39f1347115f8fe9ac25cdc9332e3fc5cd32c7f7b +0 -0
  211. package/ldid/libplist/fuzz/bplist-crashes/crash-4bd78175fe01d07c5ee90104fbc68d95dd092210 +0 -0
  212. package/ldid/libplist/fuzz/bplist-crashes/crash-4c5404453bb7425aef9b953a5f6f3f0afcc48392 +0 -0
  213. package/ldid/libplist/fuzz/bplist-crashes/crash-52775e25f6af20af351cd616834e602fc988a032 +0 -0
  214. package/ldid/libplist/fuzz/bplist-crashes/crash-6d1399685b745d3d49fadc91072fabcdde8d16fa +0 -0
  215. package/ldid/libplist/fuzz/bplist-crashes/crash-94b3725900d63c6258448fd757559c81002de9c9 +0 -0
  216. package/ldid/libplist/fuzz/bplist-crashes/crash-a47195acbabc3f5b2cda9c6ebda42f2afc1cc5af +0 -0
  217. package/ldid/libplist/fuzz/bplist-crashes/crash-ce852bae6aeeffc4698a93660236f1b995ce966e +0 -0
  218. package/ldid/libplist/fuzz/bplist-crashes/crash-daddb6e82e3d1ed76e20e4131462f5247a6fb131 +0 -0
  219. package/ldid/libplist/fuzz/bplist-crashes/crash-f21be4ebce7f9c337bf96b93cec7e252f5c75a21 +0 -0
  220. package/ldid/libplist/fuzz/bplist-crashes/crash-f779dafccc0164684d1a264976e56037188b40e2 +0 -0
  221. package/ldid/libplist/fuzz/bplist-leaks/leak-96fb453b3ba18d31e164831795a708183b5a0dac +0 -0
  222. package/ldid/libplist/fuzz/bplist-leaks/leak-acb3c00a83d7635638a476a4e70fc1f1caa1a5b1 +0 -0
  223. package/ldid/libplist/fuzz/bplist-leaks/leak-fe2cd4b1f67e0c9b21e6225a4fb4ca19eab80074 +0 -0
  224. package/ldid/libplist/fuzz/bplist.dict +1 -0
  225. package/ldid/libplist/fuzz/bplist_fuzzer.cc +32 -0
  226. package/ldid/libplist/fuzz/bplist_fuzzer.options +3 -0
  227. package/ldid/libplist/fuzz/fuzzers.test +8 -0
  228. package/ldid/libplist/fuzz/init-fuzzers.sh +23 -0
  229. package/ldid/libplist/fuzz/test-fuzzers.sh +33 -0
  230. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-4516959125241856 +0 -0
  231. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-4663876528373760 +5 -0
  232. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-5799076113154048 +45 -0
  233. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-5922404220010496 +0 -0
  234. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-6015098361479168 +0 -0
  235. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-6043836860071936 +0 -0
  236. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-6047509906456576 +10050 -0
  237. package/ldid/libplist/fuzz/xplist-crashes/clusterfuzz-testcase-6482601374121984 +0 -0
  238. package/ldid/libplist/fuzz/xplist-crashes/crash-09788d7acb46b4b177422f9c4ee54556a3ad1f17 +53 -0
  239. package/ldid/libplist/fuzz/xplist-crashes/crash-155c60d5c4b2778110fb4a633caa7d64eb9b99c1 +9 -0
  240. package/ldid/libplist/fuzz/xplist-crashes/crash-348c909a0b3532977185f551eb5d2ed04e694883 +11 -0
  241. package/ldid/libplist/fuzz/xplist-crashes/crash-7bc172e27a2b1d4fcaf031f59d1f08fb83081e4a +8 -0
  242. package/ldid/libplist/fuzz/xplist-crashes/crash-80c28b0e2a446665e68927dd4441c10c9a68e64e +0 -0
  243. package/ldid/libplist/fuzz/xplist-crashes/crash-8acf177da60ecf13c36d0da1b8e25de891980ea6 +5 -0
  244. package/ldid/libplist/fuzz/xplist-crashes/crash-94276cf69a50e78dd6cdf079c208cb80f357cd33 +0 -0
  245. package/ldid/libplist/fuzz/xplist-crashes/crash-9ddb891a0ec42401eb4629e6b99e01aef7909eb9 +0 -0
  246. package/ldid/libplist/fuzz/xplist-crashes/crash-a8b44e1f5be4f75f00a937016ec5405bce77a0f9 +0 -0
  247. package/ldid/libplist/fuzz/xplist-crashes/crash-da39a3ee5e6b4b0d3255bfef95601890afd80709 +0 -0
  248. package/ldid/libplist/fuzz/xplist-crashes/crash-f03c680ee1c4d84c28e731752df77a61e213a24d +72 -0
  249. package/ldid/libplist/fuzz/xplist-leaks/clusterfuzz-testcase-4634751103139840 +187 -0
  250. package/ldid/libplist/fuzz/xplist-leaks/clusterfuzz-testcase-6056412121661440 +12 -0
  251. package/ldid/libplist/fuzz/xplist-leaks/leak-47b0a9f21d3affab6cfc898e5140bb53265ada07 +0 -0
  252. package/ldid/libplist/fuzz/xplist-leaks/leak-4c81aae70b20d9b9408b78d40999a54205bdcfb7 +0 -0
  253. package/ldid/libplist/fuzz/xplist-leaks/leak-53bc466851eda790bd891733da5db0a7482886bf +6 -0
  254. package/ldid/libplist/fuzz/xplist.dict +51 -0
  255. package/ldid/libplist/fuzz/xplist_fuzzer.cc +32 -0
  256. package/ldid/libplist/fuzz/xplist_fuzzer.options +3 -0
  257. package/ldid/libplist/include/Makefile.am +15 -0
  258. package/ldid/libplist/include/plist/Array.h +55 -0
  259. package/ldid/libplist/include/plist/Boolean.h +48 -0
  260. package/ldid/libplist/include/plist/Data.h +49 -0
  261. package/ldid/libplist/include/plist/Date.h +50 -0
  262. package/ldid/libplist/include/plist/Dictionary.h +68 -0
  263. package/ldid/libplist/include/plist/Integer.h +48 -0
  264. package/ldid/libplist/include/plist/Key.h +49 -0
  265. package/ldid/libplist/include/plist/Node.h +57 -0
  266. package/ldid/libplist/include/plist/Real.h +48 -0
  267. package/ldid/libplist/include/plist/String.h +49 -0
  268. package/ldid/libplist/include/plist/Structure.h +59 -0
  269. package/ldid/libplist/include/plist/Uid.h +48 -0
  270. package/ldid/libplist/include/plist/plist++.h +39 -0
  271. package/ldid/libplist/include/plist/plist.h +953 -0
  272. package/ldid/libplist/libcnary/COPYING +502 -0
  273. package/ldid/libplist/libcnary/Makefile.am +15 -0
  274. package/ldid/libplist/libcnary/README +5 -0
  275. package/ldid/libplist/libcnary/cnary.c +46 -0
  276. package/ldid/libplist/libcnary/include/node.h +65 -0
  277. package/ldid/libplist/libcnary/include/node_list.h +47 -0
  278. package/ldid/libplist/libcnary/include/object.h +41 -0
  279. package/ldid/libplist/libcnary/node.c +216 -0
  280. package/ldid/libplist/libcnary/node_list.c +157 -0
  281. package/ldid/libplist/m4/ac_pkg_cython.m4 +67 -0
  282. package/ldid/libplist/m4/as-compiler-flag.m4 +62 -0
  283. package/ldid/libplist/m4/ax_pthread.m4 +485 -0
  284. package/ldid/libplist/m4/ax_python_devel.m4 +327 -0
  285. package/ldid/libplist/m4/cython_python.m4 +7 -0
  286. package/ldid/libplist/src/Array.cpp +148 -0
  287. package/ldid/libplist/src/Boolean.cpp +73 -0
  288. package/ldid/libplist/src/Data.cpp +79 -0
  289. package/ldid/libplist/src/Date.cpp +76 -0
  290. package/ldid/libplist/src/Dictionary.cpp +182 -0
  291. package/ldid/libplist/src/Integer.cpp +73 -0
  292. package/ldid/libplist/src/Key.cpp +80 -0
  293. package/ldid/libplist/src/Makefile.am +63 -0
  294. package/ldid/libplist/src/Node.cpp +166 -0
  295. package/ldid/libplist/src/Real.cpp +73 -0
  296. package/ldid/libplist/src/String.cpp +80 -0
  297. package/ldid/libplist/src/Structure.cpp +123 -0
  298. package/ldid/libplist/src/Uid.cpp +73 -0
  299. package/ldid/libplist/src/base64.c +119 -0
  300. package/ldid/libplist/src/base64.h +28 -0
  301. package/ldid/libplist/src/bplist.c +1381 -0
  302. package/ldid/libplist/src/bytearray.c +61 -0
  303. package/ldid/libplist/src/bytearray.h +36 -0
  304. package/ldid/libplist/src/hashtable.c +140 -0
  305. package/ldid/libplist/src/hashtable.h +50 -0
  306. package/ldid/libplist/src/plist.c +1356 -0
  307. package/ldid/libplist/src/plist.h +74 -0
  308. package/ldid/libplist/src/ptrarray.c +96 -0
  309. package/ldid/libplist/src/ptrarray.h +40 -0
  310. package/ldid/libplist/src/strbuf.h +34 -0
  311. package/ldid/libplist/src/time64.c +814 -0
  312. package/ldid/libplist/src/time64.h +81 -0
  313. package/ldid/libplist/src/time64_limits.h +97 -0
  314. package/ldid/libplist/src/xplist.c +1435 -0
  315. package/ldid/libplist/test/Makefile.am +93 -0
  316. package/ldid/libplist/test/amp.test +14 -0
  317. package/ldid/libplist/test/bigarray.test +15 -0
  318. package/ldid/libplist/test/cdata.test +12 -0
  319. package/ldid/libplist/test/data/1.plist +35 -0
  320. package/ldid/libplist/test/data/2.plist +100 -0
  321. package/ldid/libplist/test/data/3.plist +420 -0
  322. package/ldid/libplist/test/data/4.plist +5037 -0
  323. package/ldid/libplist/test/data/5.plist +55053 -0
  324. package/ldid/libplist/test/data/6.plist +4006 -0
  325. package/ldid/libplist/test/data/7.plist +14 -0
  326. package/ldid/libplist/test/data/amp.plist +6 -0
  327. package/ldid/libplist/test/data/cdata.plist +6 -0
  328. package/ldid/libplist/test/data/dictref1byte.bplist +0 -0
  329. package/ldid/libplist/test/data/dictref2bytes.bplist +0 -0
  330. package/ldid/libplist/test/data/dictref3bytes.bplist +0 -0
  331. package/ldid/libplist/test/data/dictref4bytes.bplist +0 -0
  332. package/ldid/libplist/test/data/dictref5bytes.bplist +0 -0
  333. package/ldid/libplist/test/data/dictref6bytes.bplist +0 -0
  334. package/ldid/libplist/test/data/dictref7bytes.bplist +0 -0
  335. package/ldid/libplist/test/data/dictref8bytes.bplist +0 -0
  336. package/ldid/libplist/test/data/empty_keys.plist +8 -0
  337. package/ldid/libplist/test/data/entities.plist +57 -0
  338. package/ldid/libplist/test/data/hex.plist +5 -0
  339. package/ldid/libplist/test/data/invalid_tag.plist +6 -0
  340. package/ldid/libplist/test/data/malformed_dict.bplist +0 -0
  341. package/ldid/libplist/test/data/off1byte.bplist +0 -0
  342. package/ldid/libplist/test/data/off2bytes.bplist +0 -0
  343. package/ldid/libplist/test/data/off3bytes.bplist +0 -0
  344. package/ldid/libplist/test/data/off4bytes.bplist +0 -0
  345. package/ldid/libplist/test/data/off5bytes.bplist +0 -0
  346. package/ldid/libplist/test/data/off6bytes.bplist +0 -0
  347. package/ldid/libplist/test/data/off7bytes.bplist +0 -0
  348. package/ldid/libplist/test/data/off8bytes.bplist +0 -0
  349. package/ldid/libplist/test/data/offxml.plist +8 -0
  350. package/ldid/libplist/test/data/order.bplist +0 -0
  351. package/ldid/libplist/test/data/order.plist +27 -0
  352. package/ldid/libplist/test/data/recursion.bplist +0 -0
  353. package/ldid/libplist/test/data/signed.bplist +0 -0
  354. package/ldid/libplist/test/data/signed.plist +5 -0
  355. package/ldid/libplist/test/data/signedunsigned.bplist +0 -0
  356. package/ldid/libplist/test/data/signedunsigned.plist +11 -0
  357. package/ldid/libplist/test/data/unsigned.bplist +0 -0
  358. package/ldid/libplist/test/data/unsigned.plist +5 -0
  359. package/ldid/libplist/test/dates.test +15 -0
  360. package/ldid/libplist/test/empty.test +15 -0
  361. package/ldid/libplist/test/empty_keys.test +12 -0
  362. package/ldid/libplist/test/entities.test +12 -0
  363. package/ldid/libplist/test/hex.test +12 -0
  364. package/ldid/libplist/test/huge.test +15 -0
  365. package/ldid/libplist/test/invalid_tag.test +14 -0
  366. package/ldid/libplist/test/large.test +15 -0
  367. package/ldid/libplist/test/malformed_dict.test +11 -0
  368. package/ldid/libplist/test/medium.test +15 -0
  369. package/ldid/libplist/test/offsetsize.test +12 -0
  370. package/ldid/libplist/test/order.test +13 -0
  371. package/ldid/libplist/test/plist_cmp.c +158 -0
  372. package/ldid/libplist/test/plist_test.c +135 -0
  373. package/ldid/libplist/test/recursion.test +11 -0
  374. package/ldid/libplist/test/refsize.test +12 -0
  375. package/ldid/libplist/test/signedunsigned1.test +23 -0
  376. package/ldid/libplist/test/signedunsigned2.test +23 -0
  377. package/ldid/libplist/test/signedunsigned3.test +23 -0
  378. package/ldid/libplist/test/small.test +15 -0
  379. package/ldid/libplist/test/timezone1.test +17 -0
  380. package/ldid/libplist/test/timezone2.test +21 -0
  381. package/ldid/libplist/tools/Makefile.am +10 -0
  382. package/ldid/libplist/tools/plistutil.c +299 -0
  383. package/ldid/lookup2.c +416 -0
  384. package/ldid/make.sh +90 -0
  385. package/ldid/minimal/hexdump.h +76 -0
  386. package/ldid/minimal/mapping.h +72 -0
  387. package/ldid/minimal/sqlite3.h +71 -0
  388. package/ldid/minimal/stdlib.h +129 -0
  389. package/ldid/minimal/string.h +51 -0
  390. package/ldid/plist.sh +2 -0
  391. package/ldid/sha1.h +64 -0
  392. package/ldid/sysroot.sh +31 -0
  393. package/ldid/version.sh +2 -0
  394. package/lib/client.js +243 -0
  395. package/lib/commands/account.js +785 -0
  396. package/lib/commands/avatars.js +349 -0
  397. package/lib/commands/database.js +1238 -0
  398. package/lib/commands/deploy.js +477 -0
  399. package/lib/commands/functions.js +689 -0
  400. package/lib/commands/generic.js +106 -0
  401. package/lib/commands/health.js +269 -0
  402. package/lib/commands/init.js +148 -0
  403. package/lib/commands/locale.js +177 -0
  404. package/lib/commands/projects.js +1191 -0
  405. package/lib/commands/storage.js +743 -0
  406. package/lib/commands/teams.js +435 -0
  407. package/lib/commands/users.js +542 -0
  408. package/lib/config.js +264 -0
  409. package/lib/exception.js +9 -0
  410. package/lib/parser.js +179 -0
  411. package/lib/questions.js +223 -0
  412. package/lib/sdks.js +82 -0
  413. package/package.json +41 -0
@@ -0,0 +1,1191 @@
1
+ const fs = require('fs');
2
+ const { promisify } = require('util');
3
+ const libClient = require('../client.js');
4
+ const childProcess = require('child_process');
5
+ const { Command } = require('commander');
6
+ const { sdkForProject, sdkForConsole } = require('../sdks')
7
+ const { parse, actionRunner, parseInteger, parseBool, commandDescriptions, success, log } = require('../parser')
8
+ const { localConfig, globalConfig } = require("../config");
9
+
10
+ const projects = new Command("projects").description(commandDescriptions['projects'])
11
+
12
+ const projectsList = async ({ search, limit, offset, cursor, cursorDirection, orderType, parseOutput = true, sdk = undefined}) => {
13
+ /* @param {string} search */
14
+ /* @param {number} limit */
15
+ /* @param {number} offset */
16
+ /* @param {string} cursor */
17
+ /* @param {string} cursorDirection */
18
+ /* @param {string} orderType */
19
+
20
+ let client = !sdk ? await sdkForConsole() : sdk;
21
+ let path = '/projects';
22
+ let payload = {};
23
+
24
+ /** Query Params */
25
+ if (typeof search !== 'undefined') {
26
+ payload['search'] = search;
27
+ }
28
+ if (typeof limit !== 'undefined') {
29
+ payload['limit'] = limit;
30
+ }
31
+ if (typeof offset !== 'undefined') {
32
+ payload['offset'] = offset;
33
+ }
34
+ if (typeof cursor !== 'undefined') {
35
+ payload['cursor'] = cursor;
36
+ }
37
+ if (typeof cursorDirection !== 'undefined') {
38
+ payload['cursorDirection'] = cursorDirection;
39
+ }
40
+ if (typeof orderType !== 'undefined') {
41
+ payload['orderType'] = orderType;
42
+ }
43
+ let response = undefined;
44
+ response = await client.call('get', path, {
45
+ 'content-type': 'application/json',
46
+ }, payload);
47
+
48
+ if (parseOutput) {
49
+ parse(response)
50
+ success()
51
+ }
52
+ return response;
53
+ }
54
+
55
+ const projectsCreate = async ({ projectId, name, teamId, description, logo, url, legalName, legalCountry, legalState, legalCity, legalAddress, legalTaxId, parseOutput = true, sdk = undefined}) => {
56
+ /* @param {string} projectId */
57
+ /* @param {string} name */
58
+ /* @param {string} teamId */
59
+ /* @param {string} description */
60
+ /* @param {string} logo */
61
+ /* @param {string} url */
62
+ /* @param {string} legalName */
63
+ /* @param {string} legalCountry */
64
+ /* @param {string} legalState */
65
+ /* @param {string} legalCity */
66
+ /* @param {string} legalAddress */
67
+ /* @param {string} legalTaxId */
68
+
69
+ let client = !sdk ? await sdkForConsole() : sdk;
70
+ let path = '/projects';
71
+ let payload = {};
72
+
73
+ /** Body Params */
74
+ if (typeof projectId !== 'undefined') {
75
+ payload['projectId'] = projectId;
76
+ }
77
+
78
+ if (typeof name !== 'undefined') {
79
+ payload['name'] = name;
80
+ }
81
+
82
+ if (typeof teamId !== 'undefined') {
83
+ payload['teamId'] = teamId;
84
+ }
85
+
86
+ if (typeof description !== 'undefined') {
87
+ payload['description'] = description;
88
+ }
89
+
90
+ if (typeof logo !== 'undefined') {
91
+ payload['logo'] = logo;
92
+ }
93
+
94
+ if (typeof url !== 'undefined') {
95
+ payload['url'] = url;
96
+ }
97
+
98
+ if (typeof legalName !== 'undefined') {
99
+ payload['legalName'] = legalName;
100
+ }
101
+
102
+ if (typeof legalCountry !== 'undefined') {
103
+ payload['legalCountry'] = legalCountry;
104
+ }
105
+
106
+ if (typeof legalState !== 'undefined') {
107
+ payload['legalState'] = legalState;
108
+ }
109
+
110
+ if (typeof legalCity !== 'undefined') {
111
+ payload['legalCity'] = legalCity;
112
+ }
113
+
114
+ if (typeof legalAddress !== 'undefined') {
115
+ payload['legalAddress'] = legalAddress;
116
+ }
117
+
118
+ if (typeof legalTaxId !== 'undefined') {
119
+ payload['legalTaxId'] = legalTaxId;
120
+ }
121
+
122
+ let response = undefined;
123
+ response = await client.call('post', path, {
124
+ 'content-type': 'application/json',
125
+ }, payload);
126
+
127
+ if (parseOutput) {
128
+ parse(response)
129
+ success()
130
+ }
131
+ return response;
132
+ }
133
+
134
+ const projectsGet = async ({ projectId, parseOutput = true, sdk = undefined}) => {
135
+ /* @param {string} projectId */
136
+
137
+ let client = !sdk ? await sdkForConsole() : sdk;
138
+ let path = '/projects/{projectId}'.replace('{projectId}', projectId);
139
+ let payload = {};
140
+ let response = undefined;
141
+ response = await client.call('get', path, {
142
+ 'content-type': 'application/json',
143
+ }, payload);
144
+
145
+ if (parseOutput) {
146
+ parse(response)
147
+ success()
148
+ }
149
+ return response;
150
+ }
151
+
152
+ const projectsUpdate = async ({ projectId, name, description, logo, url, legalName, legalCountry, legalState, legalCity, legalAddress, legalTaxId, parseOutput = true, sdk = undefined}) => {
153
+ /* @param {string} projectId */
154
+ /* @param {string} name */
155
+ /* @param {string} description */
156
+ /* @param {string} logo */
157
+ /* @param {string} url */
158
+ /* @param {string} legalName */
159
+ /* @param {string} legalCountry */
160
+ /* @param {string} legalState */
161
+ /* @param {string} legalCity */
162
+ /* @param {string} legalAddress */
163
+ /* @param {string} legalTaxId */
164
+
165
+ let client = !sdk ? await sdkForConsole() : sdk;
166
+ let path = '/projects/{projectId}'.replace('{projectId}', projectId);
167
+ let payload = {};
168
+
169
+ /** Body Params */
170
+ if (typeof name !== 'undefined') {
171
+ payload['name'] = name;
172
+ }
173
+
174
+ if (typeof description !== 'undefined') {
175
+ payload['description'] = description;
176
+ }
177
+
178
+ if (typeof logo !== 'undefined') {
179
+ payload['logo'] = logo;
180
+ }
181
+
182
+ if (typeof url !== 'undefined') {
183
+ payload['url'] = url;
184
+ }
185
+
186
+ if (typeof legalName !== 'undefined') {
187
+ payload['legalName'] = legalName;
188
+ }
189
+
190
+ if (typeof legalCountry !== 'undefined') {
191
+ payload['legalCountry'] = legalCountry;
192
+ }
193
+
194
+ if (typeof legalState !== 'undefined') {
195
+ payload['legalState'] = legalState;
196
+ }
197
+
198
+ if (typeof legalCity !== 'undefined') {
199
+ payload['legalCity'] = legalCity;
200
+ }
201
+
202
+ if (typeof legalAddress !== 'undefined') {
203
+ payload['legalAddress'] = legalAddress;
204
+ }
205
+
206
+ if (typeof legalTaxId !== 'undefined') {
207
+ payload['legalTaxId'] = legalTaxId;
208
+ }
209
+
210
+ let response = undefined;
211
+ response = await client.call('patch', path, {
212
+ 'content-type': 'application/json',
213
+ }, payload);
214
+
215
+ if (parseOutput) {
216
+ parse(response)
217
+ success()
218
+ }
219
+ return response;
220
+ }
221
+
222
+ const projectsDelete = async ({ projectId, password, parseOutput = true, sdk = undefined}) => {
223
+ /* @param {string} projectId */
224
+ /* @param {string} password */
225
+
226
+ let client = !sdk ? await sdkForConsole() : sdk;
227
+ let path = '/projects/{projectId}'.replace('{projectId}', projectId);
228
+ let payload = {};
229
+
230
+ /** Body Params */
231
+ if (typeof password !== 'undefined') {
232
+ payload['password'] = password;
233
+ }
234
+
235
+ let response = undefined;
236
+ response = await client.call('delete', path, {
237
+ 'content-type': 'application/json',
238
+ }, payload);
239
+
240
+ if (parseOutput) {
241
+ parse(response)
242
+ success()
243
+ }
244
+ return response;
245
+ }
246
+
247
+ const projectsUpdateAuthLimit = async ({ projectId, limit, parseOutput = true, sdk = undefined}) => {
248
+ /* @param {string} projectId */
249
+ /* @param {number} limit */
250
+
251
+ let client = !sdk ? await sdkForConsole() : sdk;
252
+ let path = '/projects/{projectId}/auth/limit'.replace('{projectId}', projectId);
253
+ let payload = {};
254
+
255
+ /** Body Params */
256
+ if (typeof limit !== 'undefined') {
257
+ payload['limit'] = limit;
258
+ }
259
+
260
+ let response = undefined;
261
+ response = await client.call('patch', path, {
262
+ 'content-type': 'application/json',
263
+ }, payload);
264
+
265
+ if (parseOutput) {
266
+ parse(response)
267
+ success()
268
+ }
269
+ return response;
270
+ }
271
+
272
+ const projectsUpdateAuthStatus = async ({ projectId, method, status, parseOutput = true, sdk = undefined}) => {
273
+ /* @param {string} projectId */
274
+ /* @param {string} method */
275
+ /* @param {boolean} status */
276
+
277
+ let client = !sdk ? await sdkForConsole() : sdk;
278
+ let path = '/projects/{projectId}/auth/{method}'.replace('{projectId}', projectId).replace('{method}', method);
279
+ let payload = {};
280
+
281
+ /** Body Params */
282
+ if (typeof status !== 'undefined') {
283
+ payload['status'] = status;
284
+ }
285
+
286
+ let response = undefined;
287
+ response = await client.call('patch', path, {
288
+ 'content-type': 'application/json',
289
+ }, payload);
290
+
291
+ if (parseOutput) {
292
+ parse(response)
293
+ success()
294
+ }
295
+ return response;
296
+ }
297
+
298
+ const projectsListDomains = async ({ projectId, parseOutput = true, sdk = undefined}) => {
299
+ /* @param {string} projectId */
300
+
301
+ let client = !sdk ? await sdkForConsole() : sdk;
302
+ let path = '/projects/{projectId}/domains'.replace('{projectId}', projectId);
303
+ let payload = {};
304
+ let response = undefined;
305
+ response = await client.call('get', path, {
306
+ 'content-type': 'application/json',
307
+ }, payload);
308
+
309
+ if (parseOutput) {
310
+ parse(response)
311
+ success()
312
+ }
313
+ return response;
314
+ }
315
+
316
+ const projectsCreateDomain = async ({ projectId, domain, parseOutput = true, sdk = undefined}) => {
317
+ /* @param {string} projectId */
318
+ /* @param {string} domain */
319
+
320
+ let client = !sdk ? await sdkForConsole() : sdk;
321
+ let path = '/projects/{projectId}/domains'.replace('{projectId}', projectId);
322
+ let payload = {};
323
+
324
+ /** Body Params */
325
+ if (typeof domain !== 'undefined') {
326
+ payload['domain'] = domain;
327
+ }
328
+
329
+ let response = undefined;
330
+ response = await client.call('post', path, {
331
+ 'content-type': 'application/json',
332
+ }, payload);
333
+
334
+ if (parseOutput) {
335
+ parse(response)
336
+ success()
337
+ }
338
+ return response;
339
+ }
340
+
341
+ const projectsGetDomain = async ({ projectId, domainId, parseOutput = true, sdk = undefined}) => {
342
+ /* @param {string} projectId */
343
+ /* @param {string} domainId */
344
+
345
+ let client = !sdk ? await sdkForConsole() : sdk;
346
+ let path = '/projects/{projectId}/domains/{domainId}'.replace('{projectId}', projectId).replace('{domainId}', domainId);
347
+ let payload = {};
348
+ let response = undefined;
349
+ response = await client.call('get', path, {
350
+ 'content-type': 'application/json',
351
+ }, payload);
352
+
353
+ if (parseOutput) {
354
+ parse(response)
355
+ success()
356
+ }
357
+ return response;
358
+ }
359
+
360
+ const projectsDeleteDomain = async ({ projectId, domainId, parseOutput = true, sdk = undefined}) => {
361
+ /* @param {string} projectId */
362
+ /* @param {string} domainId */
363
+
364
+ let client = !sdk ? await sdkForConsole() : sdk;
365
+ let path = '/projects/{projectId}/domains/{domainId}'.replace('{projectId}', projectId).replace('{domainId}', domainId);
366
+ let payload = {};
367
+ let response = undefined;
368
+ response = await client.call('delete', path, {
369
+ 'content-type': 'application/json',
370
+ }, payload);
371
+
372
+ if (parseOutput) {
373
+ parse(response)
374
+ success()
375
+ }
376
+ return response;
377
+ }
378
+
379
+ const projectsUpdateDomainVerification = async ({ projectId, domainId, parseOutput = true, sdk = undefined}) => {
380
+ /* @param {string} projectId */
381
+ /* @param {string} domainId */
382
+
383
+ let client = !sdk ? await sdkForConsole() : sdk;
384
+ let path = '/projects/{projectId}/domains/{domainId}/verification'.replace('{projectId}', projectId).replace('{domainId}', domainId);
385
+ let payload = {};
386
+ let response = undefined;
387
+ response = await client.call('patch', path, {
388
+ 'content-type': 'application/json',
389
+ }, payload);
390
+
391
+ if (parseOutput) {
392
+ parse(response)
393
+ success()
394
+ }
395
+ return response;
396
+ }
397
+
398
+ const projectsListKeys = async ({ projectId, parseOutput = true, sdk = undefined}) => {
399
+ /* @param {string} projectId */
400
+
401
+ let client = !sdk ? await sdkForConsole() : sdk;
402
+ let path = '/projects/{projectId}/keys'.replace('{projectId}', projectId);
403
+ let payload = {};
404
+ let response = undefined;
405
+ response = await client.call('get', path, {
406
+ 'content-type': 'application/json',
407
+ }, payload);
408
+
409
+ if (parseOutput) {
410
+ parse(response)
411
+ success()
412
+ }
413
+ return response;
414
+ }
415
+
416
+ const projectsCreateKey = async ({ projectId, name, scopes, parseOutput = true, sdk = undefined}) => {
417
+ /* @param {string} projectId */
418
+ /* @param {string} name */
419
+ /* @param {string[]} scopes */
420
+
421
+ let client = !sdk ? await sdkForConsole() : sdk;
422
+ let path = '/projects/{projectId}/keys'.replace('{projectId}', projectId);
423
+ let payload = {};
424
+
425
+ /** Body Params */
426
+ if (typeof name !== 'undefined') {
427
+ payload['name'] = name;
428
+ }
429
+
430
+ if (typeof scopes !== 'undefined') {
431
+ payload['scopes'] = scopes;
432
+ }
433
+
434
+ let response = undefined;
435
+ response = await client.call('post', path, {
436
+ 'content-type': 'application/json',
437
+ }, payload);
438
+
439
+ if (parseOutput) {
440
+ parse(response)
441
+ success()
442
+ }
443
+ return response;
444
+ }
445
+
446
+ const projectsGetKey = async ({ projectId, keyId, parseOutput = true, sdk = undefined}) => {
447
+ /* @param {string} projectId */
448
+ /* @param {string} keyId */
449
+
450
+ let client = !sdk ? await sdkForConsole() : sdk;
451
+ let path = '/projects/{projectId}/keys/{keyId}'.replace('{projectId}', projectId).replace('{keyId}', keyId);
452
+ let payload = {};
453
+ let response = undefined;
454
+ response = await client.call('get', path, {
455
+ 'content-type': 'application/json',
456
+ }, payload);
457
+
458
+ if (parseOutput) {
459
+ parse(response)
460
+ success()
461
+ }
462
+ return response;
463
+ }
464
+
465
+ const projectsUpdateKey = async ({ projectId, keyId, name, scopes, parseOutput = true, sdk = undefined}) => {
466
+ /* @param {string} projectId */
467
+ /* @param {string} keyId */
468
+ /* @param {string} name */
469
+ /* @param {string[]} scopes */
470
+
471
+ let client = !sdk ? await sdkForConsole() : sdk;
472
+ let path = '/projects/{projectId}/keys/{keyId}'.replace('{projectId}', projectId).replace('{keyId}', keyId);
473
+ let payload = {};
474
+
475
+ /** Body Params */
476
+ if (typeof name !== 'undefined') {
477
+ payload['name'] = name;
478
+ }
479
+
480
+ if (typeof scopes !== 'undefined') {
481
+ payload['scopes'] = scopes;
482
+ }
483
+
484
+ let response = undefined;
485
+ response = await client.call('put', path, {
486
+ 'content-type': 'application/json',
487
+ }, payload);
488
+
489
+ if (parseOutput) {
490
+ parse(response)
491
+ success()
492
+ }
493
+ return response;
494
+ }
495
+
496
+ const projectsDeleteKey = async ({ projectId, keyId, parseOutput = true, sdk = undefined}) => {
497
+ /* @param {string} projectId */
498
+ /* @param {string} keyId */
499
+
500
+ let client = !sdk ? await sdkForConsole() : sdk;
501
+ let path = '/projects/{projectId}/keys/{keyId}'.replace('{projectId}', projectId).replace('{keyId}', keyId);
502
+ let payload = {};
503
+ let response = undefined;
504
+ response = await client.call('delete', path, {
505
+ 'content-type': 'application/json',
506
+ }, payload);
507
+
508
+ if (parseOutput) {
509
+ parse(response)
510
+ success()
511
+ }
512
+ return response;
513
+ }
514
+
515
+ const projectsUpdateOAuth2 = async ({ projectId, provider, appId, secret, parseOutput = true, sdk = undefined}) => {
516
+ /* @param {string} projectId */
517
+ /* @param {string} provider */
518
+ /* @param {string} appId */
519
+ /* @param {string} secret */
520
+
521
+ let client = !sdk ? await sdkForConsole() : sdk;
522
+ let path = '/projects/{projectId}/oauth2'.replace('{projectId}', projectId);
523
+ let payload = {};
524
+
525
+ /** Body Params */
526
+ if (typeof provider !== 'undefined') {
527
+ payload['provider'] = provider;
528
+ }
529
+
530
+ if (typeof appId !== 'undefined') {
531
+ payload['appId'] = appId;
532
+ }
533
+
534
+ if (typeof secret !== 'undefined') {
535
+ payload['secret'] = secret;
536
+ }
537
+
538
+ let response = undefined;
539
+ response = await client.call('patch', path, {
540
+ 'content-type': 'application/json',
541
+ }, payload);
542
+
543
+ if (parseOutput) {
544
+ parse(response)
545
+ success()
546
+ }
547
+ return response;
548
+ }
549
+
550
+ const projectsListPlatforms = async ({ projectId, parseOutput = true, sdk = undefined}) => {
551
+ /* @param {string} projectId */
552
+
553
+ let client = !sdk ? await sdkForConsole() : sdk;
554
+ let path = '/projects/{projectId}/platforms'.replace('{projectId}', projectId);
555
+ let payload = {};
556
+ let response = undefined;
557
+ response = await client.call('get', path, {
558
+ 'content-type': 'application/json',
559
+ }, payload);
560
+
561
+ if (parseOutput) {
562
+ parse(response)
563
+ success()
564
+ }
565
+ return response;
566
+ }
567
+
568
+ const projectsCreatePlatform = async ({ projectId, type, name, key, store, hostname, parseOutput = true, sdk = undefined}) => {
569
+ /* @param {string} projectId */
570
+ /* @param {string} type */
571
+ /* @param {string} name */
572
+ /* @param {string} key */
573
+ /* @param {string} store */
574
+ /* @param {string} hostname */
575
+
576
+ let client = !sdk ? await sdkForConsole() : sdk;
577
+ let path = '/projects/{projectId}/platforms'.replace('{projectId}', projectId);
578
+ let payload = {};
579
+
580
+ /** Body Params */
581
+ if (typeof type !== 'undefined') {
582
+ payload['type'] = type;
583
+ }
584
+
585
+ if (typeof name !== 'undefined') {
586
+ payload['name'] = name;
587
+ }
588
+
589
+ if (typeof key !== 'undefined') {
590
+ payload['key'] = key;
591
+ }
592
+
593
+ if (typeof store !== 'undefined') {
594
+ payload['store'] = store;
595
+ }
596
+
597
+ if (typeof hostname !== 'undefined') {
598
+ payload['hostname'] = hostname;
599
+ }
600
+
601
+ let response = undefined;
602
+ response = await client.call('post', path, {
603
+ 'content-type': 'application/json',
604
+ }, payload);
605
+
606
+ if (parseOutput) {
607
+ parse(response)
608
+ success()
609
+ }
610
+ return response;
611
+ }
612
+
613
+ const projectsGetPlatform = async ({ projectId, platformId, parseOutput = true, sdk = undefined}) => {
614
+ /* @param {string} projectId */
615
+ /* @param {string} platformId */
616
+
617
+ let client = !sdk ? await sdkForConsole() : sdk;
618
+ let path = '/projects/{projectId}/platforms/{platformId}'.replace('{projectId}', projectId).replace('{platformId}', platformId);
619
+ let payload = {};
620
+ let response = undefined;
621
+ response = await client.call('get', path, {
622
+ 'content-type': 'application/json',
623
+ }, payload);
624
+
625
+ if (parseOutput) {
626
+ parse(response)
627
+ success()
628
+ }
629
+ return response;
630
+ }
631
+
632
+ const projectsUpdatePlatform = async ({ projectId, platformId, name, key, store, hostname, parseOutput = true, sdk = undefined}) => {
633
+ /* @param {string} projectId */
634
+ /* @param {string} platformId */
635
+ /* @param {string} name */
636
+ /* @param {string} key */
637
+ /* @param {string} store */
638
+ /* @param {string} hostname */
639
+
640
+ let client = !sdk ? await sdkForConsole() : sdk;
641
+ let path = '/projects/{projectId}/platforms/{platformId}'.replace('{projectId}', projectId).replace('{platformId}', platformId);
642
+ let payload = {};
643
+
644
+ /** Body Params */
645
+ if (typeof name !== 'undefined') {
646
+ payload['name'] = name;
647
+ }
648
+
649
+ if (typeof key !== 'undefined') {
650
+ payload['key'] = key;
651
+ }
652
+
653
+ if (typeof store !== 'undefined') {
654
+ payload['store'] = store;
655
+ }
656
+
657
+ if (typeof hostname !== 'undefined') {
658
+ payload['hostname'] = hostname;
659
+ }
660
+
661
+ let response = undefined;
662
+ response = await client.call('put', path, {
663
+ 'content-type': 'application/json',
664
+ }, payload);
665
+
666
+ if (parseOutput) {
667
+ parse(response)
668
+ success()
669
+ }
670
+ return response;
671
+ }
672
+
673
+ const projectsDeletePlatform = async ({ projectId, platformId, parseOutput = true, sdk = undefined}) => {
674
+ /* @param {string} projectId */
675
+ /* @param {string} platformId */
676
+
677
+ let client = !sdk ? await sdkForConsole() : sdk;
678
+ let path = '/projects/{projectId}/platforms/{platformId}'.replace('{projectId}', projectId).replace('{platformId}', platformId);
679
+ let payload = {};
680
+ let response = undefined;
681
+ response = await client.call('delete', path, {
682
+ 'content-type': 'application/json',
683
+ }, payload);
684
+
685
+ if (parseOutput) {
686
+ parse(response)
687
+ success()
688
+ }
689
+ return response;
690
+ }
691
+
692
+ const projectsUpdateServiceStatus = async ({ projectId, service, status, parseOutput = true, sdk = undefined}) => {
693
+ /* @param {string} projectId */
694
+ /* @param {string} service */
695
+ /* @param {boolean} status */
696
+
697
+ let client = !sdk ? await sdkForConsole() : sdk;
698
+ let path = '/projects/{projectId}/service'.replace('{projectId}', projectId);
699
+ let payload = {};
700
+
701
+ /** Body Params */
702
+ if (typeof service !== 'undefined') {
703
+ payload['service'] = service;
704
+ }
705
+
706
+ if (typeof status !== 'undefined') {
707
+ payload['status'] = status;
708
+ }
709
+
710
+ let response = undefined;
711
+ response = await client.call('patch', path, {
712
+ 'content-type': 'application/json',
713
+ }, payload);
714
+
715
+ if (parseOutput) {
716
+ parse(response)
717
+ success()
718
+ }
719
+ return response;
720
+ }
721
+
722
+ const projectsGetUsage = async ({ projectId, range, parseOutput = true, sdk = undefined}) => {
723
+ /* @param {string} projectId */
724
+ /* @param {string} range */
725
+
726
+ let client = !sdk ? await sdkForConsole() : sdk;
727
+ let path = '/projects/{projectId}/usage'.replace('{projectId}', projectId);
728
+ let payload = {};
729
+
730
+ /** Query Params */
731
+ if (typeof range !== 'undefined') {
732
+ payload['range'] = range;
733
+ }
734
+ let response = undefined;
735
+ response = await client.call('get', path, {
736
+ 'content-type': 'application/json',
737
+ }, payload);
738
+
739
+ if (parseOutput) {
740
+ parse(response)
741
+ success()
742
+ }
743
+ return response;
744
+ }
745
+
746
+ const projectsListWebhooks = async ({ projectId, parseOutput = true, sdk = undefined}) => {
747
+ /* @param {string} projectId */
748
+
749
+ let client = !sdk ? await sdkForConsole() : sdk;
750
+ let path = '/projects/{projectId}/webhooks'.replace('{projectId}', projectId);
751
+ let payload = {};
752
+ let response = undefined;
753
+ response = await client.call('get', path, {
754
+ 'content-type': 'application/json',
755
+ }, payload);
756
+
757
+ if (parseOutput) {
758
+ parse(response)
759
+ success()
760
+ }
761
+ return response;
762
+ }
763
+
764
+ const projectsCreateWebhook = async ({ projectId, name, events, url, security, httpUser, httpPass, parseOutput = true, sdk = undefined}) => {
765
+ /* @param {string} projectId */
766
+ /* @param {string} name */
767
+ /* @param {string[]} events */
768
+ /* @param {string} url */
769
+ /* @param {boolean} security */
770
+ /* @param {string} httpUser */
771
+ /* @param {string} httpPass */
772
+
773
+ let client = !sdk ? await sdkForConsole() : sdk;
774
+ let path = '/projects/{projectId}/webhooks'.replace('{projectId}', projectId);
775
+ let payload = {};
776
+
777
+ /** Body Params */
778
+ if (typeof name !== 'undefined') {
779
+ payload['name'] = name;
780
+ }
781
+
782
+ if (typeof events !== 'undefined') {
783
+ payload['events'] = events;
784
+ }
785
+
786
+ if (typeof url !== 'undefined') {
787
+ payload['url'] = url;
788
+ }
789
+
790
+ if (typeof security !== 'undefined') {
791
+ payload['security'] = security;
792
+ }
793
+
794
+ if (typeof httpUser !== 'undefined') {
795
+ payload['httpUser'] = httpUser;
796
+ }
797
+
798
+ if (typeof httpPass !== 'undefined') {
799
+ payload['httpPass'] = httpPass;
800
+ }
801
+
802
+ let response = undefined;
803
+ response = await client.call('post', path, {
804
+ 'content-type': 'application/json',
805
+ }, payload);
806
+
807
+ if (parseOutput) {
808
+ parse(response)
809
+ success()
810
+ }
811
+ return response;
812
+ }
813
+
814
+ const projectsGetWebhook = async ({ projectId, webhookId, parseOutput = true, sdk = undefined}) => {
815
+ /* @param {string} projectId */
816
+ /* @param {string} webhookId */
817
+
818
+ let client = !sdk ? await sdkForConsole() : sdk;
819
+ let path = '/projects/{projectId}/webhooks/{webhookId}'.replace('{projectId}', projectId).replace('{webhookId}', webhookId);
820
+ let payload = {};
821
+ let response = undefined;
822
+ response = await client.call('get', path, {
823
+ 'content-type': 'application/json',
824
+ }, payload);
825
+
826
+ if (parseOutput) {
827
+ parse(response)
828
+ success()
829
+ }
830
+ return response;
831
+ }
832
+
833
+ const projectsUpdateWebhook = async ({ projectId, webhookId, name, events, url, security, httpUser, httpPass, parseOutput = true, sdk = undefined}) => {
834
+ /* @param {string} projectId */
835
+ /* @param {string} webhookId */
836
+ /* @param {string} name */
837
+ /* @param {string[]} events */
838
+ /* @param {string} url */
839
+ /* @param {boolean} security */
840
+ /* @param {string} httpUser */
841
+ /* @param {string} httpPass */
842
+
843
+ let client = !sdk ? await sdkForConsole() : sdk;
844
+ let path = '/projects/{projectId}/webhooks/{webhookId}'.replace('{projectId}', projectId).replace('{webhookId}', webhookId);
845
+ let payload = {};
846
+
847
+ /** Body Params */
848
+ if (typeof name !== 'undefined') {
849
+ payload['name'] = name;
850
+ }
851
+
852
+ if (typeof events !== 'undefined') {
853
+ payload['events'] = events;
854
+ }
855
+
856
+ if (typeof url !== 'undefined') {
857
+ payload['url'] = url;
858
+ }
859
+
860
+ if (typeof security !== 'undefined') {
861
+ payload['security'] = security;
862
+ }
863
+
864
+ if (typeof httpUser !== 'undefined') {
865
+ payload['httpUser'] = httpUser;
866
+ }
867
+
868
+ if (typeof httpPass !== 'undefined') {
869
+ payload['httpPass'] = httpPass;
870
+ }
871
+
872
+ let response = undefined;
873
+ response = await client.call('put', path, {
874
+ 'content-type': 'application/json',
875
+ }, payload);
876
+
877
+ if (parseOutput) {
878
+ parse(response)
879
+ success()
880
+ }
881
+ return response;
882
+ }
883
+
884
+ const projectsDeleteWebhook = async ({ projectId, webhookId, parseOutput = true, sdk = undefined}) => {
885
+ /* @param {string} projectId */
886
+ /* @param {string} webhookId */
887
+
888
+ let client = !sdk ? await sdkForConsole() : sdk;
889
+ let path = '/projects/{projectId}/webhooks/{webhookId}'.replace('{projectId}', projectId).replace('{webhookId}', webhookId);
890
+ let payload = {};
891
+ let response = undefined;
892
+ response = await client.call('delete', path, {
893
+ 'content-type': 'application/json',
894
+ }, payload);
895
+
896
+ if (parseOutput) {
897
+ parse(response)
898
+ success()
899
+ }
900
+ return response;
901
+ }
902
+
903
+
904
+ projects
905
+ .command(`list`)
906
+ .description(``)
907
+ .option(`--search <search>`, `Search term to filter your list results. Max length: 256 chars.`)
908
+ .option(`--limit <limit>`, `Results limit value. By default will return maximum 25 results. Maximum of 100 results allowed per request.`, parseInteger)
909
+ .option(`--offset <offset>`, `Results offset. The default value is 0. Use this param to manage pagination. [learn more about pagination](https://appwrite.io/docs/pagination)`, parseInteger)
910
+ .option(`--cursor <cursor>`, `ID of the project used as the starting point for the query, excluding the project itself. Should be used for efficient pagination when working with large sets of data. [learn more about pagination](https://appwrite.io/docs/pagination)`)
911
+ .option(`--cursorDirection <cursorDirection>`, `Direction of the cursor.`)
912
+ .option(`--orderType <orderType>`, `Order result by ASC or DESC order.`)
913
+ .action(actionRunner(projectsList))
914
+
915
+ projects
916
+ .command(`create`)
917
+ .description(``)
918
+ .requiredOption(`--projectId <projectId>`, `Unique Id. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
919
+ .requiredOption(`--name <name>`, `Project name. Max length: 128 chars.`)
920
+ .requiredOption(`--teamId <teamId>`, `Team unique ID.`)
921
+ .option(`--description <description>`, `Project description. Max length: 256 chars.`)
922
+ .option(`--logo <logo>`, `Project logo.`)
923
+ .option(`--url <url>`, `Project URL.`)
924
+ .option(`--legalName <legalName>`, `Project legal Name. Max length: 256 chars.`)
925
+ .option(`--legalCountry <legalCountry>`, `Project legal Country. Max length: 256 chars.`)
926
+ .option(`--legalState <legalState>`, `Project legal State. Max length: 256 chars.`)
927
+ .option(`--legalCity <legalCity>`, `Project legal City. Max length: 256 chars.`)
928
+ .option(`--legalAddress <legalAddress>`, `Project legal Address. Max length: 256 chars.`)
929
+ .option(`--legalTaxId <legalTaxId>`, `Project legal Tax ID. Max length: 256 chars.`)
930
+ .action(actionRunner(projectsCreate))
931
+
932
+ projects
933
+ .command(`get`)
934
+ .description(``)
935
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
936
+ .action(actionRunner(projectsGet))
937
+
938
+ projects
939
+ .command(`update`)
940
+ .description(``)
941
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
942
+ .requiredOption(`--name <name>`, `Project name. Max length: 128 chars.`)
943
+ .option(`--description <description>`, `Project description. Max length: 256 chars.`)
944
+ .option(`--logo <logo>`, `Project logo.`)
945
+ .option(`--url <url>`, `Project URL.`)
946
+ .option(`--legalName <legalName>`, `Project legal name. Max length: 256 chars.`)
947
+ .option(`--legalCountry <legalCountry>`, `Project legal country. Max length: 256 chars.`)
948
+ .option(`--legalState <legalState>`, `Project legal state. Max length: 256 chars.`)
949
+ .option(`--legalCity <legalCity>`, `Project legal city. Max length: 256 chars.`)
950
+ .option(`--legalAddress <legalAddress>`, `Project legal address. Max length: 256 chars.`)
951
+ .option(`--legalTaxId <legalTaxId>`, `Project legal tax ID. Max length: 256 chars.`)
952
+ .action(actionRunner(projectsUpdate))
953
+
954
+ projects
955
+ .command(`delete`)
956
+ .description(``)
957
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
958
+ .requiredOption(`--password <password>`, `Your user password for confirmation. Must be at least 8 chars.`)
959
+ .action(actionRunner(projectsDelete))
960
+
961
+ projects
962
+ .command(`updateAuthLimit`)
963
+ .description(``)
964
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
965
+ .requiredOption(`--limit <limit>`, `Set the max number of users allowed in this project. Use 0 for unlimited.`, parseInteger)
966
+ .action(actionRunner(projectsUpdateAuthLimit))
967
+
968
+ projects
969
+ .command(`updateAuthStatus`)
970
+ .description(``)
971
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
972
+ .requiredOption(`--method <method>`, `Auth Method. Possible values: email-password,magic-url,anonymous,invites,jwt,phone`)
973
+ .requiredOption(`--status <status>`, `Set the status of this auth method.`, parseBool)
974
+ .action(actionRunner(projectsUpdateAuthStatus))
975
+
976
+ projects
977
+ .command(`listDomains`)
978
+ .description(``)
979
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
980
+ .action(actionRunner(projectsListDomains))
981
+
982
+ projects
983
+ .command(`createDomain`)
984
+ .description(``)
985
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
986
+ .requiredOption(`--domain <domain>`, `Domain name.`)
987
+ .action(actionRunner(projectsCreateDomain))
988
+
989
+ projects
990
+ .command(`getDomain`)
991
+ .description(``)
992
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
993
+ .requiredOption(`--domainId <domainId>`, `Domain unique ID.`)
994
+ .action(actionRunner(projectsGetDomain))
995
+
996
+ projects
997
+ .command(`deleteDomain`)
998
+ .description(``)
999
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1000
+ .requiredOption(`--domainId <domainId>`, `Domain unique ID.`)
1001
+ .action(actionRunner(projectsDeleteDomain))
1002
+
1003
+ projects
1004
+ .command(`updateDomainVerification`)
1005
+ .description(``)
1006
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1007
+ .requiredOption(`--domainId <domainId>`, `Domain unique ID.`)
1008
+ .action(actionRunner(projectsUpdateDomainVerification))
1009
+
1010
+ projects
1011
+ .command(`listKeys`)
1012
+ .description(``)
1013
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1014
+ .action(actionRunner(projectsListKeys))
1015
+
1016
+ projects
1017
+ .command(`createKey`)
1018
+ .description(``)
1019
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1020
+ .requiredOption(`--name <name>`, `Key name. Max length: 128 chars.`)
1021
+ .requiredOption(`--scopes <scopes...>`, `Key scopes list.`)
1022
+ .action(actionRunner(projectsCreateKey))
1023
+
1024
+ projects
1025
+ .command(`getKey`)
1026
+ .description(``)
1027
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1028
+ .requiredOption(`--keyId <keyId>`, `Key unique ID.`)
1029
+ .action(actionRunner(projectsGetKey))
1030
+
1031
+ projects
1032
+ .command(`updateKey`)
1033
+ .description(``)
1034
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1035
+ .requiredOption(`--keyId <keyId>`, `Key unique ID.`)
1036
+ .requiredOption(`--name <name>`, `Key name. Max length: 128 chars.`)
1037
+ .requiredOption(`--scopes <scopes...>`, `Key scopes list`)
1038
+ .action(actionRunner(projectsUpdateKey))
1039
+
1040
+ projects
1041
+ .command(`deleteKey`)
1042
+ .description(``)
1043
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1044
+ .requiredOption(`--keyId <keyId>`, `Key unique ID.`)
1045
+ .action(actionRunner(projectsDeleteKey))
1046
+
1047
+ projects
1048
+ .command(`updateOAuth2`)
1049
+ .description(``)
1050
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1051
+ .requiredOption(`--provider <provider>`, `Provider Name`)
1052
+ .option(`--appId <appId>`, `Provider app ID. Max length: 256 chars.`)
1053
+ .option(`--secret <secret>`, `Provider secret key. Max length: 512 chars.`)
1054
+ .action(actionRunner(projectsUpdateOAuth2))
1055
+
1056
+ projects
1057
+ .command(`listPlatforms`)
1058
+ .description(``)
1059
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1060
+ .action(actionRunner(projectsListPlatforms))
1061
+
1062
+ projects
1063
+ .command(`createPlatform`)
1064
+ .description(``)
1065
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1066
+ .requiredOption(`--type <type>`, `Platform type.`)
1067
+ .requiredOption(`--name <name>`, `Platform name. Max length: 128 chars.`)
1068
+ .option(`--key <key>`, `Package name for Android or bundle ID for iOS or macOS. Max length: 256 chars.`)
1069
+ .option(`--store <store>`, `App store or Google Play store ID. Max length: 256 chars.`)
1070
+ .option(`--hostname <hostname>`, `Platform client hostname. Max length: 256 chars.`)
1071
+ .action(actionRunner(projectsCreatePlatform))
1072
+
1073
+ projects
1074
+ .command(`getPlatform`)
1075
+ .description(``)
1076
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1077
+ .requiredOption(`--platformId <platformId>`, `Platform unique ID.`)
1078
+ .action(actionRunner(projectsGetPlatform))
1079
+
1080
+ projects
1081
+ .command(`updatePlatform`)
1082
+ .description(``)
1083
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1084
+ .requiredOption(`--platformId <platformId>`, `Platform unique ID.`)
1085
+ .requiredOption(`--name <name>`, `Platform name. Max length: 128 chars.`)
1086
+ .option(`--key <key>`, `Package name for android or bundle ID for iOS. Max length: 256 chars.`)
1087
+ .option(`--store <store>`, `App store or Google Play store ID. Max length: 256 chars.`)
1088
+ .option(`--hostname <hostname>`, `Platform client URL. Max length: 256 chars.`)
1089
+ .action(actionRunner(projectsUpdatePlatform))
1090
+
1091
+ projects
1092
+ .command(`deletePlatform`)
1093
+ .description(``)
1094
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1095
+ .requiredOption(`--platformId <platformId>`, `Platform unique ID.`)
1096
+ .action(actionRunner(projectsDeletePlatform))
1097
+
1098
+ projects
1099
+ .command(`updateServiceStatus`)
1100
+ .description(``)
1101
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1102
+ .requiredOption(`--service <service>`, `Service name.`)
1103
+ .requiredOption(`--status <status>`, `Service status.`, parseBool)
1104
+ .action(actionRunner(projectsUpdateServiceStatus))
1105
+
1106
+ projects
1107
+ .command(`getUsage`)
1108
+ .description(``)
1109
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1110
+ .option(`--range <range>`, `Date range.`)
1111
+ .action(actionRunner(projectsGetUsage))
1112
+
1113
+ projects
1114
+ .command(`listWebhooks`)
1115
+ .description(``)
1116
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1117
+ .action(actionRunner(projectsListWebhooks))
1118
+
1119
+ projects
1120
+ .command(`createWebhook`)
1121
+ .description(``)
1122
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1123
+ .requiredOption(`--name <name>`, `Webhook name. Max length: 128 chars.`)
1124
+ .requiredOption(`--events <events...>`, `Events list.`)
1125
+ .requiredOption(`--url <url>`, `Webhook URL.`)
1126
+ .requiredOption(`--security <security>`, `Certificate verification, false for disabled or true for enabled.`, parseBool)
1127
+ .option(`--httpUser <httpUser>`, `Webhook HTTP user. Max length: 256 chars.`)
1128
+ .option(`--httpPass <httpPass>`, `Webhook HTTP password. Max length: 256 chars.`)
1129
+ .action(actionRunner(projectsCreateWebhook))
1130
+
1131
+ projects
1132
+ .command(`getWebhook`)
1133
+ .description(``)
1134
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1135
+ .requiredOption(`--webhookId <webhookId>`, `Webhook unique ID.`)
1136
+ .action(actionRunner(projectsGetWebhook))
1137
+
1138
+ projects
1139
+ .command(`updateWebhook`)
1140
+ .description(``)
1141
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1142
+ .requiredOption(`--webhookId <webhookId>`, `Webhook unique ID.`)
1143
+ .requiredOption(`--name <name>`, `Webhook name. Max length: 128 chars.`)
1144
+ .requiredOption(`--events <events...>`, `Events list.`)
1145
+ .requiredOption(`--url <url>`, `Webhook URL.`)
1146
+ .requiredOption(`--security <security>`, `Certificate verification, false for disabled or true for enabled.`, parseBool)
1147
+ .option(`--httpUser <httpUser>`, `Webhook HTTP user. Max length: 256 chars.`)
1148
+ .option(`--httpPass <httpPass>`, `Webhook HTTP password. Max length: 256 chars.`)
1149
+ .action(actionRunner(projectsUpdateWebhook))
1150
+
1151
+ projects
1152
+ .command(`deleteWebhook`)
1153
+ .description(``)
1154
+ .requiredOption(`--projectId <projectId>`, `Project unique ID.`)
1155
+ .requiredOption(`--webhookId <webhookId>`, `Webhook unique ID.`)
1156
+ .action(actionRunner(projectsDeleteWebhook))
1157
+
1158
+
1159
+ module.exports = {
1160
+ projects,
1161
+ projectsList,
1162
+ projectsCreate,
1163
+ projectsGet,
1164
+ projectsUpdate,
1165
+ projectsDelete,
1166
+ projectsUpdateAuthLimit,
1167
+ projectsUpdateAuthStatus,
1168
+ projectsListDomains,
1169
+ projectsCreateDomain,
1170
+ projectsGetDomain,
1171
+ projectsDeleteDomain,
1172
+ projectsUpdateDomainVerification,
1173
+ projectsListKeys,
1174
+ projectsCreateKey,
1175
+ projectsGetKey,
1176
+ projectsUpdateKey,
1177
+ projectsDeleteKey,
1178
+ projectsUpdateOAuth2,
1179
+ projectsListPlatforms,
1180
+ projectsCreatePlatform,
1181
+ projectsGetPlatform,
1182
+ projectsUpdatePlatform,
1183
+ projectsDeletePlatform,
1184
+ projectsUpdateServiceStatus,
1185
+ projectsGetUsage,
1186
+ projectsListWebhooks,
1187
+ projectsCreateWebhook,
1188
+ projectsGetWebhook,
1189
+ projectsUpdateWebhook,
1190
+ projectsDeleteWebhook
1191
+ };