@autobe/agent 0.27.0 → 0.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/lib/constants/AutoBeSystemPromptConstant.d.ts +1 -1
  2. package/lib/context/assertSchemaModel.d.ts +1 -1
  3. package/lib/context/assertSchemaModel.js +4 -7
  4. package/lib/context/assertSchemaModel.js.map +1 -1
  5. package/lib/index.mjs +18395 -8004
  6. package/lib/index.mjs.map +1 -1
  7. package/lib/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.js +1 -1
  8. package/lib/orchestrate/analyze/histories/transformAnalyzeScenarioHistories.js.map +1 -1
  9. package/lib/orchestrate/analyze/orchestrateAnalyzeReview.js +164 -86
  10. package/lib/orchestrate/analyze/orchestrateAnalyzeReview.js.map +1 -1
  11. package/lib/orchestrate/analyze/orchestrateAnalyzeScenario.js +637 -321
  12. package/lib/orchestrate/analyze/orchestrateAnalyzeScenario.js.map +1 -1
  13. package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.js +143 -74
  14. package/lib/orchestrate/analyze/orchestrateAnalyzeWrite.js.map +1 -1
  15. package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeReviewApplication.d.ts +17 -52
  16. package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeScenarioApplication.d.ts +25 -22
  17. package/lib/orchestrate/analyze/structures/IAutoBeAnalyzeWriteApplication.d.ts +7 -23
  18. package/lib/orchestrate/common/orchestrateCommonCorrectCasting.js +165 -2
  19. package/lib/orchestrate/common/orchestrateCommonCorrectCasting.js.map +1 -1
  20. package/lib/orchestrate/facade/createAutoBeFacadeController.js +773 -403
  21. package/lib/orchestrate/facade/createAutoBeFacadeController.js.map +1 -1
  22. package/lib/orchestrate/interface/orchestrateInterfaceAuthorizations.js +739 -2
  23. package/lib/orchestrate/interface/orchestrateInterfaceAuthorizations.js.map +1 -1
  24. package/lib/orchestrate/interface/orchestrateInterfaceComplement.js +1625 -9
  25. package/lib/orchestrate/interface/orchestrateInterfaceComplement.js.map +1 -1
  26. package/lib/orchestrate/interface/orchestrateInterfaceEndpoints.js +248 -131
  27. package/lib/orchestrate/interface/orchestrateInterfaceEndpoints.js.map +1 -1
  28. package/lib/orchestrate/interface/orchestrateInterfaceEndpointsReview.js +255 -133
  29. package/lib/orchestrate/interface/orchestrateInterfaceEndpointsReview.js.map +1 -1
  30. package/lib/orchestrate/interface/orchestrateInterfaceGroups.js +339 -226
  31. package/lib/orchestrate/interface/orchestrateInterfaceGroups.js.map +1 -1
  32. package/lib/orchestrate/interface/orchestrateInterfaceOperations.js +625 -1
  33. package/lib/orchestrate/interface/orchestrateInterfaceOperations.js.map +1 -1
  34. package/lib/orchestrate/interface/orchestrateInterfaceOperationsReview.js +776 -3
  35. package/lib/orchestrate/interface/orchestrateInterfaceOperationsReview.js.map +1 -1
  36. package/lib/orchestrate/interface/orchestrateInterfacePrerequisites.js +205 -3
  37. package/lib/orchestrate/interface/orchestrateInterfacePrerequisites.js.map +1 -1
  38. package/lib/orchestrate/interface/orchestrateInterfaceSchemaRename.js +107 -1
  39. package/lib/orchestrate/interface/orchestrateInterfaceSchemaRename.js.map +1 -1
  40. package/lib/orchestrate/interface/orchestrateInterfaceSchemaReview.js +1664 -9
  41. package/lib/orchestrate/interface/orchestrateInterfaceSchemaReview.js.map +1 -1
  42. package/lib/orchestrate/interface/orchestrateInterfaceSchemas.js +1625 -9
  43. package/lib/orchestrate/interface/orchestrateInterfaceSchemas.js.map +1 -1
  44. package/lib/orchestrate/prisma/orchestratePrismaComponent.js +389 -196
  45. package/lib/orchestrate/prisma/orchestratePrismaComponent.js.map +1 -1
  46. package/lib/orchestrate/prisma/orchestratePrismaCorrect.js +1166 -590
  47. package/lib/orchestrate/prisma/orchestratePrismaCorrect.js.map +1 -1
  48. package/lib/orchestrate/prisma/orchestratePrismaReview.js +1184 -599
  49. package/lib/orchestrate/prisma/orchestratePrismaReview.js.map +1 -1
  50. package/lib/orchestrate/prisma/orchestratePrismaSchemas.js +4 -2
  51. package/lib/orchestrate/prisma/orchestratePrismaSchemas.js.map +1 -1
  52. package/lib/orchestrate/realize/orchestrateRealizeAuthorization.js +360 -179
  53. package/lib/orchestrate/realize/orchestrateRealizeAuthorization.js.map +1 -1
  54. package/lib/orchestrate/realize/orchestrateRealizeAuthorizationCorrect.js +396 -197
  55. package/lib/orchestrate/realize/orchestrateRealizeAuthorizationCorrect.js.map +1 -1
  56. package/lib/orchestrate/realize/orchestrateRealizeCorrect.js +130 -2
  57. package/lib/orchestrate/realize/orchestrateRealizeCorrect.js.map +1 -1
  58. package/lib/orchestrate/realize/orchestrateRealizeCorrectCasting.js +165 -2
  59. package/lib/orchestrate/realize/orchestrateRealizeCorrectCasting.js.map +1 -1
  60. package/lib/orchestrate/realize/orchestrateRealizeWrite.js +130 -2
  61. package/lib/orchestrate/realize/orchestrateRealizeWrite.js.map +1 -1
  62. package/lib/orchestrate/test/histories/transformTestWriteHistories.js.map +1 -1
  63. package/lib/orchestrate/test/orchestrateTestCorrect.js +131 -2
  64. package/lib/orchestrate/test/orchestrateTestCorrect.js.map +1 -1
  65. package/lib/orchestrate/test/orchestrateTestCorrectInvalidRequest.js +166 -2
  66. package/lib/orchestrate/test/orchestrateTestCorrectInvalidRequest.js.map +1 -1
  67. package/lib/orchestrate/test/orchestrateTestScenario.js +255 -3
  68. package/lib/orchestrate/test/orchestrateTestScenario.js.map +1 -1
  69. package/lib/orchestrate/test/orchestrateTestScenarioReview.js +281 -3
  70. package/lib/orchestrate/test/orchestrateTestScenarioReview.js.map +1 -1
  71. package/lib/orchestrate/test/orchestrateTestWrite.js +139 -2
  72. package/lib/orchestrate/test/orchestrateTestWrite.js.map +1 -1
  73. package/package.json +9 -9
  74. package/src/constants/AutoBeSystemPromptConstant.ts +1 -1
  75. package/src/context/assertSchemaModel.ts +5 -8
  76. package/src/orchestrate/analyze/orchestrateAnalyzeReview.ts +7 -9
  77. package/src/orchestrate/analyze/orchestrateAnalyzeScenario.ts +13 -9
  78. package/src/orchestrate/analyze/orchestrateAnalyzeWrite.ts +7 -9
  79. package/src/orchestrate/analyze/structures/IAutoBeAnalyzeReviewApplication.ts +19 -54
  80. package/src/orchestrate/analyze/structures/IAutoBeAnalyzeScenarioApplication.ts +25 -22
  81. package/src/orchestrate/analyze/structures/IAutoBeAnalyzeWriteApplication.ts +8 -24
  82. package/src/orchestrate/common/orchestrateCommonCorrectCasting.ts +15 -1
  83. package/src/orchestrate/facade/createAutoBeFacadeController.ts +7 -6
  84. package/src/orchestrate/interface/orchestrateInterfaceAuthorizations.ts +11 -1
  85. package/src/orchestrate/interface/orchestrateInterfaceComplement.ts +11 -1
  86. package/src/orchestrate/interface/orchestrateInterfaceEndpoints.ts +13 -9
  87. package/src/orchestrate/interface/orchestrateInterfaceEndpointsReview.ts +13 -9
  88. package/src/orchestrate/interface/orchestrateInterfaceGroups.ts +17 -14
  89. package/src/orchestrate/interface/orchestrateInterfaceOperations.ts +11 -1
  90. package/src/orchestrate/interface/orchestrateInterfaceOperationsReview.ts +14 -1
  91. package/src/orchestrate/interface/orchestrateInterfacePrerequisites.ts +11 -1
  92. package/src/orchestrate/interface/orchestrateInterfaceSchemaRename.ts +9 -1
  93. package/src/orchestrate/interface/orchestrateInterfaceSchemaReview.ts +14 -1
  94. package/src/orchestrate/interface/orchestrateInterfaceSchemas.ts +11 -1
  95. package/src/orchestrate/prisma/orchestratePrismaComponent.ts +13 -9
  96. package/src/orchestrate/prisma/orchestratePrismaCorrect.ts +7 -9
  97. package/src/orchestrate/prisma/orchestratePrismaReview.ts +7 -10
  98. package/src/orchestrate/realize/orchestrateRealizeAuthorization.ts +13 -9
  99. package/src/orchestrate/realize/orchestrateRealizeAuthorizationCorrect.ts +13 -9
  100. package/src/orchestrate/realize/orchestrateRealizeCorrect.ts +11 -1
  101. package/src/orchestrate/realize/orchestrateRealizeCorrectCasting.ts +15 -1
  102. package/src/orchestrate/realize/orchestrateRealizeWrite.ts +11 -1
  103. package/src/orchestrate/test/experimental/orchestrateTestWrite.ast +5 -1
  104. package/src/orchestrate/test/histories/transformTestWriteHistories.ts +1 -1
  105. package/src/orchestrate/test/orchestrateTestCorrect.ts +11 -1
  106. package/src/orchestrate/test/orchestrateTestCorrectInvalidRequest.ts +18 -1
  107. package/src/orchestrate/test/orchestrateTestScenario.ts +11 -1
  108. package/src/orchestrate/test/orchestrateTestScenarioReview.ts +11 -1
  109. package/src/orchestrate/test/orchestrateTestWrite.ts +11 -1
@@ -88,7 +88,11 @@ function orchestrateInterfaceGroups(ctx, props) {
88
88
  }
89
89
  function createController(props) {
90
90
  (0, assertSchemaModel_1.assertSchemaModel)(props.model);
91
- const application = collection[props.model];
91
+ const application = collection[props.model === "chatgpt"
92
+ ? "chatgpt"
93
+ : props.model === "gemini"
94
+ ? "gemini"
95
+ : "claude"];
92
96
  return {
93
97
  protocol: "class",
94
98
  name: "interface",
@@ -100,243 +104,352 @@ function createController(props) {
100
104
  },
101
105
  };
102
106
  }
103
- const claude = {
104
- model: "claude",
105
- options: {
106
- reference: true,
107
- separate: null
108
- },
109
- functions: [
110
- {
111
- name: "makeGroups",
112
- parameters: {
113
- description: " Properties containing the groups to be created for API\norganization\n\n------------------------------\n\nCurrent Type: {@link IAutoBeInterfaceGroupApplication.IProps}",
114
- type: "object",
115
- properties: {
116
- groups: {
117
- description: "Array of API endpoint groups for organizing development.\n\nDO: Organize groups around existing Prisma schema structure.\nDO: Provide complete coverage of all entities and requirements without\noverlap.",
118
- type: "array",
119
- items: {
120
- $ref: "#/$defs/IAutoBeInterfaceGroupApplication.IGroup"
121
- },
122
- minItems: 1
107
+ const collection = {
108
+ chatgpt: {
109
+ model: "chatgpt",
110
+ options: {
111
+ reference: true,
112
+ strict: false,
113
+ separate: null
114
+ },
115
+ functions: [
116
+ {
117
+ name: "makeGroups",
118
+ parameters: {
119
+ description: " Properties containing the groups to be created for API\norganization\n\n------------------------------\n\nCurrent Type: {@link IAutoBeInterfaceGroupApplication.IProps}",
120
+ type: "object",
121
+ properties: {
122
+ groups: {
123
+ description: "Array of API endpoint groups for organizing development.\n\nDO: Organize groups around existing Prisma schema structure.\nDO: Provide complete coverage of all entities and requirements without\noverlap.\n\n\n@minItems 1",
124
+ type: "array",
125
+ items: {
126
+ $ref: "#/$defs/IAutoBeInterfaceGroupApplication.IGroup"
127
+ }
128
+ }
129
+ },
130
+ required: [
131
+ "groups"
132
+ ],
133
+ additionalProperties: false,
134
+ $defs: {
135
+ "IAutoBeInterfaceGroupApplication.IGroup": {
136
+ description: "Definition of a logical API endpoint group based on Prisma schema\norganization.\n\n**SCHEMA-BASED GROUP REQUIREMENTS:**\n\nDO: Derive groups from the Prisma schema structure rather than arbitrary\nbusiness domain names.\n\nThis ensures consistency with the underlying data model and prevents\nmisalignment between API organization and database structure.\n\n**Primary Group Sources (in order of priority):**\n\n1. **Prisma Schema Namespaces**: Use namespace names (e.g., `namespace\n Shopping` \u2192 \"Shopping\")\n2. **Schema File Names**: Derive from file names (e.g., `shopping.prisma` \u2192\n \"Shopping\")\n3. **Table Prefix Patterns**: Use consistent prefixes (e.g., `shopping_orders`\n \u2192 \"Shopping\")\n4. **Schema Comments/Annotations**: Follow organizational comments in schema\n\n**Group Creation Guidelines:**\n\n- Each group covers specific Prisma schema entities without overlap\n- Size groups appropriately for manageable endpoint generation cycles\n- Maintain clear boundaries based on schema organization\n- Ensure complete coverage of all database entities and requirements\n- Related database tables within the same schema area are grouped together\n\n**When to Create Schema-Independent Groups:**\n\nOnly create groups that don't correspond to Prisma schema organization\nwhen:\n\n- Requirements include functionality not represented in any schema entity\n- Cross-cutting concerns span multiple schema areas\n- Integration operations don't map to specific database entities\n- System-level functionality requires dedicated API operations\n\n**Naming Standards:**\n\n- Use PascalCase format (e.g., \"Shopping\", \"BBS\", \"UserManagement\")\n- Names directly reflect Prisma schema structure\n- Keep names concise and schema-derived\n- Avoid arbitrary business domain names\n- Maintain consistency with schema organization\n\n**Quality Requirements:**\n\n- Groups collectively cover ALL entities and requirements\n- Each database entity belongs to exactly one group\n- Clear mapping to specific Prisma schema elements\n- Balance group sizes within schema constraints\n- Follow existing schema namespace or file structure patterns",
137
+ type: "object",
138
+ properties: {
139
+ name: {
140
+ description: "Unique identifier name derived from Prisma schema structure.\n\nDO: Correspond to schema namespaces, file names, table prefixes, or\norganizational annotations rather than arbitrary business domain names.\n\n\n@minLength 1",
141
+ type: "string"
142
+ },
143
+ description: {
144
+ description: "Concise description of the group's core purpose.\n\n**Requirements:**\n- Keep it brief and focused (50-200 characters)\n- State the main purpose and key entities\n- Avoid detailed explanations or mappings\n\nExample: \"Handles shopping-related entities and operations\"\n\n\n@minLength 1",
145
+ type: "string"
146
+ }
147
+ },
148
+ required: [
149
+ "name",
150
+ "description"
151
+ ]
152
+ }
123
153
  }
124
154
  },
125
- required: [
126
- "groups"
127
- ],
128
- additionalProperties: false,
129
- $defs: {
130
- "IAutoBeInterfaceGroupApplication.IGroup": {
131
- description: "Definition of a logical API endpoint group based on Prisma schema\norganization.\n\n**SCHEMA-BASED GROUP REQUIREMENTS:**\n\nDO: Derive groups from the Prisma schema structure rather than arbitrary\nbusiness domain names.\n\nThis ensures consistency with the underlying data model and prevents\nmisalignment between API organization and database structure.\n\n**Primary Group Sources (in order of priority):**\n\n1. **Prisma Schema Namespaces**: Use namespace names (e.g., `namespace\n Shopping` \u2192 \"Shopping\")\n2. **Schema File Names**: Derive from file names (e.g., `shopping.prisma` \u2192\n \"Shopping\")\n3. **Table Prefix Patterns**: Use consistent prefixes (e.g., `shopping_orders`\n \u2192 \"Shopping\")\n4. **Schema Comments/Annotations**: Follow organizational comments in schema\n\n**Group Creation Guidelines:**\n\n- Each group covers specific Prisma schema entities without overlap\n- Size groups appropriately for manageable endpoint generation cycles\n- Maintain clear boundaries based on schema organization\n- Ensure complete coverage of all database entities and requirements\n- Related database tables within the same schema area are grouped together\n\n**When to Create Schema-Independent Groups:**\n\nOnly create groups that don't correspond to Prisma schema organization\nwhen:\n\n- Requirements include functionality not represented in any schema entity\n- Cross-cutting concerns span multiple schema areas\n- Integration operations don't map to specific database entities\n- System-level functionality requires dedicated API operations\n\n**Naming Standards:**\n\n- Use PascalCase format (e.g., \"Shopping\", \"BBS\", \"UserManagement\")\n- Names directly reflect Prisma schema structure\n- Keep names concise and schema-derived\n- Avoid arbitrary business domain names\n- Maintain consistency with schema organization\n\n**Quality Requirements:**\n\n- Groups collectively cover ALL entities and requirements\n- Each database entity belongs to exactly one group\n- Clear mapping to specific Prisma schema elements\n- Balance group sizes within schema constraints\n- Follow existing schema namespace or file structure patterns",
132
- type: "object",
133
- properties: {
134
- name: {
135
- description: "Unique identifier name derived from Prisma schema structure.\n\nDO: Correspond to schema namespaces, file names, table prefixes, or\norganizational annotations rather than arbitrary business domain names.",
136
- type: "string",
137
- minLength: 1
138
- },
139
- description: {
140
- description: "Concise description of the group's core purpose.\n\n**Requirements:**\n- Keep it brief and focused (50-200 characters)\n- State the main purpose and key entities\n- Avoid detailed explanations or mappings\n\nExample: \"Handles shopping-related entities and operations\"",
141
- type: "string",
142
- minLength: 1
143
- }
144
- },
145
- required: [
146
- "name",
147
- "description"
148
- ]
155
+ description: "Generate logical groups for organizing API endpoint creation based on\nPrisma schema structure.\n\nDO: Derive groups from Prisma schema organization (namespaces, file\nstructure, table prefixes) rather than arbitrary business domains.\nDO: Create new groups only when existing schema structure cannot adequately\ncover all requirements.",
156
+ validate: (() => { const _io0 = input => Array.isArray(input.groups) && (1 <= input.groups.length && input.groups.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io1 = input => "string" === typeof input.name && 1 <= input.name.length && ("string" === typeof input.description && 1 <= input.description.length); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.groups) || _report(_exceptionable, {
157
+ path: _path + ".groups",
158
+ expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
159
+ value: input.groups
160
+ })) && ((1 <= input.groups.length || _report(_exceptionable, {
161
+ path: _path + ".groups",
162
+ expected: "Array<> & MinItems<1>",
163
+ value: input.groups
164
+ })) && input.groups.map((elem, _index2) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
165
+ path: _path + ".groups[" + _index2 + "]",
166
+ expected: "IAutoBeInterfaceGroupApplication.IGroup",
167
+ value: elem
168
+ })) && _vo1(elem, _path + ".groups[" + _index2 + "]", true && _exceptionable) || _report(_exceptionable, {
169
+ path: _path + ".groups[" + _index2 + "]",
170
+ expected: "IAutoBeInterfaceGroupApplication.IGroup",
171
+ value: elem
172
+ })).every(flag => flag)) || _report(_exceptionable, {
173
+ path: _path + ".groups",
174
+ expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
175
+ value: input.groups
176
+ })].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (1 <= input.name.length || _report(_exceptionable, {
177
+ path: _path + ".name",
178
+ expected: "string & MinLength<1>",
179
+ value: input.name
180
+ })) || _report(_exceptionable, {
181
+ path: _path + ".name",
182
+ expected: "(string & MinLength<1>)",
183
+ value: input.name
184
+ }), "string" === typeof input.description && (1 <= input.description.length || _report(_exceptionable, {
185
+ path: _path + ".description",
186
+ expected: "string & MinLength<1>",
187
+ value: input.description
188
+ })) || _report(_exceptionable, {
189
+ path: _path + ".description",
190
+ expected: "(string & MinLength<1>)",
191
+ value: input.description
192
+ })].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
193
+ if (false === __is(input)) {
194
+ errors = [];
195
+ _report = __typia_transform__validateReport._validateReport(errors);
196
+ ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
197
+ path: _path + "",
198
+ expected: "IAutoBeInterfaceGroupApplication.IProps",
199
+ value: input
200
+ })) && _vo0(input, _path + "", true) || _report(true, {
201
+ path: _path + "",
202
+ expected: "IAutoBeInterfaceGroupApplication.IProps",
203
+ value: input
204
+ }))(input, "$input", true);
205
+ const success = 0 === errors.length;
206
+ return success ? {
207
+ success,
208
+ data: input
209
+ } : {
210
+ success,
211
+ errors,
212
+ data: input
213
+ };
149
214
  }
150
- }
151
- },
152
- description: "Generate logical groups for organizing API endpoint creation based on\nPrisma schema structure.\n\nDO: Derive groups from Prisma schema organization (namespaces, file\nstructure, table prefixes) rather than arbitrary business domains.\nDO: Create new groups only when existing schema structure cannot adequately\ncover all requirements.",
153
- validate: (() => { const _io0 = input => Array.isArray(input.groups) && (1 <= input.groups.length && input.groups.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io1 = input => "string" === typeof input.name && 1 <= input.name.length && ("string" === typeof input.description && 1 <= input.description.length); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.groups) || _report(_exceptionable, {
154
- path: _path + ".groups",
155
- expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
156
- value: input.groups
157
- })) && ((1 <= input.groups.length || _report(_exceptionable, {
158
- path: _path + ".groups",
159
- expected: "Array<> & MinItems<1>",
160
- value: input.groups
161
- })) && input.groups.map((elem, _index2) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
162
- path: _path + ".groups[" + _index2 + "]",
163
- expected: "IAutoBeInterfaceGroupApplication.IGroup",
164
- value: elem
165
- })) && _vo1(elem, _path + ".groups[" + _index2 + "]", true && _exceptionable) || _report(_exceptionable, {
166
- path: _path + ".groups[" + _index2 + "]",
167
- expected: "IAutoBeInterfaceGroupApplication.IGroup",
168
- value: elem
169
- })).every(flag => flag)) || _report(_exceptionable, {
170
- path: _path + ".groups",
171
- expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
172
- value: input.groups
173
- })].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (1 <= input.name.length || _report(_exceptionable, {
174
- path: _path + ".name",
175
- expected: "string & MinLength<1>",
176
- value: input.name
177
- })) || _report(_exceptionable, {
178
- path: _path + ".name",
179
- expected: "(string & MinLength<1>)",
180
- value: input.name
181
- }), "string" === typeof input.description && (1 <= input.description.length || _report(_exceptionable, {
182
- path: _path + ".description",
183
- expected: "string & MinLength<1>",
184
- value: input.description
185
- })) || _report(_exceptionable, {
186
- path: _path + ".description",
187
- expected: "(string & MinLength<1>)",
188
- value: input.description
189
- })].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
190
- if (false === __is(input)) {
191
- errors = [];
192
- _report = __typia_transform__validateReport._validateReport(errors);
193
- ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
194
- path: _path + "",
195
- expected: "IAutoBeInterfaceGroupApplication.IProps",
196
- value: input
197
- })) && _vo0(input, _path + "", true) || _report(true, {
198
- path: _path + "",
199
- expected: "IAutoBeInterfaceGroupApplication.IProps",
200
- value: input
201
- }))(input, "$input", true);
202
- const success = 0 === errors.length;
203
- return success ? {
204
- success,
205
- data: input
206
- } : {
207
- success,
208
- errors,
215
+ return {
216
+ success: true,
209
217
  data: input
210
218
  };
211
- }
212
- return {
213
- success: true,
214
- data: input
215
- };
216
- }; })()
217
- }
218
- ]
219
- };
220
- const chatgpt = {
221
- model: "chatgpt",
222
- options: {
223
- reference: true,
224
- strict: false,
225
- separate: null
219
+ }; })()
220
+ }
221
+ ]
226
222
  },
227
- functions: [
228
- {
229
- name: "makeGroups",
230
- parameters: {
231
- description: " Properties containing the groups to be created for API\norganization\n\n------------------------------\n\nCurrent Type: {@link IAutoBeInterfaceGroupApplication.IProps}",
232
- type: "object",
233
- properties: {
234
- groups: {
235
- description: "Array of API endpoint groups for organizing development.\n\nDO: Organize groups around existing Prisma schema structure.\nDO: Provide complete coverage of all entities and requirements without\noverlap.\n\n\n@minItems 1",
236
- type: "array",
237
- items: {
238
- $ref: "#/$defs/IAutoBeInterfaceGroupApplication.IGroup"
223
+ claude: {
224
+ model: "claude",
225
+ options: {
226
+ reference: true,
227
+ separate: null
228
+ },
229
+ functions: [
230
+ {
231
+ name: "makeGroups",
232
+ parameters: {
233
+ description: " Properties containing the groups to be created for API\norganization\n\n------------------------------\n\nCurrent Type: {@link IAutoBeInterfaceGroupApplication.IProps}",
234
+ type: "object",
235
+ properties: {
236
+ groups: {
237
+ description: "Array of API endpoint groups for organizing development.\n\nDO: Organize groups around existing Prisma schema structure.\nDO: Provide complete coverage of all entities and requirements without\noverlap.",
238
+ type: "array",
239
+ items: {
240
+ $ref: "#/$defs/IAutoBeInterfaceGroupApplication.IGroup"
241
+ },
242
+ minItems: 1
243
+ }
244
+ },
245
+ required: [
246
+ "groups"
247
+ ],
248
+ additionalProperties: false,
249
+ $defs: {
250
+ "IAutoBeInterfaceGroupApplication.IGroup": {
251
+ description: "Definition of a logical API endpoint group based on Prisma schema\norganization.\n\n**SCHEMA-BASED GROUP REQUIREMENTS:**\n\nDO: Derive groups from the Prisma schema structure rather than arbitrary\nbusiness domain names.\n\nThis ensures consistency with the underlying data model and prevents\nmisalignment between API organization and database structure.\n\n**Primary Group Sources (in order of priority):**\n\n1. **Prisma Schema Namespaces**: Use namespace names (e.g., `namespace\n Shopping` \u2192 \"Shopping\")\n2. **Schema File Names**: Derive from file names (e.g., `shopping.prisma` \u2192\n \"Shopping\")\n3. **Table Prefix Patterns**: Use consistent prefixes (e.g., `shopping_orders`\n \u2192 \"Shopping\")\n4. **Schema Comments/Annotations**: Follow organizational comments in schema\n\n**Group Creation Guidelines:**\n\n- Each group covers specific Prisma schema entities without overlap\n- Size groups appropriately for manageable endpoint generation cycles\n- Maintain clear boundaries based on schema organization\n- Ensure complete coverage of all database entities and requirements\n- Related database tables within the same schema area are grouped together\n\n**When to Create Schema-Independent Groups:**\n\nOnly create groups that don't correspond to Prisma schema organization\nwhen:\n\n- Requirements include functionality not represented in any schema entity\n- Cross-cutting concerns span multiple schema areas\n- Integration operations don't map to specific database entities\n- System-level functionality requires dedicated API operations\n\n**Naming Standards:**\n\n- Use PascalCase format (e.g., \"Shopping\", \"BBS\", \"UserManagement\")\n- Names directly reflect Prisma schema structure\n- Keep names concise and schema-derived\n- Avoid arbitrary business domain names\n- Maintain consistency with schema organization\n\n**Quality Requirements:**\n\n- Groups collectively cover ALL entities and requirements\n- Each database entity belongs to exactly one group\n- Clear mapping to specific Prisma schema elements\n- Balance group sizes within schema constraints\n- Follow existing schema namespace or file structure patterns",
252
+ type: "object",
253
+ properties: {
254
+ name: {
255
+ description: "Unique identifier name derived from Prisma schema structure.\n\nDO: Correspond to schema namespaces, file names, table prefixes, or\norganizational annotations rather than arbitrary business domain names.",
256
+ type: "string",
257
+ minLength: 1
258
+ },
259
+ description: {
260
+ description: "Concise description of the group's core purpose.\n\n**Requirements:**\n- Keep it brief and focused (50-200 characters)\n- State the main purpose and key entities\n- Avoid detailed explanations or mappings\n\nExample: \"Handles shopping-related entities and operations\"",
261
+ type: "string",
262
+ minLength: 1
263
+ }
264
+ },
265
+ required: [
266
+ "name",
267
+ "description"
268
+ ]
239
269
  }
240
270
  }
241
271
  },
242
- required: [
243
- "groups"
244
- ],
245
- additionalProperties: false,
246
- $defs: {
247
- "IAutoBeInterfaceGroupApplication.IGroup": {
248
- description: "Definition of a logical API endpoint group based on Prisma schema\norganization.\n\n**SCHEMA-BASED GROUP REQUIREMENTS:**\n\nDO: Derive groups from the Prisma schema structure rather than arbitrary\nbusiness domain names.\n\nThis ensures consistency with the underlying data model and prevents\nmisalignment between API organization and database structure.\n\n**Primary Group Sources (in order of priority):**\n\n1. **Prisma Schema Namespaces**: Use namespace names (e.g., `namespace\n Shopping` \u2192 \"Shopping\")\n2. **Schema File Names**: Derive from file names (e.g., `shopping.prisma` \u2192\n \"Shopping\")\n3. **Table Prefix Patterns**: Use consistent prefixes (e.g., `shopping_orders`\n \u2192 \"Shopping\")\n4. **Schema Comments/Annotations**: Follow organizational comments in schema\n\n**Group Creation Guidelines:**\n\n- Each group covers specific Prisma schema entities without overlap\n- Size groups appropriately for manageable endpoint generation cycles\n- Maintain clear boundaries based on schema organization\n- Ensure complete coverage of all database entities and requirements\n- Related database tables within the same schema area are grouped together\n\n**When to Create Schema-Independent Groups:**\n\nOnly create groups that don't correspond to Prisma schema organization\nwhen:\n\n- Requirements include functionality not represented in any schema entity\n- Cross-cutting concerns span multiple schema areas\n- Integration operations don't map to specific database entities\n- System-level functionality requires dedicated API operations\n\n**Naming Standards:**\n\n- Use PascalCase format (e.g., \"Shopping\", \"BBS\", \"UserManagement\")\n- Names directly reflect Prisma schema structure\n- Keep names concise and schema-derived\n- Avoid arbitrary business domain names\n- Maintain consistency with schema organization\n\n**Quality Requirements:**\n\n- Groups collectively cover ALL entities and requirements\n- Each database entity belongs to exactly one group\n- Clear mapping to specific Prisma schema elements\n- Balance group sizes within schema constraints\n- Follow existing schema namespace or file structure patterns",
249
- type: "object",
250
- properties: {
251
- name: {
252
- description: "Unique identifier name derived from Prisma schema structure.\n\nDO: Correspond to schema namespaces, file names, table prefixes, or\norganizational annotations rather than arbitrary business domain names.\n\n\n@minLength 1",
253
- type: "string"
254
- },
255
- description: {
256
- description: "Concise description of the group's core purpose.\n\n**Requirements:**\n- Keep it brief and focused (50-200 characters)\n- State the main purpose and key entities\n- Avoid detailed explanations or mappings\n\nExample: \"Handles shopping-related entities and operations\"\n\n\n@minLength 1",
257
- type: "string"
258
- }
259
- },
260
- required: [
261
- "name",
262
- "description"
263
- ]
272
+ description: "Generate logical groups for organizing API endpoint creation based on\nPrisma schema structure.\n\nDO: Derive groups from Prisma schema organization (namespaces, file\nstructure, table prefixes) rather than arbitrary business domains.\nDO: Create new groups only when existing schema structure cannot adequately\ncover all requirements.",
273
+ validate: (() => { const _io0 = input => Array.isArray(input.groups) && (1 <= input.groups.length && input.groups.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io1 = input => "string" === typeof input.name && 1 <= input.name.length && ("string" === typeof input.description && 1 <= input.description.length); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.groups) || _report(_exceptionable, {
274
+ path: _path + ".groups",
275
+ expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
276
+ value: input.groups
277
+ })) && ((1 <= input.groups.length || _report(_exceptionable, {
278
+ path: _path + ".groups",
279
+ expected: "Array<> & MinItems<1>",
280
+ value: input.groups
281
+ })) && input.groups.map((elem, _index2) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
282
+ path: _path + ".groups[" + _index2 + "]",
283
+ expected: "IAutoBeInterfaceGroupApplication.IGroup",
284
+ value: elem
285
+ })) && _vo1(elem, _path + ".groups[" + _index2 + "]", true && _exceptionable) || _report(_exceptionable, {
286
+ path: _path + ".groups[" + _index2 + "]",
287
+ expected: "IAutoBeInterfaceGroupApplication.IGroup",
288
+ value: elem
289
+ })).every(flag => flag)) || _report(_exceptionable, {
290
+ path: _path + ".groups",
291
+ expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
292
+ value: input.groups
293
+ })].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (1 <= input.name.length || _report(_exceptionable, {
294
+ path: _path + ".name",
295
+ expected: "string & MinLength<1>",
296
+ value: input.name
297
+ })) || _report(_exceptionable, {
298
+ path: _path + ".name",
299
+ expected: "(string & MinLength<1>)",
300
+ value: input.name
301
+ }), "string" === typeof input.description && (1 <= input.description.length || _report(_exceptionable, {
302
+ path: _path + ".description",
303
+ expected: "string & MinLength<1>",
304
+ value: input.description
305
+ })) || _report(_exceptionable, {
306
+ path: _path + ".description",
307
+ expected: "(string & MinLength<1>)",
308
+ value: input.description
309
+ })].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
310
+ if (false === __is(input)) {
311
+ errors = [];
312
+ _report = __typia_transform__validateReport._validateReport(errors);
313
+ ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
314
+ path: _path + "",
315
+ expected: "IAutoBeInterfaceGroupApplication.IProps",
316
+ value: input
317
+ })) && _vo0(input, _path + "", true) || _report(true, {
318
+ path: _path + "",
319
+ expected: "IAutoBeInterfaceGroupApplication.IProps",
320
+ value: input
321
+ }))(input, "$input", true);
322
+ const success = 0 === errors.length;
323
+ return success ? {
324
+ success,
325
+ data: input
326
+ } : {
327
+ success,
328
+ errors,
329
+ data: input
330
+ };
264
331
  }
265
- }
266
- },
267
- description: "Generate logical groups for organizing API endpoint creation based on\nPrisma schema structure.\n\nDO: Derive groups from Prisma schema organization (namespaces, file\nstructure, table prefixes) rather than arbitrary business domains.\nDO: Create new groups only when existing schema structure cannot adequately\ncover all requirements.",
268
- validate: (() => { const _io0 = input => Array.isArray(input.groups) && (1 <= input.groups.length && input.groups.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io1 = input => "string" === typeof input.name && 1 <= input.name.length && ("string" === typeof input.description && 1 <= input.description.length); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.groups) || _report(_exceptionable, {
269
- path: _path + ".groups",
270
- expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
271
- value: input.groups
272
- })) && ((1 <= input.groups.length || _report(_exceptionable, {
273
- path: _path + ".groups",
274
- expected: "Array<> & MinItems<1>",
275
- value: input.groups
276
- })) && input.groups.map((elem, _index2) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
277
- path: _path + ".groups[" + _index2 + "]",
278
- expected: "IAutoBeInterfaceGroupApplication.IGroup",
279
- value: elem
280
- })) && _vo1(elem, _path + ".groups[" + _index2 + "]", true && _exceptionable) || _report(_exceptionable, {
281
- path: _path + ".groups[" + _index2 + "]",
282
- expected: "IAutoBeInterfaceGroupApplication.IGroup",
283
- value: elem
284
- })).every(flag => flag)) || _report(_exceptionable, {
285
- path: _path + ".groups",
286
- expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
287
- value: input.groups
288
- })].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (1 <= input.name.length || _report(_exceptionable, {
289
- path: _path + ".name",
290
- expected: "string & MinLength<1>",
291
- value: input.name
292
- })) || _report(_exceptionable, {
293
- path: _path + ".name",
294
- expected: "(string & MinLength<1>)",
295
- value: input.name
296
- }), "string" === typeof input.description && (1 <= input.description.length || _report(_exceptionable, {
297
- path: _path + ".description",
298
- expected: "string & MinLength<1>",
299
- value: input.description
300
- })) || _report(_exceptionable, {
301
- path: _path + ".description",
302
- expected: "(string & MinLength<1>)",
303
- value: input.description
304
- })].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
305
- if (false === __is(input)) {
306
- errors = [];
307
- _report = __typia_transform__validateReport._validateReport(errors);
308
- ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
309
- path: _path + "",
310
- expected: "IAutoBeInterfaceGroupApplication.IProps",
311
- value: input
312
- })) && _vo0(input, _path + "", true) || _report(true, {
313
- path: _path + "",
314
- expected: "IAutoBeInterfaceGroupApplication.IProps",
315
- value: input
316
- }))(input, "$input", true);
317
- const success = 0 === errors.length;
318
- return success ? {
319
- success,
332
+ return {
333
+ success: true,
320
334
  data: input
321
- } : {
322
- success,
323
- errors,
335
+ };
336
+ }; })()
337
+ }
338
+ ]
339
+ },
340
+ gemini: {
341
+ model: "gemini",
342
+ options: {
343
+ reference: true,
344
+ separate: null
345
+ },
346
+ functions: [
347
+ {
348
+ name: "makeGroups",
349
+ parameters: {
350
+ description: " Properties containing the groups to be created for API\norganization\n\n------------------------------\n\nCurrent Type: {@link IAutoBeInterfaceGroupApplication.IProps}",
351
+ type: "object",
352
+ properties: {
353
+ groups: {
354
+ description: "Array of API endpoint groups for organizing development.\n\nDO: Organize groups around existing Prisma schema structure.\nDO: Provide complete coverage of all entities and requirements without\noverlap.\n\n\n@minItems 1",
355
+ type: "array",
356
+ items: {
357
+ $ref: "#/$defs/IAutoBeInterfaceGroupApplication.IGroup"
358
+ }
359
+ }
360
+ },
361
+ required: [
362
+ "groups"
363
+ ],
364
+ additionalProperties: false,
365
+ $defs: {
366
+ "IAutoBeInterfaceGroupApplication.IGroup": {
367
+ description: "Definition of a logical API endpoint group based on Prisma schema\norganization.\n\n**SCHEMA-BASED GROUP REQUIREMENTS:**\n\nDO: Derive groups from the Prisma schema structure rather than arbitrary\nbusiness domain names.\n\nThis ensures consistency with the underlying data model and prevents\nmisalignment between API organization and database structure.\n\n**Primary Group Sources (in order of priority):**\n\n1. **Prisma Schema Namespaces**: Use namespace names (e.g., `namespace\n Shopping` \u2192 \"Shopping\")\n2. **Schema File Names**: Derive from file names (e.g., `shopping.prisma` \u2192\n \"Shopping\")\n3. **Table Prefix Patterns**: Use consistent prefixes (e.g., `shopping_orders`\n \u2192 \"Shopping\")\n4. **Schema Comments/Annotations**: Follow organizational comments in schema\n\n**Group Creation Guidelines:**\n\n- Each group covers specific Prisma schema entities without overlap\n- Size groups appropriately for manageable endpoint generation cycles\n- Maintain clear boundaries based on schema organization\n- Ensure complete coverage of all database entities and requirements\n- Related database tables within the same schema area are grouped together\n\n**When to Create Schema-Independent Groups:**\n\nOnly create groups that don't correspond to Prisma schema organization\nwhen:\n\n- Requirements include functionality not represented in any schema entity\n- Cross-cutting concerns span multiple schema areas\n- Integration operations don't map to specific database entities\n- System-level functionality requires dedicated API operations\n\n**Naming Standards:**\n\n- Use PascalCase format (e.g., \"Shopping\", \"BBS\", \"UserManagement\")\n- Names directly reflect Prisma schema structure\n- Keep names concise and schema-derived\n- Avoid arbitrary business domain names\n- Maintain consistency with schema organization\n\n**Quality Requirements:**\n\n- Groups collectively cover ALL entities and requirements\n- Each database entity belongs to exactly one group\n- Clear mapping to specific Prisma schema elements\n- Balance group sizes within schema constraints\n- Follow existing schema namespace or file structure patterns",
368
+ type: "object",
369
+ properties: {
370
+ name: {
371
+ description: "Unique identifier name derived from Prisma schema structure.\n\nDO: Correspond to schema namespaces, file names, table prefixes, or\norganizational annotations rather than arbitrary business domain names.\n\n\n@minLength 1",
372
+ type: "string"
373
+ },
374
+ description: {
375
+ description: "Concise description of the group's core purpose.\n\n**Requirements:**\n- Keep it brief and focused (50-200 characters)\n- State the main purpose and key entities\n- Avoid detailed explanations or mappings\n\nExample: \"Handles shopping-related entities and operations\"\n\n\n@minLength 1",
376
+ type: "string"
377
+ }
378
+ },
379
+ required: [
380
+ "name",
381
+ "description"
382
+ ]
383
+ }
384
+ }
385
+ },
386
+ description: "Generate logical groups for organizing API endpoint creation based on\nPrisma schema structure.\n\nDO: Derive groups from Prisma schema organization (namespaces, file\nstructure, table prefixes) rather than arbitrary business domains.\nDO: Create new groups only when existing schema structure cannot adequately\ncover all requirements.",
387
+ validate: (() => { const _io0 = input => Array.isArray(input.groups) && (1 <= input.groups.length && input.groups.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io1 = input => "string" === typeof input.name && 1 <= input.name.length && ("string" === typeof input.description && 1 <= input.description.length); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.groups) || _report(_exceptionable, {
388
+ path: _path + ".groups",
389
+ expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
390
+ value: input.groups
391
+ })) && ((1 <= input.groups.length || _report(_exceptionable, {
392
+ path: _path + ".groups",
393
+ expected: "Array<> & MinItems<1>",
394
+ value: input.groups
395
+ })) && input.groups.map((elem, _index2) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
396
+ path: _path + ".groups[" + _index2 + "]",
397
+ expected: "IAutoBeInterfaceGroupApplication.IGroup",
398
+ value: elem
399
+ })) && _vo1(elem, _path + ".groups[" + _index2 + "]", true && _exceptionable) || _report(_exceptionable, {
400
+ path: _path + ".groups[" + _index2 + "]",
401
+ expected: "IAutoBeInterfaceGroupApplication.IGroup",
402
+ value: elem
403
+ })).every(flag => flag)) || _report(_exceptionable, {
404
+ path: _path + ".groups",
405
+ expected: "(Array<IAutoBeInterfaceGroupApplication.IGroup> & MinItems<1>)",
406
+ value: input.groups
407
+ })].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => ["string" === typeof input.name && (1 <= input.name.length || _report(_exceptionable, {
408
+ path: _path + ".name",
409
+ expected: "string & MinLength<1>",
410
+ value: input.name
411
+ })) || _report(_exceptionable, {
412
+ path: _path + ".name",
413
+ expected: "(string & MinLength<1>)",
414
+ value: input.name
415
+ }), "string" === typeof input.description && (1 <= input.description.length || _report(_exceptionable, {
416
+ path: _path + ".description",
417
+ expected: "string & MinLength<1>",
418
+ value: input.description
419
+ })) || _report(_exceptionable, {
420
+ path: _path + ".description",
421
+ expected: "(string & MinLength<1>)",
422
+ value: input.description
423
+ })].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
424
+ if (false === __is(input)) {
425
+ errors = [];
426
+ _report = __typia_transform__validateReport._validateReport(errors);
427
+ ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
428
+ path: _path + "",
429
+ expected: "IAutoBeInterfaceGroupApplication.IProps",
430
+ value: input
431
+ })) && _vo0(input, _path + "", true) || _report(true, {
432
+ path: _path + "",
433
+ expected: "IAutoBeInterfaceGroupApplication.IProps",
434
+ value: input
435
+ }))(input, "$input", true);
436
+ const success = 0 === errors.length;
437
+ return success ? {
438
+ success,
439
+ data: input
440
+ } : {
441
+ success,
442
+ errors,
443
+ data: input
444
+ };
445
+ }
446
+ return {
447
+ success: true,
324
448
  data: input
325
449
  };
326
- }
327
- return {
328
- success: true,
329
- data: input
330
- };
331
- }; })()
332
- }
333
- ]
334
- };
335
- const collection = {
336
- chatgpt,
337
- claude,
338
- llama: claude,
339
- deepseek: claude,
340
- "3.1": claude,
450
+ }; })()
451
+ }
452
+ ]
453
+ },
341
454
  };
342
455
  //# sourceMappingURL=orchestrateInterfaceGroups.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"orchestrateInterfaceGroups.js","sourceRoot":"","sources":["../../../src/orchestrate/interface/orchestrateInterfaceGroups.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAYA,gEAsCC;;AA9CD,kDAA0B;AAC1B,+BAA0B;AAG1B,uEAAoE;AACpE,mGAAgG;AAGhG,SAAsB,0BAA0B,CAG9C,GAAyB,EACzB,KAGC;;;QAED,MAAM,KAAK,GAAS,IAAI,IAAI,EAAE,CAAC;QAC/B,MAAM,OAAO,GAA6D;YACxE,KAAK,EAAE,IAAI;SACZ,CAAC;QACF,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,GAAG,MAAM,GAAG,CAAC,UAAU,CAAC;YAClD,MAAM,EAAE,gBAAgB;YACxB,SAAS,EAAE,IAAA,mEAAgC,EAAC;gBAC1C,KAAK,EAAE,GAAG,CAAC,KAAK,EAAE;gBAClB,WAAW,EAAE,KAAK,CAAC,WAAW;aAC/B,CAAC;YACF,UAAU,EAAE,gBAAgB,CAAC;gBAC3B,KAAK,EAAE,GAAG,CAAC,KAAK;gBAChB,KAAK,EAAE,CAAC,IAAI,EAAE,EAAE;oBACd,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC;gBACvB,CAAC;aACF,CAAC;YACF,mBAAmB,EAAE,IAAI;YACzB,OAAO,EAAE,MAAA,KAAK,CAAC,OAAO,mCAAI,6CAA6C;SACxE,CAAC,CAAC;QACH,IAAI,OAAO,CAAC,KAAK,KAAK,IAAI;YAAE,MAAM,IAAI,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,cAAc;QACzF,OAAO;YACL,IAAI,EAAE,gBAAgB;YACtB,EAAE,EAAE,IAAA,SAAE,GAAE;YACR,UAAU,EAAE,KAAK,CAAC,WAAW,EAAE;YAC/B,MAAM,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM;YAC5B,MAAM;YACN,UAAU;YACV,IAAI,EAAE,MAAA,MAAA,GAAG,CAAC,KAAK,EAAE,CAAC,OAAO,0CAAE,IAAI,mCAAI,CAAC;SACD,CAAC;IACxC,CAAC;CAAA;AAED,SAAS,gBAAgB,CAAiC,KAGzD;IACC,IAAA,qCAAiB,EAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAE/B,MAAM,WAAW,GAA2B,UAAU,CACpD,KAAK,CAAC,KAAK,CACwD,CAAC;IACtE,OAAO;QACL,QAAQ,EAAE,OAAO;QACjB,IAAI,EAAE,WAAW;QACjB,WAAW;QACX,OAAO,EAAE;YACP,UAAU,EAAE,CAAC,IAAI,EAAE,EAAE;gBACnB,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACpB,CAAC;SACyC;KAC7C,CAAC;AACJ,CAAC;AAED,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGT,CAAC;AACJ,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGV,CAAC;AACJ,MAAM,UAAU,GAAG;IACjB,OAAO;IACP,MAAM;IACN,KAAK,EAAE,MAAM;IACb,QAAQ,EAAE,MAAM;IAChB,KAAK,EAAE,MAAM;CACd,CAAC"}
1
+ {"version":3,"file":"orchestrateInterfaceGroups.js","sourceRoot":"","sources":["../../../src/orchestrate/interface/orchestrateInterfaceGroups.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAYA,gEAsCC;;AA9CD,kDAA0B;AAC1B,+BAA0B;AAG1B,uEAAoE;AACpE,mGAAgG;AAGhG,SAAsB,0BAA0B,CAG9C,GAAyB,EACzB,KAGC;;;QAED,MAAM,KAAK,GAAS,IAAI,IAAI,EAAE,CAAC;QAC/B,MAAM,OAAO,GAA6D;YACxE,KAAK,EAAE,IAAI;SACZ,CAAC;QACF,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,GAAG,MAAM,GAAG,CAAC,UAAU,CAAC;YAClD,MAAM,EAAE,gBAAgB;YACxB,SAAS,EAAE,IAAA,mEAAgC,EAAC;gBAC1C,KAAK,EAAE,GAAG,CAAC,KAAK,EAAE;gBAClB,WAAW,EAAE,KAAK,CAAC,WAAW;aAC/B,CAAC;YACF,UAAU,EAAE,gBAAgB,CAAC;gBAC3B,KAAK,EAAE,GAAG,CAAC,KAAK;gBAChB,KAAK,EAAE,CAAC,IAAI,EAAE,EAAE;oBACd,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC;gBACvB,CAAC;aACF,CAAC;YACF,mBAAmB,EAAE,IAAI;YACzB,OAAO,EAAE,MAAA,KAAK,CAAC,OAAO,mCAAI,6CAA6C;SACxE,CAAC,CAAC;QACH,IAAI,OAAO,CAAC,KAAK,KAAK,IAAI;YAAE,MAAM,IAAI,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,cAAc;QACzF,OAAO;YACL,IAAI,EAAE,gBAAgB;YACtB,EAAE,EAAE,IAAA,SAAE,GAAE;YACR,UAAU,EAAE,KAAK,CAAC,WAAW,EAAE;YAC/B,MAAM,EAAE,OAAO,CAAC,KAAK,CAAC,MAAM;YAC5B,MAAM;YACN,UAAU;YACV,IAAI,EAAE,MAAA,MAAA,GAAG,CAAC,KAAK,EAAE,CAAC,OAAO,0CAAE,IAAI,mCAAI,CAAC;SACD,CAAC;IACxC,CAAC;CAAA;AAED,SAAS,gBAAgB,CAAiC,KAGzD;IACC,IAAA,qCAAiB,EAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAE/B,MAAM,WAAW,GAA2B,UAAU,CACpD,KAAK,CAAC,KAAK,KAAK,SAAS;QACvB,CAAC,CAAC,SAAS;QACX,CAAC,CAAC,KAAK,CAAC,KAAK,KAAK,QAAQ;YACxB,CAAC,CAAC,QAAQ;YACV,CAAC,CAAC,QAAQ,CACqD,CAAC;IACtE,OAAO;QACL,QAAQ,EAAE,OAAO;QACjB,IAAI,EAAE,WAAW;QACjB,WAAW;QACX,OAAO,EAAE;YACP,UAAU,EAAE,CAAC,IAAI,EAAE,EAAE;gBACnB,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;YACpB,CAAC;SACyC;KAC7C,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,GAAG;IACjB,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGJ;IACH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGH;IACH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGH;CACJ,CAAC"}