@constructive-sdk/cli 0.29.1 → 0.29.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (199) hide show
  1. package/api/cli/commands/api.js +44 -0
  2. package/api/cli/commands/check-constraint.js +0 -22
  3. package/api/cli/commands/composite-type.js +0 -22
  4. package/api/cli/commands/database-setting.js +44 -0
  5. package/api/cli/commands/domain.js +66 -0
  6. package/api/cli/commands/enum.js +0 -22
  7. package/api/cli/commands/field.js +0 -22
  8. package/api/cli/commands/foreign-key-constraint.js +0 -22
  9. package/api/cli/commands/index.js +0 -22
  10. package/api/cli/commands/policy.js +0 -22
  11. package/api/cli/commands/primary-key-constraint.js +0 -22
  12. package/api/cli/commands/schema.js +0 -22
  13. package/api/cli/commands/site.js +44 -0
  14. package/api/cli/commands/spatial-relation.js +0 -22
  15. package/api/cli/commands/table.js +0 -22
  16. package/api/cli/commands/trigger.js +0 -22
  17. package/api/cli/commands/unique-constraint.js +0 -22
  18. package/api/cli/commands/view.js +0 -22
  19. package/api/orm/input-types.d.ts +144 -171
  20. package/auth/cli/commands/create-org-api-key.d.ts +8 -0
  21. package/auth/cli/commands/create-org-api-key.js +36 -0
  22. package/auth/cli/commands/create-org-principal.d.ts +8 -0
  23. package/auth/cli/commands/create-org-principal.js +36 -0
  24. package/auth/cli/commands/delete-org-principal.d.ts +8 -0
  25. package/auth/cli/commands/delete-org-principal.js +36 -0
  26. package/auth/cli/commands/org-api-key-list.d.ts +8 -0
  27. package/auth/cli/commands/org-api-key-list.js +224 -0
  28. package/auth/cli/commands/principal-entity.d.ts +8 -0
  29. package/auth/cli/commands/principal-entity.js +282 -0
  30. package/auth/cli/commands/principal-scope-override.d.ts +8 -0
  31. package/auth/cli/commands/principal-scope-override.js +171 -0
  32. package/auth/cli/commands/principal.d.ts +8 -0
  33. package/auth/cli/commands/principal.js +171 -0
  34. package/auth/cli/commands/revoke-org-api-key.d.ts +8 -0
  35. package/auth/cli/commands/revoke-org-api-key.js +36 -0
  36. package/auth/cli/commands.js +19 -3
  37. package/auth/cli/executor.d.ts +28 -4
  38. package/auth/orm/index.d.ts +32 -4
  39. package/auth/orm/index.js +8 -0
  40. package/auth/orm/input-types.d.ts +915 -145
  41. package/auth/orm/input-types.js +7 -0
  42. package/auth/orm/models/index.d.ts +4 -0
  43. package/auth/orm/models/index.js +9 -1
  44. package/auth/orm/models/orgApiKeyList.d.ts +36 -0
  45. package/auth/orm/models/orgApiKeyList.js +80 -0
  46. package/auth/orm/models/principal.d.ts +45 -0
  47. package/auth/orm/models/principal.js +93 -0
  48. package/auth/orm/models/principalEntity.d.ts +54 -0
  49. package/auth/orm/models/principalEntity.js +104 -0
  50. package/auth/orm/models/principalScopeOverride.d.ts +36 -0
  51. package/auth/orm/models/principalScopeOverride.js +80 -0
  52. package/auth/orm/mutation/index.d.ts +33 -1
  53. package/auth/orm/mutation/index.js +48 -0
  54. package/auth/orm/query/index.d.ts +4 -4
  55. package/auth/orm/query/index.js +7 -7
  56. package/compute/cli/commands/function-graph-execution.js +0 -22
  57. package/compute/cli/commands/function-graph.js +0 -20
  58. package/compute/cli/commands/platform-namespace-event.d.ts +8 -0
  59. package/compute/cli/commands/platform-namespace-event.js +510 -0
  60. package/compute/cli/commands/platform-namespace.d.ts +8 -0
  61. package/compute/cli/commands/platform-namespace.js +436 -0
  62. package/compute/cli/commands/resource-event.d.ts +8 -0
  63. package/compute/cli/commands/resource-event.js +356 -0
  64. package/compute/cli/commands/resource.d.ts +8 -0
  65. package/compute/cli/commands/resource.js +520 -0
  66. package/compute/cli/commands.js +13 -5
  67. package/compute/cli/executor.d.ts +10 -6
  68. package/compute/orm/index.d.ts +15 -7
  69. package/compute/orm/index.js +10 -2
  70. package/compute/orm/input-types.d.ts +1159 -221
  71. package/compute/orm/input-types.js +4 -0
  72. package/compute/orm/models/index.d.ts +5 -1
  73. package/compute/orm/models/index.js +11 -3
  74. package/compute/orm/models/platformNamespace.d.ts +54 -0
  75. package/compute/orm/models/platformNamespace.js +104 -0
  76. package/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
  77. package/compute/orm/models/platformNamespaceEvent.js +107 -0
  78. package/compute/orm/models/resource.d.ts +54 -0
  79. package/compute/orm/models/resource.js +104 -0
  80. package/compute/orm/models/resourceEvent.d.ts +56 -0
  81. package/compute/orm/models/resourceEvent.js +107 -0
  82. package/compute/orm/mutation/index.d.ts +9 -9
  83. package/compute/orm/mutation/index.js +12 -12
  84. package/esm/api/cli/commands/api.js +44 -0
  85. package/esm/api/cli/commands/check-constraint.js +0 -22
  86. package/esm/api/cli/commands/composite-type.js +0 -22
  87. package/esm/api/cli/commands/database-setting.js +44 -0
  88. package/esm/api/cli/commands/domain.js +66 -0
  89. package/esm/api/cli/commands/enum.js +0 -22
  90. package/esm/api/cli/commands/field.js +0 -22
  91. package/esm/api/cli/commands/foreign-key-constraint.js +0 -22
  92. package/esm/api/cli/commands/index.js +0 -22
  93. package/esm/api/cli/commands/policy.js +0 -22
  94. package/esm/api/cli/commands/primary-key-constraint.js +0 -22
  95. package/esm/api/cli/commands/schema.js +0 -22
  96. package/esm/api/cli/commands/site.js +44 -0
  97. package/esm/api/cli/commands/spatial-relation.js +0 -22
  98. package/esm/api/cli/commands/table.js +0 -22
  99. package/esm/api/cli/commands/trigger.js +0 -22
  100. package/esm/api/cli/commands/unique-constraint.js +0 -22
  101. package/esm/api/cli/commands/view.js +0 -22
  102. package/esm/api/orm/input-types.d.ts +144 -171
  103. package/esm/auth/cli/commands/create-org-api-key.d.ts +8 -0
  104. package/esm/auth/cli/commands/create-org-api-key.js +34 -0
  105. package/esm/auth/cli/commands/create-org-principal.d.ts +8 -0
  106. package/esm/auth/cli/commands/create-org-principal.js +34 -0
  107. package/esm/auth/cli/commands/delete-org-principal.d.ts +8 -0
  108. package/esm/auth/cli/commands/delete-org-principal.js +34 -0
  109. package/esm/auth/cli/commands/org-api-key-list.d.ts +8 -0
  110. package/esm/auth/cli/commands/org-api-key-list.js +222 -0
  111. package/esm/auth/cli/commands/principal-entity.d.ts +8 -0
  112. package/esm/auth/cli/commands/principal-entity.js +280 -0
  113. package/esm/auth/cli/commands/principal-scope-override.d.ts +8 -0
  114. package/esm/auth/cli/commands/principal-scope-override.js +169 -0
  115. package/esm/auth/cli/commands/principal.d.ts +8 -0
  116. package/esm/auth/cli/commands/principal.js +169 -0
  117. package/esm/auth/cli/commands/revoke-org-api-key.d.ts +8 -0
  118. package/esm/auth/cli/commands/revoke-org-api-key.js +34 -0
  119. package/esm/auth/cli/commands.js +19 -3
  120. package/esm/auth/cli/executor.d.ts +28 -4
  121. package/esm/auth/orm/index.d.ts +32 -4
  122. package/esm/auth/orm/index.js +8 -0
  123. package/esm/auth/orm/input-types.d.ts +915 -145
  124. package/esm/auth/orm/input-types.js +7 -0
  125. package/esm/auth/orm/models/index.d.ts +4 -0
  126. package/esm/auth/orm/models/index.js +4 -0
  127. package/esm/auth/orm/models/orgApiKeyList.d.ts +36 -0
  128. package/esm/auth/orm/models/orgApiKeyList.js +76 -0
  129. package/esm/auth/orm/models/principal.d.ts +45 -0
  130. package/esm/auth/orm/models/principal.js +89 -0
  131. package/esm/auth/orm/models/principalEntity.d.ts +54 -0
  132. package/esm/auth/orm/models/principalEntity.js +100 -0
  133. package/esm/auth/orm/models/principalScopeOverride.d.ts +36 -0
  134. package/esm/auth/orm/models/principalScopeOverride.js +76 -0
  135. package/esm/auth/orm/mutation/index.d.ts +33 -1
  136. package/esm/auth/orm/mutation/index.js +48 -0
  137. package/esm/auth/orm/query/index.d.ts +4 -4
  138. package/esm/auth/orm/query/index.js +7 -7
  139. package/esm/compute/cli/commands/function-graph-execution.js +0 -22
  140. package/esm/compute/cli/commands/function-graph.js +0 -20
  141. package/esm/compute/cli/commands/platform-namespace-event.d.ts +8 -0
  142. package/esm/compute/cli/commands/platform-namespace-event.js +508 -0
  143. package/esm/compute/cli/commands/platform-namespace.d.ts +8 -0
  144. package/esm/compute/cli/commands/platform-namespace.js +434 -0
  145. package/esm/compute/cli/commands/resource-event.d.ts +8 -0
  146. package/esm/compute/cli/commands/resource-event.js +354 -0
  147. package/esm/compute/cli/commands/resource.d.ts +8 -0
  148. package/esm/compute/cli/commands/resource.js +518 -0
  149. package/esm/compute/cli/commands.js +13 -5
  150. package/esm/compute/cli/executor.d.ts +10 -6
  151. package/esm/compute/orm/index.d.ts +15 -7
  152. package/esm/compute/orm/index.js +10 -2
  153. package/esm/compute/orm/input-types.d.ts +1159 -221
  154. package/esm/compute/orm/input-types.js +4 -0
  155. package/esm/compute/orm/models/index.d.ts +5 -1
  156. package/esm/compute/orm/models/index.js +5 -1
  157. package/esm/compute/orm/models/platformNamespace.d.ts +54 -0
  158. package/esm/compute/orm/models/platformNamespace.js +100 -0
  159. package/esm/compute/orm/models/platformNamespaceEvent.d.ts +56 -0
  160. package/esm/compute/orm/models/platformNamespaceEvent.js +103 -0
  161. package/esm/compute/orm/models/resource.d.ts +54 -0
  162. package/esm/compute/orm/models/resource.js +100 -0
  163. package/esm/compute/orm/models/resourceEvent.d.ts +56 -0
  164. package/esm/compute/orm/models/resourceEvent.js +103 -0
  165. package/esm/compute/orm/mutation/index.d.ts +9 -9
  166. package/esm/compute/orm/mutation/index.js +12 -12
  167. package/esm/modules/cli/commands/merkle-store-module.js +22 -0
  168. package/esm/modules/cli/commands/principal-auth-module.d.ts +8 -0
  169. package/esm/modules/cli/commands/principal-auth-module.js +580 -0
  170. package/esm/modules/cli/commands/resource-module.d.ts +8 -0
  171. package/esm/modules/cli/commands/resource-module.js +602 -0
  172. package/esm/modules/cli/commands.js +9 -5
  173. package/esm/modules/cli/executor.d.ts +4 -2
  174. package/esm/modules/orm/index.d.ts +8 -4
  175. package/esm/modules/orm/index.js +8 -4
  176. package/esm/modules/orm/input-types.d.ts +868 -411
  177. package/esm/modules/orm/models/index.d.ts +4 -2
  178. package/esm/modules/orm/models/index.js +4 -2
  179. package/esm/modules/orm/models/principalAuthModule.d.ts +54 -0
  180. package/esm/modules/orm/models/principalAuthModule.js +100 -0
  181. package/esm/modules/orm/models/resourceModule.d.ts +54 -0
  182. package/esm/modules/orm/models/resourceModule.js +100 -0
  183. package/modules/cli/commands/merkle-store-module.js +22 -0
  184. package/modules/cli/commands/principal-auth-module.d.ts +8 -0
  185. package/modules/cli/commands/principal-auth-module.js +582 -0
  186. package/modules/cli/commands/resource-module.d.ts +8 -0
  187. package/modules/cli/commands/resource-module.js +604 -0
  188. package/modules/cli/commands.js +9 -5
  189. package/modules/cli/executor.d.ts +4 -2
  190. package/modules/orm/index.d.ts +8 -4
  191. package/modules/orm/index.js +8 -4
  192. package/modules/orm/input-types.d.ts +868 -411
  193. package/modules/orm/models/index.d.ts +4 -2
  194. package/modules/orm/models/index.js +10 -6
  195. package/modules/orm/models/principalAuthModule.d.ts +54 -0
  196. package/modules/orm/models/principalAuthModule.js +104 -0
  197. package/modules/orm/models/resourceModule.d.ts +54 -0
  198. package/modules/orm/models/resourceModule.js +104 -0
  199. package/package.json +4 -4
@@ -3,6 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.connectionFieldsMap = void 0;
4
4
  // ============ Connection Fields Map ============
5
5
  exports.connectionFieldsMap = {
6
+ PlatformNamespace: {
7
+ functionDeploymentsByNamespaceId: 'FunctionDeployment',
8
+ resourcesByNamespaceId: 'Resource',
9
+ },
6
10
  FunctionDefinition: {
7
11
  functionApiBindings: 'FunctionApiBinding',
8
12
  functionDeployments: 'FunctionDeployment',
@@ -6,18 +6,22 @@
6
6
  export { GetAllRecordModel } from './getAllRecord';
7
7
  export { FunctionApiBindingModel } from './functionApiBinding';
8
8
  export { FunctionDeploymentModel } from './functionDeployment';
9
+ export { ResourceModel } from './resource';
9
10
  export { FunctionGraphRefModel } from './functionGraphRef';
10
11
  export { FunctionGraphStoreModel } from './functionGraphStore';
11
12
  export { FunctionGraphObjectModel } from './functionGraphObject';
12
13
  export { FunctionDeploymentEventModel } from './functionDeploymentEvent';
13
14
  export { OrgFunctionExecutionLogModel } from './orgFunctionExecutionLog';
15
+ export { ResourceEventModel } from './resourceEvent';
14
16
  export { FunctionGraphExecutionOutputModel } from './functionGraphExecutionOutput';
15
17
  export { FunctionGraphCommitModel } from './functionGraphCommit';
16
18
  export { SecretDefinitionModel } from './secretDefinition';
17
19
  export { FunctionExecutionLogModel } from './functionExecutionLog';
18
- export { FunctionGraphExecutionNodeStateModel } from './functionGraphExecutionNodeState';
19
20
  export { FunctionGraphModel } from './functionGraph';
21
+ export { FunctionGraphExecutionNodeStateModel } from './functionGraphExecutionNodeState';
22
+ export { PlatformNamespaceModel } from './platformNamespace';
20
23
  export { OrgFunctionInvocationModel } from './orgFunctionInvocation';
21
24
  export { FunctionInvocationModel } from './functionInvocation';
25
+ export { PlatformNamespaceEventModel } from './platformNamespaceEvent';
22
26
  export { FunctionGraphExecutionModel } from './functionGraphExecution';
23
27
  export { FunctionDefinitionModel } from './functionDefinition';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FunctionDefinitionModel = exports.FunctionGraphExecutionModel = exports.FunctionInvocationModel = exports.OrgFunctionInvocationModel = exports.FunctionGraphModel = exports.FunctionGraphExecutionNodeStateModel = exports.FunctionExecutionLogModel = exports.SecretDefinitionModel = exports.FunctionGraphCommitModel = exports.FunctionGraphExecutionOutputModel = exports.OrgFunctionExecutionLogModel = exports.FunctionDeploymentEventModel = exports.FunctionGraphObjectModel = exports.FunctionGraphStoreModel = exports.FunctionGraphRefModel = exports.FunctionDeploymentModel = exports.FunctionApiBindingModel = exports.GetAllRecordModel = void 0;
3
+ exports.FunctionDefinitionModel = exports.FunctionGraphExecutionModel = exports.PlatformNamespaceEventModel = exports.FunctionInvocationModel = exports.OrgFunctionInvocationModel = exports.PlatformNamespaceModel = exports.FunctionGraphExecutionNodeStateModel = exports.FunctionGraphModel = exports.FunctionExecutionLogModel = exports.SecretDefinitionModel = exports.FunctionGraphCommitModel = exports.FunctionGraphExecutionOutputModel = exports.ResourceEventModel = exports.OrgFunctionExecutionLogModel = exports.FunctionDeploymentEventModel = exports.FunctionGraphObjectModel = exports.FunctionGraphStoreModel = exports.FunctionGraphRefModel = exports.ResourceModel = exports.FunctionDeploymentModel = exports.FunctionApiBindingModel = exports.GetAllRecordModel = void 0;
4
4
  /**
5
5
  * Models barrel export
6
6
  * @generated by @constructive-io/graphql-codegen
@@ -12,6 +12,8 @@ var functionApiBinding_1 = require("./functionApiBinding");
12
12
  Object.defineProperty(exports, "FunctionApiBindingModel", { enumerable: true, get: function () { return functionApiBinding_1.FunctionApiBindingModel; } });
13
13
  var functionDeployment_1 = require("./functionDeployment");
14
14
  Object.defineProperty(exports, "FunctionDeploymentModel", { enumerable: true, get: function () { return functionDeployment_1.FunctionDeploymentModel; } });
15
+ var resource_1 = require("./resource");
16
+ Object.defineProperty(exports, "ResourceModel", { enumerable: true, get: function () { return resource_1.ResourceModel; } });
15
17
  var functionGraphRef_1 = require("./functionGraphRef");
16
18
  Object.defineProperty(exports, "FunctionGraphRefModel", { enumerable: true, get: function () { return functionGraphRef_1.FunctionGraphRefModel; } });
17
19
  var functionGraphStore_1 = require("./functionGraphStore");
@@ -22,6 +24,8 @@ var functionDeploymentEvent_1 = require("./functionDeploymentEvent");
22
24
  Object.defineProperty(exports, "FunctionDeploymentEventModel", { enumerable: true, get: function () { return functionDeploymentEvent_1.FunctionDeploymentEventModel; } });
23
25
  var orgFunctionExecutionLog_1 = require("./orgFunctionExecutionLog");
24
26
  Object.defineProperty(exports, "OrgFunctionExecutionLogModel", { enumerable: true, get: function () { return orgFunctionExecutionLog_1.OrgFunctionExecutionLogModel; } });
27
+ var resourceEvent_1 = require("./resourceEvent");
28
+ Object.defineProperty(exports, "ResourceEventModel", { enumerable: true, get: function () { return resourceEvent_1.ResourceEventModel; } });
25
29
  var functionGraphExecutionOutput_1 = require("./functionGraphExecutionOutput");
26
30
  Object.defineProperty(exports, "FunctionGraphExecutionOutputModel", { enumerable: true, get: function () { return functionGraphExecutionOutput_1.FunctionGraphExecutionOutputModel; } });
27
31
  var functionGraphCommit_1 = require("./functionGraphCommit");
@@ -30,14 +34,18 @@ var secretDefinition_1 = require("./secretDefinition");
30
34
  Object.defineProperty(exports, "SecretDefinitionModel", { enumerable: true, get: function () { return secretDefinition_1.SecretDefinitionModel; } });
31
35
  var functionExecutionLog_1 = require("./functionExecutionLog");
32
36
  Object.defineProperty(exports, "FunctionExecutionLogModel", { enumerable: true, get: function () { return functionExecutionLog_1.FunctionExecutionLogModel; } });
33
- var functionGraphExecutionNodeState_1 = require("./functionGraphExecutionNodeState");
34
- Object.defineProperty(exports, "FunctionGraphExecutionNodeStateModel", { enumerable: true, get: function () { return functionGraphExecutionNodeState_1.FunctionGraphExecutionNodeStateModel; } });
35
37
  var functionGraph_1 = require("./functionGraph");
36
38
  Object.defineProperty(exports, "FunctionGraphModel", { enumerable: true, get: function () { return functionGraph_1.FunctionGraphModel; } });
39
+ var functionGraphExecutionNodeState_1 = require("./functionGraphExecutionNodeState");
40
+ Object.defineProperty(exports, "FunctionGraphExecutionNodeStateModel", { enumerable: true, get: function () { return functionGraphExecutionNodeState_1.FunctionGraphExecutionNodeStateModel; } });
41
+ var platformNamespace_1 = require("./platformNamespace");
42
+ Object.defineProperty(exports, "PlatformNamespaceModel", { enumerable: true, get: function () { return platformNamespace_1.PlatformNamespaceModel; } });
37
43
  var orgFunctionInvocation_1 = require("./orgFunctionInvocation");
38
44
  Object.defineProperty(exports, "OrgFunctionInvocationModel", { enumerable: true, get: function () { return orgFunctionInvocation_1.OrgFunctionInvocationModel; } });
39
45
  var functionInvocation_1 = require("./functionInvocation");
40
46
  Object.defineProperty(exports, "FunctionInvocationModel", { enumerable: true, get: function () { return functionInvocation_1.FunctionInvocationModel; } });
47
+ var platformNamespaceEvent_1 = require("./platformNamespaceEvent");
48
+ Object.defineProperty(exports, "PlatformNamespaceEventModel", { enumerable: true, get: function () { return platformNamespaceEvent_1.PlatformNamespaceEventModel; } });
41
49
  var functionGraphExecution_1 = require("./functionGraphExecution");
42
50
  Object.defineProperty(exports, "FunctionGraphExecutionModel", { enumerable: true, get: function () { return functionGraphExecution_1.FunctionGraphExecutionModel; } });
43
51
  var functionDefinition_1 = require("./functionDefinition");
@@ -0,0 +1,54 @@
1
+ /**
2
+ * PlatformNamespace 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 { PlatformNamespaceWithRelations, PlatformNamespaceSelect, PlatformNamespaceFilter, PlatformNamespaceOrderBy, CreatePlatformNamespaceInput, PlatformNamespacePatch } from '../input-types';
10
+ export declare class PlatformNamespaceModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends PlatformNamespaceSelect>(args: FindManyArgs<S, PlatformNamespaceFilter, PlatformNamespaceOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, PlatformNamespaceSelect>): QueryBuilder<{
16
+ platformNamespaces: ConnectionResult<InferSelectResult<PlatformNamespaceWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends PlatformNamespaceSelect>(args: FindFirstArgs<S, PlatformNamespaceFilter, PlatformNamespaceOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, PlatformNamespaceSelect>): QueryBuilder<{
21
+ platformNamespace: InferSelectResult<PlatformNamespaceWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends PlatformNamespaceSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, PlatformNamespaceSelect>): QueryBuilder<{
27
+ platformNamespace: InferSelectResult<PlatformNamespaceWithRelations, S> | null;
28
+ }>;
29
+ create<S extends PlatformNamespaceSelect>(args: CreateArgs<S, CreatePlatformNamespaceInput['platformNamespace']> & {
30
+ select: S;
31
+ } & StrictSelect<S, PlatformNamespaceSelect>): QueryBuilder<{
32
+ createPlatformNamespace: {
33
+ platformNamespace: InferSelectResult<PlatformNamespaceWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends PlatformNamespaceSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, PlatformNamespacePatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, PlatformNamespaceSelect>): QueryBuilder<{
41
+ updatePlatformNamespace: {
42
+ platformNamespace: InferSelectResult<PlatformNamespaceWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends PlatformNamespaceSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, PlatformNamespaceSelect>): QueryBuilder<{
50
+ deletePlatformNamespace: {
51
+ platformNamespace: InferSelectResult<PlatformNamespaceWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PlatformNamespaceModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class PlatformNamespaceModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('PlatformNamespace', 'platformNamespaces', 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
+ }, 'PlatformNamespaceFilter', 'PlatformNamespaceOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'PlatformNamespace',
25
+ fieldName: 'platformNamespaces',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('PlatformNamespace', 'platformNamespaces', args.select, {
32
+ where: args?.where,
33
+ orderBy: args?.orderBy,
34
+ }, 'PlatformNamespaceFilter', 'PlatformNamespaceOrderBy', input_types_1.connectionFieldsMap);
35
+ return new query_builder_1.QueryBuilder({
36
+ client: this.client,
37
+ operation: 'query',
38
+ operationName: 'PlatformNamespace',
39
+ fieldName: 'platformNamespace',
40
+ document,
41
+ variables,
42
+ transform: (data) => ({
43
+ platformNamespace: data.platformNamespaces?.nodes?.[0] ?? null,
44
+ }),
45
+ });
46
+ }
47
+ findOne(args) {
48
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('PlatformNamespace', 'platformNamespaces', args.select, {
49
+ where: {
50
+ id: {
51
+ equalTo: args.id,
52
+ },
53
+ },
54
+ first: 1,
55
+ }, 'PlatformNamespaceFilter', 'PlatformNamespaceOrderBy', input_types_1.connectionFieldsMap);
56
+ return new query_builder_1.QueryBuilder({
57
+ client: this.client,
58
+ operation: 'query',
59
+ operationName: 'PlatformNamespace',
60
+ fieldName: 'platformNamespace',
61
+ document,
62
+ variables,
63
+ transform: (data) => ({
64
+ platformNamespace: data.platformNamespaces?.nodes?.[0] ?? null,
65
+ }),
66
+ });
67
+ }
68
+ create(args) {
69
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('PlatformNamespace', 'createPlatformNamespace', 'platformNamespace', args.select, args.data, 'CreatePlatformNamespaceInput', input_types_1.connectionFieldsMap);
70
+ return new query_builder_1.QueryBuilder({
71
+ client: this.client,
72
+ operation: 'mutation',
73
+ operationName: 'PlatformNamespace',
74
+ fieldName: 'createPlatformNamespace',
75
+ document,
76
+ variables,
77
+ });
78
+ }
79
+ update(args) {
80
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('PlatformNamespace', 'updatePlatformNamespace', 'platformNamespace', args.select, args.where.id, args.data, 'UpdatePlatformNamespaceInput', 'id', 'platformNamespacePatch', input_types_1.connectionFieldsMap, undefined);
81
+ return new query_builder_1.QueryBuilder({
82
+ client: this.client,
83
+ operation: 'mutation',
84
+ operationName: 'PlatformNamespace',
85
+ fieldName: 'updatePlatformNamespace',
86
+ document,
87
+ variables,
88
+ });
89
+ }
90
+ delete(args) {
91
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('PlatformNamespace', 'deletePlatformNamespace', 'platformNamespace', {
92
+ id: args.where.id,
93
+ }, 'DeletePlatformNamespaceInput', args.select, input_types_1.connectionFieldsMap);
94
+ return new query_builder_1.QueryBuilder({
95
+ client: this.client,
96
+ operation: 'mutation',
97
+ operationName: 'PlatformNamespace',
98
+ fieldName: 'deletePlatformNamespace',
99
+ document,
100
+ variables,
101
+ });
102
+ }
103
+ }
104
+ exports.PlatformNamespaceModel = PlatformNamespaceModel;
@@ -0,0 +1,56 @@
1
+ /**
2
+ * PlatformNamespaceEvent 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 { PlatformNamespaceEventWithRelations, PlatformNamespaceEventSelect, PlatformNamespaceEventFilter, PlatformNamespaceEventOrderBy, CreatePlatformNamespaceEventInput, PlatformNamespaceEventPatch } from '../input-types';
10
+ export declare class PlatformNamespaceEventModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends PlatformNamespaceEventSelect>(args: FindManyArgs<S, PlatformNamespaceEventFilter, PlatformNamespaceEventOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, PlatformNamespaceEventSelect>): QueryBuilder<{
16
+ platformNamespaceEvents: ConnectionResult<InferSelectResult<PlatformNamespaceEventWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends PlatformNamespaceEventSelect>(args: FindFirstArgs<S, PlatformNamespaceEventFilter, PlatformNamespaceEventOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, PlatformNamespaceEventSelect>): QueryBuilder<{
21
+ platformNamespaceEvent: InferSelectResult<PlatformNamespaceEventWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends PlatformNamespaceEventSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, PlatformNamespaceEventSelect>): QueryBuilder<{
27
+ platformNamespaceEvent: InferSelectResult<PlatformNamespaceEventWithRelations, S> | null;
28
+ }>;
29
+ create<S extends PlatformNamespaceEventSelect>(args: CreateArgs<S, CreatePlatformNamespaceEventInput['platformNamespaceEvent']> & {
30
+ select: S;
31
+ } & StrictSelect<S, PlatformNamespaceEventSelect>): QueryBuilder<{
32
+ createPlatformNamespaceEvent: {
33
+ platformNamespaceEvent: InferSelectResult<PlatformNamespaceEventWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends PlatformNamespaceEventSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ createdAt: string;
39
+ }, PlatformNamespaceEventPatch> & {
40
+ select: S;
41
+ } & StrictSelect<S, PlatformNamespaceEventSelect>): QueryBuilder<{
42
+ updatePlatformNamespaceEvent: {
43
+ platformNamespaceEvent: InferSelectResult<PlatformNamespaceEventWithRelations, S>;
44
+ };
45
+ }>;
46
+ delete<S extends PlatformNamespaceEventSelect>(args: DeleteArgs<{
47
+ id: string;
48
+ createdAt: string;
49
+ }, S> & {
50
+ select: S;
51
+ } & StrictSelect<S, PlatformNamespaceEventSelect>): QueryBuilder<{
52
+ deletePlatformNamespaceEvent: {
53
+ platformNamespaceEvent: InferSelectResult<PlatformNamespaceEventWithRelations, S>;
54
+ };
55
+ }>;
56
+ }
@@ -0,0 +1,107 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PlatformNamespaceEventModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class PlatformNamespaceEventModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('PlatformNamespaceEvent', 'platformNamespaceEvents', 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
+ }, 'PlatformNamespaceEventFilter', 'PlatformNamespaceEventOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'PlatformNamespaceEvent',
25
+ fieldName: 'platformNamespaceEvents',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('PlatformNamespaceEvent', 'platformNamespaceEvents', args.select, {
32
+ where: args?.where,
33
+ orderBy: args?.orderBy,
34
+ }, 'PlatformNamespaceEventFilter', 'PlatformNamespaceEventOrderBy', input_types_1.connectionFieldsMap);
35
+ return new query_builder_1.QueryBuilder({
36
+ client: this.client,
37
+ operation: 'query',
38
+ operationName: 'PlatformNamespaceEvent',
39
+ fieldName: 'platformNamespaceEvent',
40
+ document,
41
+ variables,
42
+ transform: (data) => ({
43
+ platformNamespaceEvent: data.platformNamespaceEvents?.nodes?.[0] ?? null,
44
+ }),
45
+ });
46
+ }
47
+ findOne(args) {
48
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('PlatformNamespaceEvent', 'platformNamespaceEvents', args.select, {
49
+ where: {
50
+ id: {
51
+ equalTo: args.id,
52
+ },
53
+ },
54
+ first: 1,
55
+ }, 'PlatformNamespaceEventFilter', 'PlatformNamespaceEventOrderBy', input_types_1.connectionFieldsMap);
56
+ return new query_builder_1.QueryBuilder({
57
+ client: this.client,
58
+ operation: 'query',
59
+ operationName: 'PlatformNamespaceEvent',
60
+ fieldName: 'platformNamespaceEvent',
61
+ document,
62
+ variables,
63
+ transform: (data) => ({
64
+ platformNamespaceEvent: data.platformNamespaceEvents?.nodes?.[0] ?? null,
65
+ }),
66
+ });
67
+ }
68
+ create(args) {
69
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('PlatformNamespaceEvent', 'createPlatformNamespaceEvent', 'platformNamespaceEvent', args.select, args.data, 'CreatePlatformNamespaceEventInput', input_types_1.connectionFieldsMap);
70
+ return new query_builder_1.QueryBuilder({
71
+ client: this.client,
72
+ operation: 'mutation',
73
+ operationName: 'PlatformNamespaceEvent',
74
+ fieldName: 'createPlatformNamespaceEvent',
75
+ document,
76
+ variables,
77
+ });
78
+ }
79
+ update(args) {
80
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('PlatformNamespaceEvent', 'updatePlatformNamespaceEvent', 'platformNamespaceEvent', args.select, args.where.id, args.data, 'UpdatePlatformNamespaceEventInput', 'id', 'platformNamespaceEventPatch', input_types_1.connectionFieldsMap, {
81
+ createdAt: args.where.createdAt,
82
+ });
83
+ return new query_builder_1.QueryBuilder({
84
+ client: this.client,
85
+ operation: 'mutation',
86
+ operationName: 'PlatformNamespaceEvent',
87
+ fieldName: 'updatePlatformNamespaceEvent',
88
+ document,
89
+ variables,
90
+ });
91
+ }
92
+ delete(args) {
93
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('PlatformNamespaceEvent', 'deletePlatformNamespaceEvent', 'platformNamespaceEvent', {
94
+ id: args.where.id,
95
+ createdAt: args.where.createdAt,
96
+ }, 'DeletePlatformNamespaceEventInput', args.select, input_types_1.connectionFieldsMap);
97
+ return new query_builder_1.QueryBuilder({
98
+ client: this.client,
99
+ operation: 'mutation',
100
+ operationName: 'PlatformNamespaceEvent',
101
+ fieldName: 'deletePlatformNamespaceEvent',
102
+ document,
103
+ variables,
104
+ });
105
+ }
106
+ }
107
+ exports.PlatformNamespaceEventModel = PlatformNamespaceEventModel;
@@ -0,0 +1,54 @@
1
+ /**
2
+ * Resource 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 { ResourceWithRelations, ResourceSelect, ResourceFilter, ResourceOrderBy, CreateResourceInput, ResourcePatch } from '../input-types';
10
+ export declare class ResourceModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends ResourceSelect>(args: FindManyArgs<S, ResourceFilter, ResourceOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, ResourceSelect>): QueryBuilder<{
16
+ resources: ConnectionResult<InferSelectResult<ResourceWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends ResourceSelect>(args: FindFirstArgs<S, ResourceFilter, ResourceOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, ResourceSelect>): QueryBuilder<{
21
+ resource: InferSelectResult<ResourceWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends ResourceSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, ResourceSelect>): QueryBuilder<{
27
+ resource: InferSelectResult<ResourceWithRelations, S> | null;
28
+ }>;
29
+ create<S extends ResourceSelect>(args: CreateArgs<S, CreateResourceInput['resource']> & {
30
+ select: S;
31
+ } & StrictSelect<S, ResourceSelect>): QueryBuilder<{
32
+ createResource: {
33
+ resource: InferSelectResult<ResourceWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends ResourceSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, ResourcePatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, ResourceSelect>): QueryBuilder<{
41
+ updateResource: {
42
+ resource: InferSelectResult<ResourceWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends ResourceSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, ResourceSelect>): QueryBuilder<{
50
+ deleteResource: {
51
+ resource: InferSelectResult<ResourceWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResourceModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class ResourceModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('Resource', 'resources', 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
+ }, 'ResourceFilter', 'ResourceOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'Resource',
25
+ fieldName: 'resources',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('Resource', 'resources', args.select, {
32
+ where: args?.where,
33
+ orderBy: args?.orderBy,
34
+ }, 'ResourceFilter', 'ResourceOrderBy', input_types_1.connectionFieldsMap);
35
+ return new query_builder_1.QueryBuilder({
36
+ client: this.client,
37
+ operation: 'query',
38
+ operationName: 'Resource',
39
+ fieldName: 'resource',
40
+ document,
41
+ variables,
42
+ transform: (data) => ({
43
+ resource: data.resources?.nodes?.[0] ?? null,
44
+ }),
45
+ });
46
+ }
47
+ findOne(args) {
48
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('Resource', 'resources', args.select, {
49
+ where: {
50
+ id: {
51
+ equalTo: args.id,
52
+ },
53
+ },
54
+ first: 1,
55
+ }, 'ResourceFilter', 'ResourceOrderBy', input_types_1.connectionFieldsMap);
56
+ return new query_builder_1.QueryBuilder({
57
+ client: this.client,
58
+ operation: 'query',
59
+ operationName: 'Resource',
60
+ fieldName: 'resource',
61
+ document,
62
+ variables,
63
+ transform: (data) => ({
64
+ resource: data.resources?.nodes?.[0] ?? null,
65
+ }),
66
+ });
67
+ }
68
+ create(args) {
69
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('Resource', 'createResource', 'resource', args.select, args.data, 'CreateResourceInput', input_types_1.connectionFieldsMap);
70
+ return new query_builder_1.QueryBuilder({
71
+ client: this.client,
72
+ operation: 'mutation',
73
+ operationName: 'Resource',
74
+ fieldName: 'createResource',
75
+ document,
76
+ variables,
77
+ });
78
+ }
79
+ update(args) {
80
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('Resource', 'updateResource', 'resource', args.select, args.where.id, args.data, 'UpdateResourceInput', 'id', 'resourcePatch', input_types_1.connectionFieldsMap, undefined);
81
+ return new query_builder_1.QueryBuilder({
82
+ client: this.client,
83
+ operation: 'mutation',
84
+ operationName: 'Resource',
85
+ fieldName: 'updateResource',
86
+ document,
87
+ variables,
88
+ });
89
+ }
90
+ delete(args) {
91
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('Resource', 'deleteResource', 'resource', {
92
+ id: args.where.id,
93
+ }, 'DeleteResourceInput', args.select, input_types_1.connectionFieldsMap);
94
+ return new query_builder_1.QueryBuilder({
95
+ client: this.client,
96
+ operation: 'mutation',
97
+ operationName: 'Resource',
98
+ fieldName: 'deleteResource',
99
+ document,
100
+ variables,
101
+ });
102
+ }
103
+ }
104
+ exports.ResourceModel = ResourceModel;
@@ -0,0 +1,56 @@
1
+ /**
2
+ * ResourceEvent 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 { ResourceEventWithRelations, ResourceEventSelect, ResourceEventFilter, ResourceEventOrderBy, CreateResourceEventInput, ResourceEventPatch } from '../input-types';
10
+ export declare class ResourceEventModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends ResourceEventSelect>(args: FindManyArgs<S, ResourceEventFilter, ResourceEventOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, ResourceEventSelect>): QueryBuilder<{
16
+ resourceEvents: ConnectionResult<InferSelectResult<ResourceEventWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends ResourceEventSelect>(args: FindFirstArgs<S, ResourceEventFilter, ResourceEventOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, ResourceEventSelect>): QueryBuilder<{
21
+ resourceEvent: InferSelectResult<ResourceEventWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends ResourceEventSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, ResourceEventSelect>): QueryBuilder<{
27
+ resourceEvent: InferSelectResult<ResourceEventWithRelations, S> | null;
28
+ }>;
29
+ create<S extends ResourceEventSelect>(args: CreateArgs<S, CreateResourceEventInput['resourceEvent']> & {
30
+ select: S;
31
+ } & StrictSelect<S, ResourceEventSelect>): QueryBuilder<{
32
+ createResourceEvent: {
33
+ resourceEvent: InferSelectResult<ResourceEventWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends ResourceEventSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ createdAt: string;
39
+ }, ResourceEventPatch> & {
40
+ select: S;
41
+ } & StrictSelect<S, ResourceEventSelect>): QueryBuilder<{
42
+ updateResourceEvent: {
43
+ resourceEvent: InferSelectResult<ResourceEventWithRelations, S>;
44
+ };
45
+ }>;
46
+ delete<S extends ResourceEventSelect>(args: DeleteArgs<{
47
+ id: string;
48
+ createdAt: string;
49
+ }, S> & {
50
+ select: S;
51
+ } & StrictSelect<S, ResourceEventSelect>): QueryBuilder<{
52
+ deleteResourceEvent: {
53
+ resourceEvent: InferSelectResult<ResourceEventWithRelations, S>;
54
+ };
55
+ }>;
56
+ }