@constructive-sdk/cli 0.20.3 → 0.20.5

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 (323) hide show
  1. package/admin/cli/commands/{request-upload-url.d.ts → app-limit-cap.d.ts} +1 -1
  2. package/admin/cli/commands/app-limit-cap.js +272 -0
  3. package/{esm/admin/cli/commands/request-upload-url.d.ts → admin/cli/commands/app-limit-caps-default.d.ts} +1 -1
  4. package/admin/cli/commands/app-limit-caps-default.js +252 -0
  5. package/{auth/cli/commands/request-upload-url.d.ts → admin/cli/commands/app-limit-credit-code-item.d.ts} +1 -1
  6. package/admin/cli/commands/app-limit-credit-code-item.js +292 -0
  7. package/{esm/auth/cli/commands/request-upload-url.d.ts → admin/cli/commands/app-limit-credit-code.d.ts} +1 -1
  8. package/admin/cli/commands/app-limit-credit-code.js +296 -0
  9. package/admin/cli/commands/app-limit-credit-redemption.d.ts +8 -0
  10. package/admin/cli/commands/app-limit-credit-redemption.js +250 -0
  11. package/admin/cli/commands/app-limit-credit.d.ts +8 -0
  12. package/admin/cli/commands/app-limit-credit.js +316 -0
  13. package/admin/cli/commands/app-limit.js +66 -0
  14. package/admin/cli/commands/org-limit-aggregate.js +88 -0
  15. package/admin/cli/commands/org-limit-cap.d.ts +8 -0
  16. package/admin/cli/commands/org-limit-cap.js +272 -0
  17. package/admin/cli/commands/org-limit-caps-default.d.ts +8 -0
  18. package/admin/cli/commands/org-limit-caps-default.js +252 -0
  19. package/admin/cli/commands/org-limit-credit.d.ts +8 -0
  20. package/admin/cli/commands/org-limit-credit.js +338 -0
  21. package/admin/cli/commands/org-limit.js +66 -0
  22. package/admin/cli/commands.js +25 -9
  23. package/admin/cli/executor.d.ts +12 -8
  24. package/admin/orm/index.d.ts +24 -11
  25. package/admin/orm/index.js +24 -6
  26. package/admin/orm/input-types.d.ts +2108 -545
  27. package/admin/orm/input-types.js +13 -1
  28. package/admin/orm/models/appLimitCap.d.ts +56 -0
  29. package/admin/orm/models/appLimitCap.js +100 -0
  30. package/admin/orm/models/appLimitCapsDefault.d.ts +56 -0
  31. package/admin/orm/models/appLimitCapsDefault.js +100 -0
  32. package/admin/orm/models/appLimitCredit.d.ts +56 -0
  33. package/admin/orm/models/appLimitCredit.js +100 -0
  34. package/admin/orm/models/appLimitCreditCode.d.ts +56 -0
  35. package/admin/orm/models/appLimitCreditCode.js +100 -0
  36. package/admin/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  37. package/admin/orm/models/appLimitCreditCodeItem.js +100 -0
  38. package/admin/orm/models/appLimitCreditRedemption.d.ts +56 -0
  39. package/admin/orm/models/appLimitCreditRedemption.js +100 -0
  40. package/admin/orm/models/index.d.ts +12 -3
  41. package/admin/orm/models/index.js +25 -7
  42. package/admin/orm/models/orgLimitCap.d.ts +56 -0
  43. package/admin/orm/models/orgLimitCap.js +100 -0
  44. package/admin/orm/models/orgLimitCapsDefault.d.ts +56 -0
  45. package/admin/orm/models/orgLimitCapsDefault.js +100 -0
  46. package/admin/orm/models/orgLimitCredit.d.ts +56 -0
  47. package/admin/orm/models/orgLimitCredit.js +100 -0
  48. package/admin/orm/mutation/index.d.ts +1 -16
  49. package/admin/orm/mutation/index.js +0 -12
  50. package/admin/orm/query-builder.js +24 -0
  51. package/auth/cli/commands.js +1 -3
  52. package/auth/cli/executor.d.ts +0 -5
  53. package/auth/orm/index.d.ts +0 -5
  54. package/auth/orm/input-types.d.ts +0 -38
  55. package/auth/orm/mutation/index.d.ts +1 -16
  56. package/auth/orm/mutation/index.js +0 -12
  57. package/auth/orm/query-builder.js +24 -0
  58. package/esm/admin/cli/commands/app-limit-cap.d.ts +8 -0
  59. package/esm/admin/cli/commands/app-limit-cap.js +270 -0
  60. package/esm/admin/cli/commands/app-limit-caps-default.d.ts +8 -0
  61. package/esm/admin/cli/commands/app-limit-caps-default.js +250 -0
  62. package/esm/admin/cli/commands/app-limit-credit-code-item.d.ts +8 -0
  63. package/esm/admin/cli/commands/app-limit-credit-code-item.js +290 -0
  64. package/esm/admin/cli/commands/app-limit-credit-code.d.ts +8 -0
  65. package/esm/admin/cli/commands/app-limit-credit-code.js +294 -0
  66. package/esm/admin/cli/commands/app-limit-credit-redemption.d.ts +8 -0
  67. package/esm/admin/cli/commands/app-limit-credit-redemption.js +248 -0
  68. package/esm/admin/cli/commands/app-limit-credit.d.ts +8 -0
  69. package/esm/admin/cli/commands/app-limit-credit.js +314 -0
  70. package/esm/admin/cli/commands/app-limit.js +66 -0
  71. package/esm/admin/cli/commands/org-limit-aggregate.js +88 -0
  72. package/esm/admin/cli/commands/org-limit-cap.d.ts +8 -0
  73. package/esm/admin/cli/commands/org-limit-cap.js +270 -0
  74. package/esm/admin/cli/commands/org-limit-caps-default.d.ts +8 -0
  75. package/esm/admin/cli/commands/org-limit-caps-default.js +250 -0
  76. package/esm/admin/cli/commands/org-limit-credit.d.ts +8 -0
  77. package/esm/admin/cli/commands/org-limit-credit.js +336 -0
  78. package/esm/admin/cli/commands/org-limit.js +66 -0
  79. package/esm/admin/cli/commands.js +25 -9
  80. package/esm/admin/cli/executor.d.ts +12 -8
  81. package/esm/admin/orm/index.d.ts +24 -11
  82. package/esm/admin/orm/index.js +24 -6
  83. package/esm/admin/orm/input-types.d.ts +2108 -545
  84. package/esm/admin/orm/input-types.js +13 -1
  85. package/esm/admin/orm/models/appLimitCap.d.ts +56 -0
  86. package/esm/admin/orm/models/appLimitCap.js +96 -0
  87. package/esm/admin/orm/models/appLimitCapsDefault.d.ts +56 -0
  88. package/esm/admin/orm/models/appLimitCapsDefault.js +96 -0
  89. package/esm/admin/orm/models/appLimitCredit.d.ts +56 -0
  90. package/esm/admin/orm/models/appLimitCredit.js +96 -0
  91. package/esm/admin/orm/models/appLimitCreditCode.d.ts +56 -0
  92. package/esm/admin/orm/models/appLimitCreditCode.js +96 -0
  93. package/esm/admin/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  94. package/esm/admin/orm/models/appLimitCreditCodeItem.js +96 -0
  95. package/esm/admin/orm/models/appLimitCreditRedemption.d.ts +56 -0
  96. package/esm/admin/orm/models/appLimitCreditRedemption.js +96 -0
  97. package/esm/admin/orm/models/index.d.ts +12 -3
  98. package/esm/admin/orm/models/index.js +12 -3
  99. package/esm/admin/orm/models/orgLimitCap.d.ts +56 -0
  100. package/esm/admin/orm/models/orgLimitCap.js +96 -0
  101. package/esm/admin/orm/models/orgLimitCapsDefault.d.ts +56 -0
  102. package/esm/admin/orm/models/orgLimitCapsDefault.js +96 -0
  103. package/esm/admin/orm/models/orgLimitCredit.d.ts +56 -0
  104. package/esm/admin/orm/models/orgLimitCredit.js +96 -0
  105. package/esm/admin/orm/mutation/index.d.ts +1 -16
  106. package/esm/admin/orm/mutation/index.js +0 -12
  107. package/esm/admin/orm/query-builder.js +24 -0
  108. package/esm/auth/cli/commands.js +1 -3
  109. package/esm/auth/cli/executor.d.ts +0 -5
  110. package/esm/auth/orm/index.d.ts +0 -5
  111. package/esm/auth/orm/input-types.d.ts +0 -38
  112. package/esm/auth/orm/mutation/index.d.ts +1 -16
  113. package/esm/auth/orm/mutation/index.js +0 -12
  114. package/esm/auth/orm/query-builder.js +24 -0
  115. package/esm/objects/cli/commands.js +1 -3
  116. package/esm/objects/cli/executor.d.ts +0 -5
  117. package/esm/objects/orm/index.d.ts +0 -5
  118. package/esm/objects/orm/input-types.d.ts +0 -38
  119. package/esm/objects/orm/mutation/index.d.ts +1 -16
  120. package/esm/objects/orm/mutation/index.js +0 -12
  121. package/esm/objects/orm/query-builder.js +24 -0
  122. package/esm/public/cli/commands/api-setting.d.ts +8 -0
  123. package/esm/public/cli/commands/api-setting.js +468 -0
  124. package/esm/public/cli/commands/app-limit-cap.d.ts +8 -0
  125. package/esm/public/cli/commands/app-limit-cap.js +270 -0
  126. package/esm/public/cli/commands/app-limit-caps-default.d.ts +8 -0
  127. package/esm/public/cli/commands/app-limit-caps-default.js +250 -0
  128. package/esm/public/cli/commands/app-limit-credit-code-item.d.ts +8 -0
  129. package/esm/public/cli/commands/app-limit-credit-code-item.js +290 -0
  130. package/esm/public/cli/commands/app-limit-credit-code.d.ts +8 -0
  131. package/esm/public/cli/commands/app-limit-credit-code.js +294 -0
  132. package/esm/public/cli/commands/app-limit-credit-redemption.d.ts +8 -0
  133. package/esm/public/cli/commands/app-limit-credit-redemption.js +248 -0
  134. package/esm/public/cli/commands/app-limit-credit.d.ts +8 -0
  135. package/esm/public/cli/commands/app-limit-credit.js +314 -0
  136. package/esm/public/cli/commands/app-limit.js +66 -0
  137. package/esm/public/cli/commands/append-smart-tags.d.ts +8 -0
  138. package/esm/{admin/cli/commands/request-upload-url.js → public/cli/commands/append-smart-tags.js} +3 -3
  139. package/esm/public/cli/commands/billing-provider-module.d.ts +8 -0
  140. package/esm/public/cli/commands/billing-provider-module.js +624 -0
  141. package/esm/public/cli/commands/cors-setting.d.ts +8 -0
  142. package/esm/public/cli/commands/cors-setting.js +272 -0
  143. package/esm/public/cli/commands/database-setting.d.ts +8 -0
  144. package/esm/public/cli/commands/database-setting.js +448 -0
  145. package/esm/public/cli/commands/entity-type-provision.js +22 -0
  146. package/esm/public/cli/commands/function.d.ts +8 -0
  147. package/esm/public/cli/commands/function.js +268 -0
  148. package/esm/public/cli/commands/limits-module.js +198 -0
  149. package/esm/public/cli/commands/org-limit-aggregate.js +88 -0
  150. package/esm/public/cli/commands/org-limit-cap.d.ts +8 -0
  151. package/esm/public/cli/commands/org-limit-cap.js +270 -0
  152. package/esm/public/cli/commands/org-limit-caps-default.d.ts +8 -0
  153. package/esm/public/cli/commands/org-limit-caps-default.js +250 -0
  154. package/esm/public/cli/commands/org-limit-credit.d.ts +8 -0
  155. package/esm/public/cli/commands/org-limit-credit.js +336 -0
  156. package/esm/public/cli/commands/org-limit.js +66 -0
  157. package/esm/public/cli/commands/partition.d.ts +8 -0
  158. package/esm/public/cli/commands/partition.js +388 -0
  159. package/esm/public/cli/commands/plans-module.js +44 -0
  160. package/esm/public/cli/commands/pubkey-setting.d.ts +8 -0
  161. package/esm/public/cli/commands/pubkey-setting.js +382 -0
  162. package/esm/public/cli/commands/rls-setting.d.ts +8 -0
  163. package/esm/public/cli/commands/rls-setting.js +404 -0
  164. package/esm/public/cli/commands/storage-module.js +198 -0
  165. package/esm/public/cli/commands/webauthn-setting.d.ts +8 -0
  166. package/esm/public/cli/commands/webauthn-setting.js +580 -0
  167. package/esm/public/cli/commands.js +41 -5
  168. package/esm/public/cli/executor.d.ts +24 -6
  169. package/esm/public/orm/index.d.ts +43 -7
  170. package/esm/public/orm/index.js +38 -2
  171. package/esm/public/orm/input-types.d.ts +4601 -321
  172. package/esm/public/orm/input-types.js +21 -0
  173. package/esm/public/orm/models/apiSetting.d.ts +56 -0
  174. package/esm/public/orm/models/apiSetting.js +96 -0
  175. package/esm/public/orm/models/appLimitCap.d.ts +56 -0
  176. package/esm/public/orm/models/appLimitCap.js +96 -0
  177. package/esm/public/orm/models/appLimitCapsDefault.d.ts +56 -0
  178. package/esm/public/orm/models/appLimitCapsDefault.js +96 -0
  179. package/esm/public/orm/models/appLimitCredit.d.ts +56 -0
  180. package/esm/public/orm/models/appLimitCredit.js +96 -0
  181. package/esm/public/orm/models/appLimitCreditCode.d.ts +56 -0
  182. package/esm/public/orm/models/appLimitCreditCode.js +96 -0
  183. package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  184. package/esm/public/orm/models/appLimitCreditCodeItem.js +96 -0
  185. package/esm/public/orm/models/appLimitCreditRedemption.d.ts +56 -0
  186. package/esm/public/orm/models/appLimitCreditRedemption.js +96 -0
  187. package/esm/public/orm/models/billingProviderModule.d.ts +56 -0
  188. package/esm/public/orm/models/billingProviderModule.js +96 -0
  189. package/esm/public/orm/models/corsSetting.d.ts +56 -0
  190. package/esm/public/orm/models/corsSetting.js +96 -0
  191. package/esm/public/orm/models/databaseSetting.d.ts +56 -0
  192. package/esm/public/orm/models/databaseSetting.js +96 -0
  193. package/esm/public/orm/models/function.d.ts +56 -0
  194. package/esm/public/orm/models/function.js +96 -0
  195. package/esm/public/orm/models/index.d.ts +19 -1
  196. package/esm/public/orm/models/index.js +19 -1
  197. package/esm/public/orm/models/orgLimitCap.d.ts +56 -0
  198. package/esm/public/orm/models/orgLimitCap.js +96 -0
  199. package/esm/public/orm/models/orgLimitCapsDefault.d.ts +56 -0
  200. package/esm/public/orm/models/orgLimitCapsDefault.js +96 -0
  201. package/esm/public/orm/models/orgLimitCredit.d.ts +56 -0
  202. package/esm/public/orm/models/orgLimitCredit.js +96 -0
  203. package/esm/public/orm/models/partition.d.ts +56 -0
  204. package/esm/public/orm/models/partition.js +96 -0
  205. package/esm/public/orm/models/pubkeySetting.d.ts +56 -0
  206. package/esm/public/orm/models/pubkeySetting.js +96 -0
  207. package/esm/public/orm/models/rlsSetting.d.ts +56 -0
  208. package/esm/public/orm/models/rlsSetting.js +96 -0
  209. package/esm/public/orm/models/webauthnSetting.d.ts +56 -0
  210. package/esm/public/orm/models/webauthnSetting.js +96 -0
  211. package/esm/public/orm/mutation/index.d.ts +9 -16
  212. package/esm/public/orm/mutation/index.js +12 -12
  213. package/esm/public/orm/query-builder.js +24 -0
  214. package/objects/cli/commands.js +1 -3
  215. package/objects/cli/executor.d.ts +0 -5
  216. package/objects/orm/index.d.ts +0 -5
  217. package/objects/orm/input-types.d.ts +0 -38
  218. package/objects/orm/mutation/index.d.ts +1 -16
  219. package/objects/orm/mutation/index.js +0 -12
  220. package/objects/orm/query-builder.js +24 -0
  221. package/package.json +4 -4
  222. package/public/cli/commands/api-setting.d.ts +8 -0
  223. package/public/cli/commands/api-setting.js +470 -0
  224. package/public/cli/commands/app-limit-cap.d.ts +8 -0
  225. package/public/cli/commands/app-limit-cap.js +272 -0
  226. package/public/cli/commands/app-limit-caps-default.d.ts +8 -0
  227. package/public/cli/commands/app-limit-caps-default.js +252 -0
  228. package/public/cli/commands/app-limit-credit-code-item.d.ts +8 -0
  229. package/public/cli/commands/app-limit-credit-code-item.js +292 -0
  230. package/public/cli/commands/app-limit-credit-code.d.ts +8 -0
  231. package/public/cli/commands/app-limit-credit-code.js +296 -0
  232. package/public/cli/commands/app-limit-credit-redemption.d.ts +8 -0
  233. package/public/cli/commands/app-limit-credit-redemption.js +250 -0
  234. package/public/cli/commands/app-limit-credit.d.ts +8 -0
  235. package/public/cli/commands/app-limit-credit.js +316 -0
  236. package/public/cli/commands/app-limit.js +66 -0
  237. package/public/cli/commands/append-smart-tags.d.ts +8 -0
  238. package/{objects/cli/commands/request-upload-url.js → public/cli/commands/append-smart-tags.js} +3 -3
  239. package/public/cli/commands/billing-provider-module.d.ts +8 -0
  240. package/public/cli/commands/billing-provider-module.js +626 -0
  241. package/public/cli/commands/cors-setting.d.ts +8 -0
  242. package/public/cli/commands/cors-setting.js +274 -0
  243. package/public/cli/commands/database-setting.d.ts +8 -0
  244. package/public/cli/commands/database-setting.js +450 -0
  245. package/public/cli/commands/entity-type-provision.js +22 -0
  246. package/public/cli/commands/function.d.ts +8 -0
  247. package/public/cli/commands/function.js +270 -0
  248. package/public/cli/commands/limits-module.js +198 -0
  249. package/public/cli/commands/org-limit-aggregate.js +88 -0
  250. package/public/cli/commands/org-limit-cap.d.ts +8 -0
  251. package/public/cli/commands/org-limit-cap.js +272 -0
  252. package/public/cli/commands/org-limit-caps-default.d.ts +8 -0
  253. package/public/cli/commands/org-limit-caps-default.js +252 -0
  254. package/public/cli/commands/org-limit-credit.d.ts +8 -0
  255. package/public/cli/commands/org-limit-credit.js +338 -0
  256. package/public/cli/commands/org-limit.js +66 -0
  257. package/public/cli/commands/partition.d.ts +8 -0
  258. package/public/cli/commands/partition.js +390 -0
  259. package/public/cli/commands/plans-module.js +44 -0
  260. package/public/cli/commands/pubkey-setting.d.ts +8 -0
  261. package/public/cli/commands/pubkey-setting.js +384 -0
  262. package/public/cli/commands/rls-setting.d.ts +8 -0
  263. package/public/cli/commands/rls-setting.js +406 -0
  264. package/public/cli/commands/storage-module.js +198 -0
  265. package/public/cli/commands/webauthn-setting.d.ts +8 -0
  266. package/public/cli/commands/webauthn-setting.js +582 -0
  267. package/public/cli/commands.js +41 -5
  268. package/public/cli/executor.d.ts +24 -6
  269. package/public/orm/index.d.ts +43 -7
  270. package/public/orm/index.js +38 -2
  271. package/public/orm/input-types.d.ts +4601 -321
  272. package/public/orm/input-types.js +21 -0
  273. package/public/orm/models/apiSetting.d.ts +56 -0
  274. package/public/orm/models/apiSetting.js +100 -0
  275. package/public/orm/models/appLimitCap.d.ts +56 -0
  276. package/public/orm/models/appLimitCap.js +100 -0
  277. package/public/orm/models/appLimitCapsDefault.d.ts +56 -0
  278. package/public/orm/models/appLimitCapsDefault.js +100 -0
  279. package/public/orm/models/appLimitCredit.d.ts +56 -0
  280. package/public/orm/models/appLimitCredit.js +100 -0
  281. package/public/orm/models/appLimitCreditCode.d.ts +56 -0
  282. package/public/orm/models/appLimitCreditCode.js +100 -0
  283. package/public/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  284. package/public/orm/models/appLimitCreditCodeItem.js +100 -0
  285. package/public/orm/models/appLimitCreditRedemption.d.ts +56 -0
  286. package/public/orm/models/appLimitCreditRedemption.js +100 -0
  287. package/public/orm/models/billingProviderModule.d.ts +56 -0
  288. package/public/orm/models/billingProviderModule.js +100 -0
  289. package/public/orm/models/corsSetting.d.ts +56 -0
  290. package/public/orm/models/corsSetting.js +100 -0
  291. package/public/orm/models/databaseSetting.d.ts +56 -0
  292. package/public/orm/models/databaseSetting.js +100 -0
  293. package/public/orm/models/function.d.ts +56 -0
  294. package/public/orm/models/function.js +100 -0
  295. package/public/orm/models/index.d.ts +19 -1
  296. package/public/orm/models/index.js +41 -5
  297. package/public/orm/models/orgLimitCap.d.ts +56 -0
  298. package/public/orm/models/orgLimitCap.js +100 -0
  299. package/public/orm/models/orgLimitCapsDefault.d.ts +56 -0
  300. package/public/orm/models/orgLimitCapsDefault.js +100 -0
  301. package/public/orm/models/orgLimitCredit.d.ts +56 -0
  302. package/public/orm/models/orgLimitCredit.js +100 -0
  303. package/public/orm/models/partition.d.ts +56 -0
  304. package/public/orm/models/partition.js +100 -0
  305. package/public/orm/models/pubkeySetting.d.ts +56 -0
  306. package/public/orm/models/pubkeySetting.js +100 -0
  307. package/public/orm/models/rlsSetting.d.ts +56 -0
  308. package/public/orm/models/rlsSetting.js +100 -0
  309. package/public/orm/models/webauthnSetting.d.ts +56 -0
  310. package/public/orm/models/webauthnSetting.js +100 -0
  311. package/public/orm/mutation/index.d.ts +9 -16
  312. package/public/orm/mutation/index.js +12 -12
  313. package/public/orm/query-builder.js +24 -0
  314. package/admin/cli/commands/request-upload-url.js +0 -36
  315. package/auth/cli/commands/request-upload-url.js +0 -36
  316. package/esm/auth/cli/commands/request-upload-url.js +0 -34
  317. package/esm/objects/cli/commands/request-upload-url.d.ts +0 -8
  318. package/esm/objects/cli/commands/request-upload-url.js +0 -34
  319. package/esm/public/cli/commands/request-upload-url.d.ts +0 -8
  320. package/esm/public/cli/commands/request-upload-url.js +0 -34
  321. package/objects/cli/commands/request-upload-url.d.ts +0 -8
  322. package/public/cli/commands/request-upload-url.d.ts +0 -8
  323. package/public/cli/commands/request-upload-url.js +0 -36
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BillingProviderModuleModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class BillingProviderModuleModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('BillingProviderModule', 'billingProviderModules', args.select, {
13
+ where: args?.where,
14
+ orderBy: args?.orderBy,
15
+ first: args?.first,
16
+ last: args?.last,
17
+ after: args?.after,
18
+ before: args?.before,
19
+ offset: args?.offset,
20
+ }, 'BillingProviderModuleFilter', 'BillingProviderModuleOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'BillingProviderModule',
25
+ fieldName: 'billingProviderModules',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('BillingProviderModule', 'billingProviderModules', args.select, {
32
+ where: args?.where,
33
+ }, 'BillingProviderModuleFilter', input_types_1.connectionFieldsMap);
34
+ return new query_builder_1.QueryBuilder({
35
+ client: this.client,
36
+ operation: 'query',
37
+ operationName: 'BillingProviderModule',
38
+ fieldName: 'billingProviderModules',
39
+ document,
40
+ variables,
41
+ });
42
+ }
43
+ findOne(args) {
44
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('BillingProviderModule', 'billingProviderModules', args.select, {
45
+ where: {
46
+ id: {
47
+ equalTo: args.id,
48
+ },
49
+ },
50
+ first: 1,
51
+ }, 'BillingProviderModuleFilter', 'BillingProviderModuleOrderBy', input_types_1.connectionFieldsMap);
52
+ return new query_builder_1.QueryBuilder({
53
+ client: this.client,
54
+ operation: 'query',
55
+ operationName: 'BillingProviderModule',
56
+ fieldName: 'billingProviderModule',
57
+ document,
58
+ variables,
59
+ transform: (data) => ({
60
+ billingProviderModule: data.billingProviderModules?.nodes?.[0] ?? null,
61
+ }),
62
+ });
63
+ }
64
+ create(args) {
65
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('BillingProviderModule', 'createBillingProviderModule', 'billingProviderModule', args.select, args.data, 'CreateBillingProviderModuleInput', input_types_1.connectionFieldsMap);
66
+ return new query_builder_1.QueryBuilder({
67
+ client: this.client,
68
+ operation: 'mutation',
69
+ operationName: 'BillingProviderModule',
70
+ fieldName: 'createBillingProviderModule',
71
+ document,
72
+ variables,
73
+ });
74
+ }
75
+ update(args) {
76
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('BillingProviderModule', 'updateBillingProviderModule', 'billingProviderModule', args.select, args.where.id, args.data, 'UpdateBillingProviderModuleInput', 'id', 'billingProviderModulePatch', input_types_1.connectionFieldsMap);
77
+ return new query_builder_1.QueryBuilder({
78
+ client: this.client,
79
+ operation: 'mutation',
80
+ operationName: 'BillingProviderModule',
81
+ fieldName: 'updateBillingProviderModule',
82
+ document,
83
+ variables,
84
+ });
85
+ }
86
+ delete(args) {
87
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('BillingProviderModule', 'deleteBillingProviderModule', 'billingProviderModule', {
88
+ id: args.where.id,
89
+ }, 'DeleteBillingProviderModuleInput', args.select, input_types_1.connectionFieldsMap);
90
+ return new query_builder_1.QueryBuilder({
91
+ client: this.client,
92
+ operation: 'mutation',
93
+ operationName: 'BillingProviderModule',
94
+ fieldName: 'deleteBillingProviderModule',
95
+ document,
96
+ variables,
97
+ });
98
+ }
99
+ }
100
+ exports.BillingProviderModuleModel = BillingProviderModuleModel;
@@ -0,0 +1,56 @@
1
+ /**
2
+ * CorsSetting model for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { OrmClient } from '../client';
7
+ import { QueryBuilder } from '../query-builder';
8
+ import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { CorsSettingWithRelations, CorsSettingSelect, CorsSettingFilter, CorsSettingOrderBy, CreateCorsSettingInput, CorsSettingPatch } from '../input-types';
10
+ export declare class CorsSettingModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends CorsSettingSelect>(args: FindManyArgs<S, CorsSettingFilter, CorsSettingOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, CorsSettingSelect>): QueryBuilder<{
16
+ corsSettings: ConnectionResult<InferSelectResult<CorsSettingWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends CorsSettingSelect>(args: FindFirstArgs<S, CorsSettingFilter> & {
19
+ select: S;
20
+ } & StrictSelect<S, CorsSettingSelect>): QueryBuilder<{
21
+ corsSettings: {
22
+ nodes: InferSelectResult<CorsSettingWithRelations, S>[];
23
+ };
24
+ }>;
25
+ findOne<S extends CorsSettingSelect>(args: {
26
+ id: string;
27
+ select: S;
28
+ } & StrictSelect<S, CorsSettingSelect>): QueryBuilder<{
29
+ corsSetting: InferSelectResult<CorsSettingWithRelations, S> | null;
30
+ }>;
31
+ create<S extends CorsSettingSelect>(args: CreateArgs<S, CreateCorsSettingInput['corsSetting']> & {
32
+ select: S;
33
+ } & StrictSelect<S, CorsSettingSelect>): QueryBuilder<{
34
+ createCorsSetting: {
35
+ corsSetting: InferSelectResult<CorsSettingWithRelations, S>;
36
+ };
37
+ }>;
38
+ update<S extends CorsSettingSelect>(args: UpdateArgs<S, {
39
+ id: string;
40
+ }, CorsSettingPatch> & {
41
+ select: S;
42
+ } & StrictSelect<S, CorsSettingSelect>): QueryBuilder<{
43
+ updateCorsSetting: {
44
+ corsSetting: InferSelectResult<CorsSettingWithRelations, S>;
45
+ };
46
+ }>;
47
+ delete<S extends CorsSettingSelect>(args: DeleteArgs<{
48
+ id: string;
49
+ }, S> & {
50
+ select: S;
51
+ } & StrictSelect<S, CorsSettingSelect>): QueryBuilder<{
52
+ deleteCorsSetting: {
53
+ corsSetting: InferSelectResult<CorsSettingWithRelations, S>;
54
+ };
55
+ }>;
56
+ }
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CorsSettingModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class CorsSettingModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('CorsSetting', 'corsSettings', args.select, {
13
+ where: args?.where,
14
+ orderBy: args?.orderBy,
15
+ first: args?.first,
16
+ last: args?.last,
17
+ after: args?.after,
18
+ before: args?.before,
19
+ offset: args?.offset,
20
+ }, 'CorsSettingFilter', 'CorsSettingOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'CorsSetting',
25
+ fieldName: 'corsSettings',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('CorsSetting', 'corsSettings', args.select, {
32
+ where: args?.where,
33
+ }, 'CorsSettingFilter', input_types_1.connectionFieldsMap);
34
+ return new query_builder_1.QueryBuilder({
35
+ client: this.client,
36
+ operation: 'query',
37
+ operationName: 'CorsSetting',
38
+ fieldName: 'corsSettings',
39
+ document,
40
+ variables,
41
+ });
42
+ }
43
+ findOne(args) {
44
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('CorsSetting', 'corsSettings', args.select, {
45
+ where: {
46
+ id: {
47
+ equalTo: args.id,
48
+ },
49
+ },
50
+ first: 1,
51
+ }, 'CorsSettingFilter', 'CorsSettingOrderBy', input_types_1.connectionFieldsMap);
52
+ return new query_builder_1.QueryBuilder({
53
+ client: this.client,
54
+ operation: 'query',
55
+ operationName: 'CorsSetting',
56
+ fieldName: 'corsSetting',
57
+ document,
58
+ variables,
59
+ transform: (data) => ({
60
+ corsSetting: data.corsSettings?.nodes?.[0] ?? null,
61
+ }),
62
+ });
63
+ }
64
+ create(args) {
65
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('CorsSetting', 'createCorsSetting', 'corsSetting', args.select, args.data, 'CreateCorsSettingInput', input_types_1.connectionFieldsMap);
66
+ return new query_builder_1.QueryBuilder({
67
+ client: this.client,
68
+ operation: 'mutation',
69
+ operationName: 'CorsSetting',
70
+ fieldName: 'createCorsSetting',
71
+ document,
72
+ variables,
73
+ });
74
+ }
75
+ update(args) {
76
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('CorsSetting', 'updateCorsSetting', 'corsSetting', args.select, args.where.id, args.data, 'UpdateCorsSettingInput', 'id', 'corsSettingPatch', input_types_1.connectionFieldsMap);
77
+ return new query_builder_1.QueryBuilder({
78
+ client: this.client,
79
+ operation: 'mutation',
80
+ operationName: 'CorsSetting',
81
+ fieldName: 'updateCorsSetting',
82
+ document,
83
+ variables,
84
+ });
85
+ }
86
+ delete(args) {
87
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('CorsSetting', 'deleteCorsSetting', 'corsSetting', {
88
+ id: args.where.id,
89
+ }, 'DeleteCorsSettingInput', args.select, input_types_1.connectionFieldsMap);
90
+ return new query_builder_1.QueryBuilder({
91
+ client: this.client,
92
+ operation: 'mutation',
93
+ operationName: 'CorsSetting',
94
+ fieldName: 'deleteCorsSetting',
95
+ document,
96
+ variables,
97
+ });
98
+ }
99
+ }
100
+ exports.CorsSettingModel = CorsSettingModel;
@@ -0,0 +1,56 @@
1
+ /**
2
+ * DatabaseSetting model for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { OrmClient } from '../client';
7
+ import { QueryBuilder } from '../query-builder';
8
+ import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { DatabaseSettingWithRelations, DatabaseSettingSelect, DatabaseSettingFilter, DatabaseSettingOrderBy, CreateDatabaseSettingInput, DatabaseSettingPatch } from '../input-types';
10
+ export declare class DatabaseSettingModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends DatabaseSettingSelect>(args: FindManyArgs<S, DatabaseSettingFilter, DatabaseSettingOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, DatabaseSettingSelect>): QueryBuilder<{
16
+ databaseSettings: ConnectionResult<InferSelectResult<DatabaseSettingWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends DatabaseSettingSelect>(args: FindFirstArgs<S, DatabaseSettingFilter> & {
19
+ select: S;
20
+ } & StrictSelect<S, DatabaseSettingSelect>): QueryBuilder<{
21
+ databaseSettings: {
22
+ nodes: InferSelectResult<DatabaseSettingWithRelations, S>[];
23
+ };
24
+ }>;
25
+ findOne<S extends DatabaseSettingSelect>(args: {
26
+ id: string;
27
+ select: S;
28
+ } & StrictSelect<S, DatabaseSettingSelect>): QueryBuilder<{
29
+ databaseSetting: InferSelectResult<DatabaseSettingWithRelations, S> | null;
30
+ }>;
31
+ create<S extends DatabaseSettingSelect>(args: CreateArgs<S, CreateDatabaseSettingInput['databaseSetting']> & {
32
+ select: S;
33
+ } & StrictSelect<S, DatabaseSettingSelect>): QueryBuilder<{
34
+ createDatabaseSetting: {
35
+ databaseSetting: InferSelectResult<DatabaseSettingWithRelations, S>;
36
+ };
37
+ }>;
38
+ update<S extends DatabaseSettingSelect>(args: UpdateArgs<S, {
39
+ id: string;
40
+ }, DatabaseSettingPatch> & {
41
+ select: S;
42
+ } & StrictSelect<S, DatabaseSettingSelect>): QueryBuilder<{
43
+ updateDatabaseSetting: {
44
+ databaseSetting: InferSelectResult<DatabaseSettingWithRelations, S>;
45
+ };
46
+ }>;
47
+ delete<S extends DatabaseSettingSelect>(args: DeleteArgs<{
48
+ id: string;
49
+ }, S> & {
50
+ select: S;
51
+ } & StrictSelect<S, DatabaseSettingSelect>): QueryBuilder<{
52
+ deleteDatabaseSetting: {
53
+ databaseSetting: InferSelectResult<DatabaseSettingWithRelations, S>;
54
+ };
55
+ }>;
56
+ }
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DatabaseSettingModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class DatabaseSettingModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('DatabaseSetting', 'databaseSettings', args.select, {
13
+ where: args?.where,
14
+ orderBy: args?.orderBy,
15
+ first: args?.first,
16
+ last: args?.last,
17
+ after: args?.after,
18
+ before: args?.before,
19
+ offset: args?.offset,
20
+ }, 'DatabaseSettingFilter', 'DatabaseSettingOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'DatabaseSetting',
25
+ fieldName: 'databaseSettings',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('DatabaseSetting', 'databaseSettings', args.select, {
32
+ where: args?.where,
33
+ }, 'DatabaseSettingFilter', input_types_1.connectionFieldsMap);
34
+ return new query_builder_1.QueryBuilder({
35
+ client: this.client,
36
+ operation: 'query',
37
+ operationName: 'DatabaseSetting',
38
+ fieldName: 'databaseSettings',
39
+ document,
40
+ variables,
41
+ });
42
+ }
43
+ findOne(args) {
44
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('DatabaseSetting', 'databaseSettings', args.select, {
45
+ where: {
46
+ id: {
47
+ equalTo: args.id,
48
+ },
49
+ },
50
+ first: 1,
51
+ }, 'DatabaseSettingFilter', 'DatabaseSettingOrderBy', input_types_1.connectionFieldsMap);
52
+ return new query_builder_1.QueryBuilder({
53
+ client: this.client,
54
+ operation: 'query',
55
+ operationName: 'DatabaseSetting',
56
+ fieldName: 'databaseSetting',
57
+ document,
58
+ variables,
59
+ transform: (data) => ({
60
+ databaseSetting: data.databaseSettings?.nodes?.[0] ?? null,
61
+ }),
62
+ });
63
+ }
64
+ create(args) {
65
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('DatabaseSetting', 'createDatabaseSetting', 'databaseSetting', args.select, args.data, 'CreateDatabaseSettingInput', input_types_1.connectionFieldsMap);
66
+ return new query_builder_1.QueryBuilder({
67
+ client: this.client,
68
+ operation: 'mutation',
69
+ operationName: 'DatabaseSetting',
70
+ fieldName: 'createDatabaseSetting',
71
+ document,
72
+ variables,
73
+ });
74
+ }
75
+ update(args) {
76
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('DatabaseSetting', 'updateDatabaseSetting', 'databaseSetting', args.select, args.where.id, args.data, 'UpdateDatabaseSettingInput', 'id', 'databaseSettingPatch', input_types_1.connectionFieldsMap);
77
+ return new query_builder_1.QueryBuilder({
78
+ client: this.client,
79
+ operation: 'mutation',
80
+ operationName: 'DatabaseSetting',
81
+ fieldName: 'updateDatabaseSetting',
82
+ document,
83
+ variables,
84
+ });
85
+ }
86
+ delete(args) {
87
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('DatabaseSetting', 'deleteDatabaseSetting', 'databaseSetting', {
88
+ id: args.where.id,
89
+ }, 'DeleteDatabaseSettingInput', args.select, input_types_1.connectionFieldsMap);
90
+ return new query_builder_1.QueryBuilder({
91
+ client: this.client,
92
+ operation: 'mutation',
93
+ operationName: 'DatabaseSetting',
94
+ fieldName: 'deleteDatabaseSetting',
95
+ document,
96
+ variables,
97
+ });
98
+ }
99
+ }
100
+ exports.DatabaseSettingModel = DatabaseSettingModel;
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Function model for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { OrmClient } from '../client';
7
+ import { QueryBuilder } from '../query-builder';
8
+ import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { FunctionWithRelations, FunctionSelect, FunctionFilter, FunctionOrderBy, CreateFunctionInput, FunctionPatch } from '../input-types';
10
+ export declare class FunctionModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends FunctionSelect>(args: FindManyArgs<S, FunctionFilter, FunctionOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, FunctionSelect>): QueryBuilder<{
16
+ functions: ConnectionResult<InferSelectResult<FunctionWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends FunctionSelect>(args: FindFirstArgs<S, FunctionFilter> & {
19
+ select: S;
20
+ } & StrictSelect<S, FunctionSelect>): QueryBuilder<{
21
+ functions: {
22
+ nodes: InferSelectResult<FunctionWithRelations, S>[];
23
+ };
24
+ }>;
25
+ findOne<S extends FunctionSelect>(args: {
26
+ id: string;
27
+ select: S;
28
+ } & StrictSelect<S, FunctionSelect>): QueryBuilder<{
29
+ function: InferSelectResult<FunctionWithRelations, S> | null;
30
+ }>;
31
+ create<S extends FunctionSelect>(args: CreateArgs<S, CreateFunctionInput['function']> & {
32
+ select: S;
33
+ } & StrictSelect<S, FunctionSelect>): QueryBuilder<{
34
+ createFunction: {
35
+ function: InferSelectResult<FunctionWithRelations, S>;
36
+ };
37
+ }>;
38
+ update<S extends FunctionSelect>(args: UpdateArgs<S, {
39
+ id: string;
40
+ }, FunctionPatch> & {
41
+ select: S;
42
+ } & StrictSelect<S, FunctionSelect>): QueryBuilder<{
43
+ updateFunction: {
44
+ function: InferSelectResult<FunctionWithRelations, S>;
45
+ };
46
+ }>;
47
+ delete<S extends FunctionSelect>(args: DeleteArgs<{
48
+ id: string;
49
+ }, S> & {
50
+ select: S;
51
+ } & StrictSelect<S, FunctionSelect>): QueryBuilder<{
52
+ deleteFunction: {
53
+ function: InferSelectResult<FunctionWithRelations, S>;
54
+ };
55
+ }>;
56
+ }
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FunctionModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class FunctionModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('Function', 'functions', args.select, {
13
+ where: args?.where,
14
+ orderBy: args?.orderBy,
15
+ first: args?.first,
16
+ last: args?.last,
17
+ after: args?.after,
18
+ before: args?.before,
19
+ offset: args?.offset,
20
+ }, 'FunctionFilter', 'FunctionOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'Function',
25
+ fieldName: 'functions',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('Function', 'functions', args.select, {
32
+ where: args?.where,
33
+ }, 'FunctionFilter', input_types_1.connectionFieldsMap);
34
+ return new query_builder_1.QueryBuilder({
35
+ client: this.client,
36
+ operation: 'query',
37
+ operationName: 'Function',
38
+ fieldName: 'functions',
39
+ document,
40
+ variables,
41
+ });
42
+ }
43
+ findOne(args) {
44
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('Function', 'functions', args.select, {
45
+ where: {
46
+ id: {
47
+ equalTo: args.id,
48
+ },
49
+ },
50
+ first: 1,
51
+ }, 'FunctionFilter', 'FunctionOrderBy', input_types_1.connectionFieldsMap);
52
+ return new query_builder_1.QueryBuilder({
53
+ client: this.client,
54
+ operation: 'query',
55
+ operationName: 'Function',
56
+ fieldName: 'function',
57
+ document,
58
+ variables,
59
+ transform: (data) => ({
60
+ function: data.functions?.nodes?.[0] ?? null,
61
+ }),
62
+ });
63
+ }
64
+ create(args) {
65
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('Function', 'createFunction', 'function', args.select, args.data, 'CreateFunctionInput', input_types_1.connectionFieldsMap);
66
+ return new query_builder_1.QueryBuilder({
67
+ client: this.client,
68
+ operation: 'mutation',
69
+ operationName: 'Function',
70
+ fieldName: 'createFunction',
71
+ document,
72
+ variables,
73
+ });
74
+ }
75
+ update(args) {
76
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('Function', 'updateFunction', 'function', args.select, args.where.id, args.data, 'UpdateFunctionInput', 'id', 'functionPatch', input_types_1.connectionFieldsMap);
77
+ return new query_builder_1.QueryBuilder({
78
+ client: this.client,
79
+ operation: 'mutation',
80
+ operationName: 'Function',
81
+ fieldName: 'updateFunction',
82
+ document,
83
+ variables,
84
+ });
85
+ }
86
+ delete(args) {
87
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('Function', 'deleteFunction', 'function', {
88
+ id: args.where.id,
89
+ }, 'DeleteFunctionInput', args.select, input_types_1.connectionFieldsMap);
90
+ return new query_builder_1.QueryBuilder({
91
+ client: this.client,
92
+ operation: 'mutation',
93
+ operationName: 'Function',
94
+ fieldName: 'deleteFunction',
95
+ document,
96
+ variables,
97
+ });
98
+ }
99
+ }
100
+ exports.FunctionModel = FunctionModel;
@@ -16,6 +16,7 @@ export { TableModel } from './table';
16
16
  export { CheckConstraintModel } from './checkConstraint';
17
17
  export { FieldModel } from './field';
18
18
  export { SpatialRelationModel } from './spatialRelation';
19
+ export { PartitionModel } from './partition';
19
20
  export { ForeignKeyConstraintModel } from './foreignKeyConstraint';
20
21
  export { FullTextSearchModel } from './fullTextSearch';
21
22
  export { IndexModel } from './indexModel';
@@ -36,17 +37,20 @@ export { IdentityProvidersModuleModel } from './identityProvidersModule';
36
37
  export { SchemaGrantModel } from './schemaGrant';
37
38
  export { DefaultPrivilegeModel } from './defaultPrivilege';
38
39
  export { EnumModel } from './enum';
40
+ export { FunctionModel } from './function';
39
41
  export { ApiSchemaModel } from './apiSchema';
40
42
  export { ApiModuleModel } from './apiModule';
41
43
  export { DomainModel } from './domain';
42
44
  export { SiteMetadatumModel } from './siteMetadatum';
43
45
  export { SiteModuleModel } from './siteModule';
44
46
  export { SiteThemeModel } from './siteTheme';
47
+ export { CorsSettingModel } from './corsSetting';
45
48
  export { TriggerFunctionModel } from './triggerFunction';
46
49
  export { DatabaseTransferModel } from './databaseTransfer';
47
50
  export { ApiModel } from './api';
48
51
  export { SiteModel } from './site';
49
52
  export { AppModel } from './app';
53
+ export { ApiSettingModel } from './apiSetting';
50
54
  export { ConnectedAccountsModuleModel } from './connectedAccountsModule';
51
55
  export { CryptoAddressesModuleModel } from './cryptoAddressesModule';
52
56
  export { CryptoAuthModuleModel } from './cryptoAuthModule';
@@ -88,7 +92,11 @@ export { OrgChartEdgeModel } from './orgChartEdge';
88
92
  export { OrgChartEdgeGrantModel } from './orgChartEdgeGrant';
89
93
  export { OrgPermissionDefaultModel } from './orgPermissionDefault';
90
94
  export { AppLimitModel } from './appLimit';
95
+ export { AppLimitCreditModel } from './appLimitCredit';
96
+ export { AppLimitCreditCodeItemModel } from './appLimitCreditCodeItem';
97
+ export { AppLimitCreditRedemptionModel } from './appLimitCreditRedemption';
91
98
  export { OrgLimitModel } from './orgLimit';
99
+ export { OrgLimitCreditModel } from './orgLimitCredit';
92
100
  export { OrgLimitAggregateModel } from './orgLimitAggregate';
93
101
  export { AppStepModel } from './appStep';
94
102
  export { AppAchievementModel } from './appAchievement';
@@ -110,6 +118,11 @@ export { IdentityProviderModel } from './identityProvider';
110
118
  export { RefModel } from './ref';
111
119
  export { StoreModel } from './store';
112
120
  export { AppPermissionDefaultModel } from './appPermissionDefault';
121
+ export { AppLimitCreditCodeModel } from './appLimitCreditCode';
122
+ export { AppLimitCapsDefaultModel } from './appLimitCapsDefault';
123
+ export { OrgLimitCapsDefaultModel } from './orgLimitCapsDefault';
124
+ export { AppLimitCapModel } from './appLimitCap';
125
+ export { OrgLimitCapModel } from './orgLimitCap';
113
126
  export { MembershipTypeModel } from './membershipType';
114
127
  export { MigrateFileModel } from './migrateFile';
115
128
  export { DevicesModuleModel } from './devicesModule';
@@ -118,17 +131,22 @@ export { AppLimitDefaultModel } from './appLimitDefault';
118
131
  export { OrgLimitDefaultModel } from './orgLimitDefault';
119
132
  export { UserConnectedAccountModel } from './userConnectedAccount';
120
133
  export { CommitModel } from './commit';
134
+ export { PubkeySettingModel } from './pubkeySetting';
121
135
  export { RateLimitsModuleModel } from './rateLimitsModule';
122
136
  export { AppMembershipDefaultModel } from './appMembershipDefault';
123
137
  export { OrgMembershipDefaultModel } from './orgMembershipDefault';
138
+ export { RlsSettingModel } from './rlsSetting';
124
139
  export { AppLimitEventModel } from './appLimitEvent';
125
140
  export { OrgLimitEventModel } from './orgLimitEvent';
126
- export { PlansModuleModel } from './plansModule';
127
141
  export { RlsModuleModel } from './rlsModule';
142
+ export { DatabaseSettingModel } from './databaseSetting';
143
+ export { PlansModuleModel } from './plansModule';
128
144
  export { SqlActionModel } from './sqlAction';
129
145
  export { BillingModuleModel } from './billingModule';
130
146
  export { AstMigrationModel } from './astMigration';
131
147
  export { UserModel } from './user';
132
148
  export { OrgMembershipSettingModel } from './orgMembershipSetting';
149
+ export { WebauthnSettingModel } from './webauthnSetting';
133
150
  export { AppMembershipModel } from './appMembership';
151
+ export { BillingProviderModuleModel } from './billingProviderModule';
134
152
  export { HierarchyModuleModel } from './hierarchyModule';