@constructive-io/sdk 0.32.2 → 0.32.4

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 (239) hide show
  1. package/agent/orm/input-types.d.ts +24 -0
  2. package/agent/orm/input-types.js +3 -0
  3. package/api/orm/index.d.ts +9 -2
  4. package/api/orm/index.js +4 -2
  5. package/api/orm/input-types.d.ts +498 -143
  6. package/api/orm/input-types.js +4 -0
  7. package/api/orm/models/httpRoute.d.ts +54 -0
  8. package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
  9. package/api/orm/models/index.d.ts +2 -1
  10. package/api/orm/models/index.js +5 -3
  11. package/api/orm/models/managedDomain.d.ts +54 -0
  12. package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
  13. package/api/orm/query/index.d.ts +12 -0
  14. package/api/orm/query/index.js +20 -0
  15. package/auth/orm/input-types.d.ts +155 -182
  16. package/auth/orm/input-types.js +4 -0
  17. package/compute/orm/index.d.ts +101 -4
  18. package/compute/orm/index.js +46 -4
  19. package/compute/orm/input-types.d.ts +5356 -772
  20. package/compute/orm/input-types.js +34 -2
  21. package/compute/orm/models/declaredCapacity.d.ts +30 -0
  22. package/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +15 -15
  23. package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  24. package/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +15 -15
  25. package/compute/orm/models/index.d.ts +23 -2
  26. package/compute/orm/models/index.js +48 -5
  27. package/compute/orm/models/infraCommit.d.ts +2 -2
  28. package/compute/orm/models/infraCommit.js +2 -2
  29. package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  30. package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
  31. package/compute/orm/models/infraObject.d.ts +2 -2
  32. package/compute/orm/models/infraObject.js +2 -2
  33. package/compute/orm/models/infraRef.d.ts +2 -2
  34. package/compute/orm/models/infraRef.js +2 -2
  35. package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  36. package/compute/orm/models/{getAllRecord.js → platformDeclaredCapacity.js} +15 -15
  37. package/compute/orm/models/platformInfraCommit.d.ts +56 -0
  38. package/compute/orm/models/platformInfraCommit.js +107 -0
  39. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  40. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  41. package/compute/orm/models/platformInfraObject.d.ts +56 -0
  42. package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
  43. package/compute/orm/models/platformInfraRef.d.ts +56 -0
  44. package/compute/orm/models/platformInfraRef.js +107 -0
  45. package/compute/orm/models/platformInfraStore.d.ts +54 -0
  46. package/compute/orm/models/platformInfraStore.js +104 -0
  47. package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  48. package/compute/orm/models/platformResourceInstallation.js +104 -0
  49. package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  50. package/compute/orm/models/platformResourceUsageLog.js +107 -0
  51. package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  52. package/compute/orm/models/platformResourceUsageSummary.js +107 -0
  53. package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  54. package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
  55. package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  56. package/compute/orm/models/platformResourcesHealth.js +80 -0
  57. package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  58. package/compute/orm/models/platformWebhookEndpoint.js +104 -0
  59. package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  60. package/compute/orm/models/platformWebhookEvent.js +104 -0
  61. package/compute/orm/models/resourceInstallation.d.ts +54 -0
  62. package/compute/orm/models/resourceInstallation.js +104 -0
  63. package/compute/orm/models/resourceUsageLog.d.ts +56 -0
  64. package/compute/orm/models/resourceUsageLog.js +107 -0
  65. package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  66. package/compute/orm/models/resourceUsageSummary.js +107 -0
  67. package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  68. package/compute/orm/models/resourceUtilizationDaily.js +59 -0
  69. package/compute/orm/models/resourcesHealth.d.ts +36 -0
  70. package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
  71. package/compute/orm/models/webhookEndpoint.d.ts +54 -0
  72. package/compute/orm/models/webhookEndpoint.js +104 -0
  73. package/compute/orm/models/webhookEvent.d.ts +54 -0
  74. package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
  75. package/compute/orm/mutation/index.d.ts +89 -1
  76. package/compute/orm/mutation/index.js +132 -0
  77. package/config/orm/input-types.d.ts +4 -79
  78. package/esm/agent/orm/input-types.d.ts +24 -0
  79. package/esm/agent/orm/input-types.js +3 -0
  80. package/esm/api/orm/index.d.ts +9 -2
  81. package/esm/api/orm/index.js +4 -2
  82. package/esm/api/orm/input-types.d.ts +498 -143
  83. package/esm/api/orm/input-types.js +4 -0
  84. package/esm/api/orm/models/httpRoute.d.ts +54 -0
  85. package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
  86. package/esm/api/orm/models/index.d.ts +2 -1
  87. package/esm/api/orm/models/index.js +2 -1
  88. package/esm/api/orm/models/managedDomain.d.ts +54 -0
  89. package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
  90. package/esm/api/orm/query/index.d.ts +12 -0
  91. package/esm/api/orm/query/index.js +20 -0
  92. package/esm/auth/orm/input-types.d.ts +155 -182
  93. package/esm/auth/orm/input-types.js +4 -0
  94. package/esm/compute/orm/index.d.ts +101 -4
  95. package/esm/compute/orm/index.js +46 -4
  96. package/esm/compute/orm/input-types.d.ts +5356 -772
  97. package/esm/compute/orm/input-types.js +34 -2
  98. package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
  99. package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/declaredCapacity.js} +13 -13
  100. package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  101. package/esm/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
  102. package/esm/compute/orm/models/index.d.ts +23 -2
  103. package/esm/compute/orm/models/index.js +23 -2
  104. package/esm/compute/orm/models/infraCommit.d.ts +2 -2
  105. package/esm/compute/orm/models/infraCommit.js +2 -2
  106. package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  107. package/esm/compute/orm/models/{infraGetAllRecord.js → infraGetAllTreeNodesRecord.js} +13 -13
  108. package/esm/compute/orm/models/infraObject.d.ts +2 -2
  109. package/esm/compute/orm/models/infraObject.js +2 -2
  110. package/esm/compute/orm/models/infraRef.d.ts +2 -2
  111. package/esm/compute/orm/models/infraRef.js +2 -2
  112. package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  113. package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
  114. package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
  115. package/esm/compute/orm/models/platformInfraCommit.js +103 -0
  116. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  117. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  118. package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
  119. package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
  120. package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
  121. package/esm/compute/orm/models/platformInfraRef.js +103 -0
  122. package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
  123. package/esm/compute/orm/models/platformInfraStore.js +100 -0
  124. package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  125. package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
  126. package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  127. package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
  128. package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  129. package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
  130. package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  131. package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
  132. package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  133. package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
  134. package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  135. package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
  136. package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  137. package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
  138. package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
  139. package/esm/compute/orm/models/resourceInstallation.js +100 -0
  140. package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
  141. package/esm/compute/orm/models/resourceUsageLog.js +103 -0
  142. package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  143. package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
  144. package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  145. package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
  146. package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
  147. package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
  148. package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
  149. package/esm/compute/orm/models/webhookEndpoint.js +100 -0
  150. package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
  151. package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
  152. package/esm/compute/orm/mutation/index.d.ts +89 -1
  153. package/esm/compute/orm/mutation/index.js +132 -0
  154. package/esm/config/orm/input-types.d.ts +4 -79
  155. package/esm/infra/orm/index.d.ts +19 -19
  156. package/esm/infra/orm/index.js +10 -10
  157. package/esm/infra/orm/input-types.d.ts +542 -668
  158. package/esm/infra/orm/models/index.d.ts +5 -5
  159. package/esm/infra/orm/models/index.js +5 -5
  160. package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
  161. package/esm/infra/orm/models/platformInfraCommit.js +103 -0
  162. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  163. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  164. package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
  165. package/esm/infra/orm/models/platformInfraObject.js +93 -0
  166. package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
  167. package/esm/infra/orm/models/platformInfraRef.js +103 -0
  168. package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
  169. package/esm/infra/orm/models/platformInfraStore.js +100 -0
  170. package/esm/infra/orm/mutation/index.d.ts +16 -16
  171. package/esm/infra/orm/mutation/index.js +18 -18
  172. package/esm/modules/orm/index.d.ts +4 -0
  173. package/esm/modules/orm/index.js +4 -0
  174. package/esm/modules/orm/input-types.d.ts +802 -166
  175. package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
  176. package/esm/modules/orm/models/httpRouteModule.js +100 -0
  177. package/esm/modules/orm/models/index.d.ts +2 -0
  178. package/esm/modules/orm/models/index.js +2 -0
  179. package/esm/modules/orm/models/webhookModule.d.ts +54 -0
  180. package/esm/modules/orm/models/webhookModule.js +100 -0
  181. package/esm/objects/orm/index.d.ts +2 -2
  182. package/esm/objects/orm/index.js +2 -2
  183. package/esm/objects/orm/input-types.d.ts +15 -15
  184. package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  185. package/esm/objects/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
  186. package/esm/objects/orm/models/index.d.ts +1 -1
  187. package/esm/objects/orm/models/index.js +1 -1
  188. package/infra/orm/index.d.ts +19 -19
  189. package/infra/orm/index.js +10 -10
  190. package/infra/orm/input-types.d.ts +542 -668
  191. package/infra/orm/models/index.d.ts +5 -5
  192. package/infra/orm/models/index.js +11 -11
  193. package/infra/orm/models/platformInfraCommit.d.ts +56 -0
  194. package/infra/orm/models/platformInfraCommit.js +107 -0
  195. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  196. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  197. package/infra/orm/models/platformInfraObject.d.ts +56 -0
  198. package/infra/orm/models/platformInfraObject.js +97 -0
  199. package/infra/orm/models/platformInfraRef.d.ts +56 -0
  200. package/infra/orm/models/platformInfraRef.js +107 -0
  201. package/infra/orm/models/platformInfraStore.d.ts +54 -0
  202. package/infra/orm/models/platformInfraStore.js +104 -0
  203. package/infra/orm/mutation/index.d.ts +16 -16
  204. package/infra/orm/mutation/index.js +18 -18
  205. package/modules/orm/index.d.ts +4 -0
  206. package/modules/orm/index.js +4 -0
  207. package/modules/orm/input-types.d.ts +802 -166
  208. package/modules/orm/models/httpRouteModule.d.ts +54 -0
  209. package/modules/orm/models/httpRouteModule.js +104 -0
  210. package/modules/orm/models/index.d.ts +2 -0
  211. package/modules/orm/models/index.js +6 -2
  212. package/modules/orm/models/webhookModule.d.ts +54 -0
  213. package/modules/orm/models/webhookModule.js +104 -0
  214. package/objects/orm/index.d.ts +2 -2
  215. package/objects/orm/index.js +2 -2
  216. package/objects/orm/input-types.d.ts +15 -15
  217. package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  218. package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
  219. package/objects/orm/models/index.d.ts +1 -1
  220. package/objects/orm/models/index.js +3 -3
  221. package/package.json +5 -5
  222. package/api/orm/models/migrateFile.d.ts +0 -36
  223. package/compute/orm/models/getAllRecord.d.ts +0 -30
  224. package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  225. package/esm/api/orm/models/migrateFile.d.ts +0 -36
  226. package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
  227. package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  228. package/esm/infra/orm/models/infraCommit.d.ts +0 -56
  229. package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  230. package/esm/infra/orm/models/infraObject.d.ts +0 -56
  231. package/esm/infra/orm/models/infraRef.d.ts +0 -56
  232. package/esm/infra/orm/models/infraStore.d.ts +0 -54
  233. package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
  234. package/infra/orm/models/infraCommit.d.ts +0 -56
  235. package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  236. package/infra/orm/models/infraObject.d.ts +0 -56
  237. package/infra/orm/models/infraRef.d.ts +0 -56
  238. package/infra/orm/models/infraStore.d.ts +0 -54
  239. package/objects/orm/models/getAllRecord.d.ts +0 -30
@@ -0,0 +1,54 @@
1
+ /**
2
+ * HttpRouteModule 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 { HttpRouteModuleWithRelations, HttpRouteModuleSelect, HttpRouteModuleFilter, HttpRouteModuleOrderBy, CreateHttpRouteModuleInput, HttpRouteModulePatch } from '../input-types';
10
+ export declare class HttpRouteModuleModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends HttpRouteModuleSelect>(args: FindManyArgs<S, HttpRouteModuleFilter, HttpRouteModuleOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, HttpRouteModuleSelect>): QueryBuilder<{
16
+ httpRouteModules: ConnectionResult<InferSelectResult<HttpRouteModuleWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends HttpRouteModuleSelect>(args: FindFirstArgs<S, HttpRouteModuleFilter, HttpRouteModuleOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, HttpRouteModuleSelect>): QueryBuilder<{
21
+ httpRouteModule: InferSelectResult<HttpRouteModuleWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends HttpRouteModuleSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, HttpRouteModuleSelect>): QueryBuilder<{
27
+ httpRouteModule: InferSelectResult<HttpRouteModuleWithRelations, S> | null;
28
+ }>;
29
+ create<S extends HttpRouteModuleSelect>(args: CreateArgs<S, CreateHttpRouteModuleInput['httpRouteModule']> & {
30
+ select: S;
31
+ } & StrictSelect<S, HttpRouteModuleSelect>): QueryBuilder<{
32
+ createHttpRouteModule: {
33
+ httpRouteModule: InferSelectResult<HttpRouteModuleWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends HttpRouteModuleSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, HttpRouteModulePatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, HttpRouteModuleSelect>): QueryBuilder<{
41
+ updateHttpRouteModule: {
42
+ httpRouteModule: InferSelectResult<HttpRouteModuleWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends HttpRouteModuleSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, HttpRouteModuleSelect>): QueryBuilder<{
50
+ deleteHttpRouteModule: {
51
+ httpRouteModule: InferSelectResult<HttpRouteModuleWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -0,0 +1,100 @@
1
+ import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
+ import { connectionFieldsMap } from '../input-types';
3
+ export class HttpRouteModuleModel {
4
+ client;
5
+ constructor(client) {
6
+ this.client = client;
7
+ }
8
+ findMany(args) {
9
+ const { document, variables } = buildFindManyDocument('HttpRouteModule', 'httpRouteModules', args.select, {
10
+ where: args?.where,
11
+ orderBy: args?.orderBy,
12
+ first: args?.first,
13
+ last: args?.last,
14
+ after: args?.after,
15
+ before: args?.before,
16
+ offset: args?.offset,
17
+ }, 'HttpRouteModuleFilter', 'HttpRouteModuleOrderBy', connectionFieldsMap);
18
+ return new QueryBuilder({
19
+ client: this.client,
20
+ operation: 'query',
21
+ operationName: 'HttpRouteModule',
22
+ fieldName: 'httpRouteModules',
23
+ document,
24
+ variables,
25
+ });
26
+ }
27
+ findFirst(args) {
28
+ const { document, variables } = buildFindFirstDocument('HttpRouteModule', 'httpRouteModules', args.select, {
29
+ where: args?.where,
30
+ orderBy: args?.orderBy,
31
+ }, 'HttpRouteModuleFilter', 'HttpRouteModuleOrderBy', connectionFieldsMap);
32
+ return new QueryBuilder({
33
+ client: this.client,
34
+ operation: 'query',
35
+ operationName: 'HttpRouteModule',
36
+ fieldName: 'httpRouteModule',
37
+ document,
38
+ variables,
39
+ transform: (data) => ({
40
+ httpRouteModule: data.httpRouteModules?.nodes?.[0] ?? null,
41
+ }),
42
+ });
43
+ }
44
+ findOne(args) {
45
+ const { document, variables } = buildFindManyDocument('HttpRouteModule', 'httpRouteModules', args.select, {
46
+ where: {
47
+ id: {
48
+ equalTo: args.id,
49
+ },
50
+ },
51
+ first: 1,
52
+ }, 'HttpRouteModuleFilter', 'HttpRouteModuleOrderBy', connectionFieldsMap);
53
+ return new QueryBuilder({
54
+ client: this.client,
55
+ operation: 'query',
56
+ operationName: 'HttpRouteModule',
57
+ fieldName: 'httpRouteModule',
58
+ document,
59
+ variables,
60
+ transform: (data) => ({
61
+ httpRouteModule: data.httpRouteModules?.nodes?.[0] ?? null,
62
+ }),
63
+ });
64
+ }
65
+ create(args) {
66
+ const { document, variables } = buildCreateDocument('HttpRouteModule', 'createHttpRouteModule', 'httpRouteModule', args.select, args.data, 'CreateHttpRouteModuleInput', connectionFieldsMap);
67
+ return new QueryBuilder({
68
+ client: this.client,
69
+ operation: 'mutation',
70
+ operationName: 'HttpRouteModule',
71
+ fieldName: 'createHttpRouteModule',
72
+ document,
73
+ variables,
74
+ });
75
+ }
76
+ update(args) {
77
+ const { document, variables } = buildUpdateByPkDocument('HttpRouteModule', 'updateHttpRouteModule', 'httpRouteModule', args.select, args.where.id, args.data, 'UpdateHttpRouteModuleInput', 'id', 'httpRouteModulePatch', connectionFieldsMap, undefined);
78
+ return new QueryBuilder({
79
+ client: this.client,
80
+ operation: 'mutation',
81
+ operationName: 'HttpRouteModule',
82
+ fieldName: 'updateHttpRouteModule',
83
+ document,
84
+ variables,
85
+ });
86
+ }
87
+ delete(args) {
88
+ const { document, variables } = buildDeleteByPkDocument('HttpRouteModule', 'deleteHttpRouteModule', 'httpRouteModule', {
89
+ id: args.where.id,
90
+ }, 'DeleteHttpRouteModuleInput', args.select, connectionFieldsMap);
91
+ return new QueryBuilder({
92
+ client: this.client,
93
+ operation: 'mutation',
94
+ operationName: 'HttpRouteModule',
95
+ fieldName: 'deleteHttpRouteModule',
96
+ document,
97
+ variables,
98
+ });
99
+ }
100
+ }
@@ -31,6 +31,7 @@ export { FunctionModuleModel } from './functionModule';
31
31
  export { GraphExecutionModuleModel } from './graphExecutionModule';
32
32
  export { GraphModuleModel } from './graphModule';
33
33
  export { HierarchyModuleModel } from './hierarchyModule';
34
+ export { HttpRouteModuleModel } from './httpRouteModule';
34
35
  export { I18NModuleModel } from './i18NModule';
35
36
  export { IdentityProvidersModuleModel } from './identityProvidersModule';
36
37
  export { InferenceLogModuleModel } from './inferenceLogModule';
@@ -69,3 +70,4 @@ export { UserStateModuleModel } from './userStateModule';
69
70
  export { UsersModuleModel } from './usersModule';
70
71
  export { WebauthnAuthModuleModel } from './webauthnAuthModule';
71
72
  export { WebauthnCredentialsModuleModel } from './webauthnCredentialsModule';
73
+ export { WebhookModuleModel } from './webhookModule';
@@ -31,6 +31,7 @@ export { FunctionModuleModel } from './functionModule';
31
31
  export { GraphExecutionModuleModel } from './graphExecutionModule';
32
32
  export { GraphModuleModel } from './graphModule';
33
33
  export { HierarchyModuleModel } from './hierarchyModule';
34
+ export { HttpRouteModuleModel } from './httpRouteModule';
34
35
  export { I18NModuleModel } from './i18NModule';
35
36
  export { IdentityProvidersModuleModel } from './identityProvidersModule';
36
37
  export { InferenceLogModuleModel } from './inferenceLogModule';
@@ -69,3 +70,4 @@ export { UserStateModuleModel } from './userStateModule';
69
70
  export { UsersModuleModel } from './usersModule';
70
71
  export { WebauthnAuthModuleModel } from './webauthnAuthModule';
71
72
  export { WebauthnCredentialsModuleModel } from './webauthnCredentialsModule';
73
+ export { WebhookModuleModel } from './webhookModule';
@@ -0,0 +1,54 @@
1
+ /**
2
+ * WebhookModule 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 { WebhookModuleWithRelations, WebhookModuleSelect, WebhookModuleFilter, WebhookModuleOrderBy, CreateWebhookModuleInput, WebhookModulePatch } from '../input-types';
10
+ export declare class WebhookModuleModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends WebhookModuleSelect>(args: FindManyArgs<S, WebhookModuleFilter, WebhookModuleOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, WebhookModuleSelect>): QueryBuilder<{
16
+ webhookModules: ConnectionResult<InferSelectResult<WebhookModuleWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends WebhookModuleSelect>(args: FindFirstArgs<S, WebhookModuleFilter, WebhookModuleOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, WebhookModuleSelect>): QueryBuilder<{
21
+ webhookModule: InferSelectResult<WebhookModuleWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends WebhookModuleSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, WebhookModuleSelect>): QueryBuilder<{
27
+ webhookModule: InferSelectResult<WebhookModuleWithRelations, S> | null;
28
+ }>;
29
+ create<S extends WebhookModuleSelect>(args: CreateArgs<S, CreateWebhookModuleInput['webhookModule']> & {
30
+ select: S;
31
+ } & StrictSelect<S, WebhookModuleSelect>): QueryBuilder<{
32
+ createWebhookModule: {
33
+ webhookModule: InferSelectResult<WebhookModuleWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends WebhookModuleSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, WebhookModulePatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, WebhookModuleSelect>): QueryBuilder<{
41
+ updateWebhookModule: {
42
+ webhookModule: InferSelectResult<WebhookModuleWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends WebhookModuleSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, WebhookModuleSelect>): QueryBuilder<{
50
+ deleteWebhookModule: {
51
+ webhookModule: InferSelectResult<WebhookModuleWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -0,0 +1,100 @@
1
+ import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
+ import { connectionFieldsMap } from '../input-types';
3
+ export class WebhookModuleModel {
4
+ client;
5
+ constructor(client) {
6
+ this.client = client;
7
+ }
8
+ findMany(args) {
9
+ const { document, variables } = buildFindManyDocument('WebhookModule', 'webhookModules', args.select, {
10
+ where: args?.where,
11
+ orderBy: args?.orderBy,
12
+ first: args?.first,
13
+ last: args?.last,
14
+ after: args?.after,
15
+ before: args?.before,
16
+ offset: args?.offset,
17
+ }, 'WebhookModuleFilter', 'WebhookModuleOrderBy', connectionFieldsMap);
18
+ return new QueryBuilder({
19
+ client: this.client,
20
+ operation: 'query',
21
+ operationName: 'WebhookModule',
22
+ fieldName: 'webhookModules',
23
+ document,
24
+ variables,
25
+ });
26
+ }
27
+ findFirst(args) {
28
+ const { document, variables } = buildFindFirstDocument('WebhookModule', 'webhookModules', args.select, {
29
+ where: args?.where,
30
+ orderBy: args?.orderBy,
31
+ }, 'WebhookModuleFilter', 'WebhookModuleOrderBy', connectionFieldsMap);
32
+ return new QueryBuilder({
33
+ client: this.client,
34
+ operation: 'query',
35
+ operationName: 'WebhookModule',
36
+ fieldName: 'webhookModule',
37
+ document,
38
+ variables,
39
+ transform: (data) => ({
40
+ webhookModule: data.webhookModules?.nodes?.[0] ?? null,
41
+ }),
42
+ });
43
+ }
44
+ findOne(args) {
45
+ const { document, variables } = buildFindManyDocument('WebhookModule', 'webhookModules', args.select, {
46
+ where: {
47
+ id: {
48
+ equalTo: args.id,
49
+ },
50
+ },
51
+ first: 1,
52
+ }, 'WebhookModuleFilter', 'WebhookModuleOrderBy', connectionFieldsMap);
53
+ return new QueryBuilder({
54
+ client: this.client,
55
+ operation: 'query',
56
+ operationName: 'WebhookModule',
57
+ fieldName: 'webhookModule',
58
+ document,
59
+ variables,
60
+ transform: (data) => ({
61
+ webhookModule: data.webhookModules?.nodes?.[0] ?? null,
62
+ }),
63
+ });
64
+ }
65
+ create(args) {
66
+ const { document, variables } = buildCreateDocument('WebhookModule', 'createWebhookModule', 'webhookModule', args.select, args.data, 'CreateWebhookModuleInput', connectionFieldsMap);
67
+ return new QueryBuilder({
68
+ client: this.client,
69
+ operation: 'mutation',
70
+ operationName: 'WebhookModule',
71
+ fieldName: 'createWebhookModule',
72
+ document,
73
+ variables,
74
+ });
75
+ }
76
+ update(args) {
77
+ const { document, variables } = buildUpdateByPkDocument('WebhookModule', 'updateWebhookModule', 'webhookModule', args.select, args.where.id, args.data, 'UpdateWebhookModuleInput', 'id', 'webhookModulePatch', connectionFieldsMap, undefined);
78
+ return new QueryBuilder({
79
+ client: this.client,
80
+ operation: 'mutation',
81
+ operationName: 'WebhookModule',
82
+ fieldName: 'updateWebhookModule',
83
+ document,
84
+ variables,
85
+ });
86
+ }
87
+ delete(args) {
88
+ const { document, variables } = buildDeleteByPkDocument('WebhookModule', 'deleteWebhookModule', 'webhookModule', {
89
+ id: args.where.id,
90
+ }, 'DeleteWebhookModuleInput', args.select, connectionFieldsMap);
91
+ return new QueryBuilder({
92
+ client: this.client,
93
+ operation: 'mutation',
94
+ operationName: 'WebhookModule',
95
+ fieldName: 'deleteWebhookModule',
96
+ document,
97
+ variables,
98
+ });
99
+ }
100
+ }
@@ -1,6 +1,6 @@
1
1
  import type { OrmClientConfig } from './client';
2
2
  import { CommitModel } from './models/commit';
3
- import { GetAllRecordModel } from './models/getAllRecord';
3
+ import { GetAllTreeNodesRecordModel } from './models/getAllTreeNodesRecord';
4
4
  import { ObjectModel } from './models/object';
5
5
  import { RefModel } from './models/ref';
6
6
  import { StoreModel } from './models/store';
@@ -35,7 +35,7 @@ export { createMutationOperations } from './mutation';
35
35
  */
36
36
  export declare function createClient(config: OrmClientConfig): {
37
37
  commit: CommitModel;
38
- getAllRecord: GetAllRecordModel;
38
+ getAllTreeNodesRecord: GetAllTreeNodesRecordModel;
39
39
  object: ObjectModel;
40
40
  ref: RefModel;
41
41
  store: StoreModel;
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { OrmClient } from './client';
7
7
  import { CommitModel } from './models/commit';
8
- import { GetAllRecordModel } from './models/getAllRecord';
8
+ import { GetAllTreeNodesRecordModel } from './models/getAllTreeNodesRecord';
9
9
  import { ObjectModel } from './models/object';
10
10
  import { RefModel } from './models/ref';
11
11
  import { StoreModel } from './models/store';
@@ -42,7 +42,7 @@ export function createClient(config) {
42
42
  const client = new OrmClient(config);
43
43
  return {
44
44
  commit: new CommitModel(client),
45
- getAllRecord: new GetAllRecordModel(client),
45
+ getAllTreeNodesRecord: new GetAllTreeNodesRecordModel(client),
46
46
  object: new ObjectModel(client),
47
47
  ref: new RefModel(client),
48
48
  store: new StoreModel(client),
@@ -250,7 +250,7 @@ export interface Commit {
250
250
  /** Root object ID of the tree snapshot at this commit */
251
251
  treeId?: string | null;
252
252
  }
253
- export interface GetAllRecord {
253
+ export interface GetAllTreeNodesRecord {
254
254
  data?: Record<string, unknown> | null;
255
255
  path?: string[] | null;
256
256
  }
@@ -308,7 +308,7 @@ export interface PageInfo {
308
308
  }
309
309
  export interface CommitRelations {
310
310
  }
311
- export interface GetAllRecordRelations {
311
+ export interface GetAllTreeNodesRecordRelations {
312
312
  }
313
313
  export interface ObjectRelations {
314
314
  }
@@ -317,7 +317,7 @@ export interface RefRelations {
317
317
  export interface StoreRelations {
318
318
  }
319
319
  export type CommitWithRelations = Commit & CommitRelations;
320
- export type GetAllRecordWithRelations = GetAllRecord & GetAllRecordRelations;
320
+ export type GetAllTreeNodesRecordWithRelations = GetAllTreeNodesRecord & GetAllTreeNodesRecordRelations;
321
321
  export type ObjectWithRelations = Object & ObjectRelations;
322
322
  export type RefWithRelations = Ref & RefRelations;
323
323
  export type StoreWithRelations = Store & StoreRelations;
@@ -332,7 +332,7 @@ export type CommitSelect = {
332
332
  storeId?: boolean;
333
333
  treeId?: boolean;
334
334
  };
335
- export type GetAllRecordSelect = {
335
+ export type GetAllTreeNodesRecordSelect = {
336
336
  data?: boolean;
337
337
  path?: boolean;
338
338
  };
@@ -384,12 +384,12 @@ export interface CommitFilter {
384
384
  /** Filter by the object’s `treeId` field. */
385
385
  treeId?: UUIDFilter;
386
386
  }
387
- export interface GetAllRecordFilter {
387
+ export interface GetAllTreeNodesRecordFilter {
388
388
  data?: JSONFilter;
389
389
  path?: StringListFilter;
390
- and?: GetAllRecordFilter[];
391
- or?: GetAllRecordFilter[];
392
- not?: GetAllRecordFilter;
390
+ and?: GetAllTreeNodesRecordFilter[];
391
+ or?: GetAllTreeNodesRecordFilter[];
392
+ not?: GetAllTreeNodesRecordFilter;
393
393
  }
394
394
  export interface ObjectFilter {
395
395
  /** Checks for all expressions in this list. */
@@ -448,7 +448,7 @@ export interface StoreFilter {
448
448
  or?: StoreFilter[];
449
449
  }
450
450
  export type CommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
451
- export type GetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'DATA_ASC' | 'DATA_DESC' | 'PATH_ASC' | 'PATH_DESC';
451
+ export type GetAllTreeNodesRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'DATA_ASC' | 'DATA_DESC' | 'PATH_ASC' | 'PATH_DESC';
452
452
  export type ObjectOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
453
453
  export type RefOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC';
454
454
  export type StoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
@@ -484,23 +484,23 @@ export interface DeleteCommitInput {
484
484
  clientMutationId?: string;
485
485
  id: string;
486
486
  }
487
- export interface CreateGetAllRecordInput {
487
+ export interface CreateGetAllTreeNodesRecordInput {
488
488
  clientMutationId?: string;
489
- getAllRecord: {
489
+ getAllTreeNodesRecord: {
490
490
  data?: Record<string, unknown>;
491
491
  path?: string[];
492
492
  };
493
493
  }
494
- export interface GetAllRecordPatch {
494
+ export interface GetAllTreeNodesRecordPatch {
495
495
  data?: Record<string, unknown> | null;
496
496
  path?: string[] | null;
497
497
  }
498
- export interface UpdateGetAllRecordInput {
498
+ export interface UpdateGetAllTreeNodesRecordInput {
499
499
  clientMutationId?: string;
500
500
  id: string;
501
- getAllRecordPatch: GetAllRecordPatch;
501
+ getAllTreeNodesRecordPatch: GetAllTreeNodesRecordPatch;
502
502
  }
503
- export interface DeleteGetAllRecordInput {
503
+ export interface DeleteGetAllTreeNodesRecordInput {
504
504
  clientMutationId?: string;
505
505
  id: string;
506
506
  }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * GetAllTreeNodesRecord 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, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { GetAllTreeNodesRecordWithRelations, GetAllTreeNodesRecordSelect, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy, CreateGetAllTreeNodesRecordInput } from '../input-types';
10
+ export declare class GetAllTreeNodesRecordModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends GetAllTreeNodesRecordSelect>(args: FindManyArgs<S, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
16
+ getAllTreeNodes: ConnectionResult<InferSelectResult<GetAllTreeNodesRecordWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends GetAllTreeNodesRecordSelect>(args: FindFirstArgs<S, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
21
+ getAllTreeNodesRecord: InferSelectResult<GetAllTreeNodesRecordWithRelations, S> | null;
22
+ }>;
23
+ create<S extends GetAllTreeNodesRecordSelect>(args: CreateArgs<S, CreateGetAllTreeNodesRecordInput['getAllTreeNodesRecord']> & {
24
+ select: S;
25
+ } & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
26
+ createGetAllTreeNodesRecord: {
27
+ getAllTreeNodesRecord: InferSelectResult<GetAllTreeNodesRecordWithRelations, S>;
28
+ };
29
+ }>;
30
+ }
@@ -1,12 +1,12 @@
1
1
  import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, } from '../query-builder';
2
2
  import { connectionFieldsMap } from '../input-types';
3
- export class GetAllRecordModel {
3
+ export class GetAllTreeNodesRecordModel {
4
4
  client;
5
5
  constructor(client) {
6
6
  this.client = client;
7
7
  }
8
8
  findMany(args) {
9
- const { document, variables } = buildFindManyDocument('GetAllRecord', 'getAll', args.select, {
9
+ const { document, variables } = buildFindManyDocument('GetAllTreeNodesRecord', 'getAllTreeNodes', args.select, {
10
10
  where: args?.where,
11
11
  orderBy: args?.orderBy,
12
12
  first: args?.first,
@@ -14,40 +14,40 @@ export class GetAllRecordModel {
14
14
  after: args?.after,
15
15
  before: args?.before,
16
16
  offset: args?.offset,
17
- }, 'GetAllRecordFilter', 'GetAllRecordsOrderBy', connectionFieldsMap);
17
+ }, 'GetAllTreeNodesRecordFilter', 'GetAllTreeNodesRecordsOrderBy', connectionFieldsMap);
18
18
  return new QueryBuilder({
19
19
  client: this.client,
20
20
  operation: 'query',
21
- operationName: 'GetAllRecord',
22
- fieldName: 'getAll',
21
+ operationName: 'GetAllTreeNodesRecord',
22
+ fieldName: 'getAllTreeNodes',
23
23
  document,
24
24
  variables,
25
25
  });
26
26
  }
27
27
  findFirst(args) {
28
- const { document, variables } = buildFindFirstDocument('GetAllRecord', 'getAll', args.select, {
28
+ const { document, variables } = buildFindFirstDocument('GetAllTreeNodesRecord', 'getAllTreeNodes', args.select, {
29
29
  where: args?.where,
30
30
  orderBy: args?.orderBy,
31
- }, 'GetAllRecordFilter', 'GetAllRecordsOrderBy', connectionFieldsMap);
31
+ }, 'GetAllTreeNodesRecordFilter', 'GetAllTreeNodesRecordsOrderBy', connectionFieldsMap);
32
32
  return new QueryBuilder({
33
33
  client: this.client,
34
34
  operation: 'query',
35
- operationName: 'GetAllRecord',
36
- fieldName: 'getAllRecord',
35
+ operationName: 'GetAllTreeNodesRecord',
36
+ fieldName: 'getAllTreeNodesRecord',
37
37
  document,
38
38
  variables,
39
39
  transform: (data) => ({
40
- getAllRecord: data.getAll?.nodes?.[0] ?? null,
40
+ getAllTreeNodesRecord: data.getAllTreeNodes?.nodes?.[0] ?? null,
41
41
  }),
42
42
  });
43
43
  }
44
44
  create(args) {
45
- const { document, variables } = buildCreateDocument('GetAllRecord', 'createGetAllRecord', 'getAllRecord', args.select, args.data, 'CreateGetAllRecordInput', connectionFieldsMap);
45
+ const { document, variables } = buildCreateDocument('GetAllTreeNodesRecord', 'createGetAllTreeNodesRecord', 'getAllTreeNodesRecord', args.select, args.data, 'CreateGetAllTreeNodesRecordInput', connectionFieldsMap);
46
46
  return new QueryBuilder({
47
47
  client: this.client,
48
48
  operation: 'mutation',
49
- operationName: 'GetAllRecord',
50
- fieldName: 'createGetAllRecord',
49
+ operationName: 'GetAllTreeNodesRecord',
50
+ fieldName: 'createGetAllTreeNodesRecord',
51
51
  document,
52
52
  variables,
53
53
  });
@@ -4,7 +4,7 @@
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
6
  export { CommitModel } from './commit';
7
- export { GetAllRecordModel } from './getAllRecord';
7
+ export { GetAllTreeNodesRecordModel } from './getAllTreeNodesRecord';
8
8
  export { ObjectModel } from './object';
9
9
  export { RefModel } from './ref';
10
10
  export { StoreModel } from './store';
@@ -4,7 +4,7 @@
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
6
  export { CommitModel } from './commit';
7
- export { GetAllRecordModel } from './getAllRecord';
7
+ export { GetAllTreeNodesRecordModel } from './getAllTreeNodesRecord';
8
8
  export { ObjectModel } from './object';
9
9
  export { RefModel } from './ref';
10
10
  export { StoreModel } from './store';
@@ -1,12 +1,12 @@
1
1
  import type { OrmClientConfig } from './client';
2
2
  import { DbPresetModel } from './models/dbPreset';
3
- import { InfraCommitModel } from './models/infraCommit';
4
- import { InfraGetAllRecordModel } from './models/infraGetAllRecord';
5
- import { InfraObjectModel } from './models/infraObject';
6
- import { InfraRefModel } from './models/infraRef';
7
- import { InfraStoreModel } from './models/infraStore';
8
3
  import { NamespaceModel } from './models/namespace';
9
4
  import { NamespaceEventModel } from './models/namespaceEvent';
5
+ import { PlatformInfraCommitModel } from './models/platformInfraCommit';
6
+ import { PlatformInfraGetAllTreeNodesRecordModel } from './models/platformInfraGetAllTreeNodesRecord';
7
+ import { PlatformInfraObjectModel } from './models/platformInfraObject';
8
+ import { PlatformInfraRefModel } from './models/platformInfraRef';
9
+ import { PlatformInfraStoreModel } from './models/platformInfraStore';
10
10
  import { PlatformNamespaceModel } from './models/platformNamespace';
11
11
  import { PlatformNamespaceEventModel } from './models/platformNamespaceEvent';
12
12
  export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
@@ -40,30 +40,30 @@ export { createMutationOperations } from './mutation';
40
40
  */
41
41
  export declare function createClient(config: OrmClientConfig): {
42
42
  dbPreset: DbPresetModel;
43
- infraCommit: InfraCommitModel;
44
- infraGetAllRecord: InfraGetAllRecordModel;
45
- infraObject: InfraObjectModel;
46
- infraRef: InfraRefModel;
47
- infraStore: InfraStoreModel;
48
43
  namespace: NamespaceModel;
49
44
  namespaceEvent: NamespaceEventModel;
45
+ platformInfraCommit: PlatformInfraCommitModel;
46
+ platformInfraGetAllTreeNodesRecord: PlatformInfraGetAllTreeNodesRecordModel;
47
+ platformInfraObject: PlatformInfraObjectModel;
48
+ platformInfraRef: PlatformInfraRefModel;
49
+ platformInfraStore: PlatformInfraStoreModel;
50
50
  platformNamespace: PlatformNamespaceModel;
51
51
  platformNamespaceEvent: PlatformNamespaceEventModel;
52
52
  mutation: {
53
- infraInitEmptyRepo: <S extends import("./input-types").InfraInitEmptyRepoPayloadSelect>(args: import("./mutation").InfraInitEmptyRepoVariables, options: {
53
+ platformInfraInitEmptyRepo: <S extends import("./input-types").PlatformInfraInitEmptyRepoPayloadSelect>(args: import("./mutation").PlatformInfraInitEmptyRepoVariables, options: {
54
54
  select: S;
55
- } & import("./select-types").StrictSelect<S, import("./input-types").InfraInitEmptyRepoPayloadSelect>) => import("./query-builder").QueryBuilder<{
56
- infraInitEmptyRepo: import("./select-types").InferSelectResult<import("./input-types").InfraInitEmptyRepoPayload, S> | null;
55
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformInfraInitEmptyRepoPayloadSelect>) => import("./query-builder").QueryBuilder<{
56
+ platformInfraInitEmptyRepo: import("./select-types").InferSelectResult<import("./input-types").PlatformInfraInitEmptyRepoPayload, S> | null;
57
57
  }>;
58
- infraInsertNodeAtPath: <S extends import("./input-types").InfraInsertNodeAtPathPayloadSelect>(args: import("./mutation").InfraInsertNodeAtPathVariables, options: {
58
+ platformInfraInsertNodeAtPath: <S extends import("./input-types").PlatformInfraInsertNodeAtPathPayloadSelect>(args: import("./mutation").PlatformInfraInsertNodeAtPathVariables, options: {
59
59
  select: S;
60
- } & import("./select-types").StrictSelect<S, import("./input-types").InfraInsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
61
- infraInsertNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").InfraInsertNodeAtPathPayload, S> | null;
60
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformInfraInsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
61
+ platformInfraInsertNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").PlatformInfraInsertNodeAtPathPayload, S> | null;
62
62
  }>;
63
- infraSetDataAtPath: <S extends import("./input-types").InfraSetDataAtPathPayloadSelect>(args: import("./mutation").InfraSetDataAtPathVariables, options: {
63
+ platformInfraSetDataAtPath: <S extends import("./input-types").PlatformInfraSetDataAtPathPayloadSelect>(args: import("./mutation").PlatformInfraSetDataAtPathVariables, options: {
64
64
  select: S;
65
- } & import("./select-types").StrictSelect<S, import("./input-types").InfraSetDataAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
66
- infraSetDataAtPath: import("./select-types").InferSelectResult<import("./input-types").InfraSetDataAtPathPayload, S> | null;
65
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformInfraSetDataAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
66
+ platformInfraSetDataAtPath: import("./select-types").InferSelectResult<import("./input-types").PlatformInfraSetDataAtPathPayload, S> | null;
67
67
  }>;
68
68
  provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
69
69
  select: S;