agent-generator 1.0.1 → 1.0.3

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 (771) hide show
  1. package/.github/agents/Generators.agent.md +121 -0
  2. package/.github/copilot-instructions.md +19 -0
  3. package/Generator_Patterns/Conditional.md +84 -0
  4. package/Generator_Patterns/Dynamic.md +129 -0
  5. package/Generator_Patterns/PathConfig.properties +4 -0
  6. package/Generator_Patterns/README.md +118 -0
  7. package/Generator_Patterns/Reference.md +98 -0
  8. package/Generator_Patterns/Remote.md +259 -0
  9. package/Generator_Patterns/Static.md +99 -0
  10. package/package.json +5 -2
  11. package/source/api-data-generators/.idea/api-data-generators.iml +9 -0
  12. package/source/api-data-generators/.idea/misc.xml +6 -0
  13. package/source/api-data-generators/.idea/modules.xml +8 -0
  14. package/source/api-data-generators/.idea/vcs.xml +6 -0
  15. package/source/api-data-generators/portal/ArticleComment/test_data_generation_configurations.json +318 -0
  16. package/source/api-data-generators/portal/ArticleFeedback/test_data_generation_configurations.json +32 -0
  17. package/source/api-data-generators/portal/AsapMobile/test_data_generation_configurations.json +21 -0
  18. package/source/api-data-generators/portal/AsapWeb/test_data_generation_configurations.json +18 -0
  19. package/source/api-data-generators/portal/Category/test_data_generation_configurations.json +39 -0
  20. package/source/api-data-generators/portal/Comment/test_data_generation_configurations.json +157 -0
  21. package/source/api-data-generators/portal/Community/test_data_generation_configurations.json +46 -0
  22. package/source/api-data-generators/portal/CommunityUser/test_data_generation_configurations.json +16 -0
  23. package/source/api-data-generators/portal/Contact/test_data_generation_configurations.json +33 -0
  24. package/source/api-data-generators/portal/Department/test_data_generation_configurations.json +13 -0
  25. package/source/api-data-generators/portal/Extension/test_data_generation_configurations.json +91 -0
  26. package/source/api-data-generators/portal/FeedbackWidget/test_data_generation_configurations.json +18 -0
  27. package/source/api-data-generators/portal/FileExport/test_data_generation_configurations.json +42 -0
  28. package/source/api-data-generators/portal/Followers/test_data_generation_configurations.json +92 -0
  29. package/source/api-data-generators/portal/Gamification/test_data_generation_configurations.json +51 -0
  30. package/source/api-data-generators/portal/HelpCenters/test_data_generation_configurations.json +11 -0
  31. package/source/api-data-generators/portal/Helpcenter/test_data_generation_configurations.json +41 -0
  32. package/source/api-data-generators/portal/HelpcenterGroups/test_data_generation_configurations.json +18 -0
  33. package/source/api-data-generators/portal/KBRootCategory/test_data_generation_configurations.json +76 -0
  34. package/source/api-data-generators/portal/KbCategory/test_data_generation_configurations.json +51 -0
  35. package/source/api-data-generators/portal/KbSection/test_data_generation_configurations.json +25 -0
  36. package/source/api-data-generators/portal/KnowledgeBase/test_data_generation_configurations.json +26 -0
  37. package/source/api-data-generators/portal/Label/test_data_generation_configurations.json +18 -0
  38. package/source/api-data-generators/portal/Layout/test_data_generation_configurations.json +17 -0
  39. package/source/api-data-generators/portal/LayoutRules/test_data_generation_configurations.json +17 -0
  40. package/source/api-data-generators/portal/NewAsapMobile/test_data_generation_configurations.json +21 -0
  41. package/source/api-data-generators/portal/Permalink/test_data_generation_configurations.json +32 -0
  42. package/source/api-data-generators/portal/Product/test_data_generation_configurations.json +43 -0
  43. package/source/api-data-generators/portal/Solution/test_data_generation_configurations.json +631 -0
  44. package/source/api-data-generators/portal/Thread/test_data_generation_configurations.json +70 -0
  45. package/source/api-data-generators/portal/Ticket/test_data_generation_configurations.json +294 -0
  46. package/source/api-data-generators/portal/TicketComment/test_data_generation_configurations.json +58 -0
  47. package/source/api-data-generators/portal/TicketCount/test_data_generation_configurations.json +74 -0
  48. package/source/api-data-generators/portal/TicketStatusMapping/test_data_generation_configurations.json +11 -0
  49. package/source/api-data-generators/portal/TicketTemplate/test_data_generation_configurations.json +24 -0
  50. package/source/api-data-generators/portal/Topic/test_data_generation_configurations.json +259 -0
  51. package/source/api-data-generators/portal/Translation/test_data_generation_configurations.json +6 -0
  52. package/source/api-data-generators/portal/ValidationRules/test_data_generation_configurations.json +14 -0
  53. package/source/api-data-generators/portal/View/test_data_generation_configurations.json +19 -0
  54. package/source/api-data-generators/support/Account/test_data_generation_configurations.json +265 -0
  55. package/source/api-data-generators/support/AccountAttachment/test_data_generation_configurations.json +48 -0
  56. package/source/api-data-generators/support/AccountComments/test_data_generation_configurations.json +47 -0
  57. package/source/api-data-generators/support/AccountContactMappingInfo/test_data_generation_configurations.json +14 -0
  58. package/source/api-data-generators/support/AccountFollowers/test_data_generation_configurations.json +52 -0
  59. package/source/api-data-generators/support/AccountSla/test_data_generation_configurations.json +33 -0
  60. package/source/api-data-generators/support/AccountTimeEntry/test_data_generation_configurations.json +45 -0
  61. package/source/api-data-generators/support/ActiveCalls/test_data_generation_configurations.json +38 -0
  62. package/source/api-data-generators/support/Activity/test_data_generation_configurations.json +50 -0
  63. package/source/api-data-generators/support/ActorsAPI/test_data_generation_configurations.json +22 -0
  64. package/source/api-data-generators/support/Agent/test_data_generation_configurations.json +217 -0
  65. package/source/api-data-generators/support/AgentPresence/test_data_generation_configurations.json +30 -0
  66. package/source/api-data-generators/support/AgentSignatures/test_data_generation_configurations.json +31 -0
  67. package/source/api-data-generators/support/AgentTimeEntry/test_data_generation_configurations.json +36 -0
  68. package/source/api-data-generators/support/AntiSpamInfo/test_data_generation_configurations.json +32 -0
  69. package/source/api-data-generators/support/ApiCreditNotificationRule/test_data_generation_configurations.json +49 -0
  70. package/source/api-data-generators/support/ArchivedView/test_data_generation_configurations.json +66 -0
  71. package/source/api-data-generators/support/Article/test_data_generation_configurations.json +294 -0
  72. package/source/api-data-generators/support/ArticleAttachment/test_data_generation_configurations.json +150 -0
  73. package/source/api-data-generators/support/ArticleComment/test_data_generation_configurations.json +238 -0
  74. package/source/api-data-generators/support/ArticleFeedback/test_data_generation_configurations.json +147 -0
  75. package/source/api-data-generators/support/ArticleFeedbackResolution/test_data_generation_configurations.json +56 -0
  76. package/source/api-data-generators/support/ArticleStatistics/test_data_generation_configurations.json +397 -0
  77. package/source/api-data-generators/support/ArticleTranslation/test_data_generation_configurations.json +1123 -0
  78. package/source/api-data-generators/support/ArticleVersion/test_data_generation_configurations.json +26 -0
  79. package/source/api-data-generators/support/ArticleViews/test_data_generation_configurations.json +26 -0
  80. package/source/api-data-generators/support/Asap/test_data_generation_configurations.json +49 -0
  81. package/source/api-data-generators/support/AuditLog/test_data_generation_configurations.json +58 -0
  82. package/source/api-data-generators/support/AutomationAlerts/test_data_generation_configurations.json +27 -0
  83. package/source/api-data-generators/support/AutomationEngine/test_data_generation_configurations.json +20 -0
  84. package/source/api-data-generators/support/AutomationFeatureCount/test_data_generation_configurations.json +13 -0
  85. package/source/api-data-generators/support/AutomationFieldUpdates/test_data_generation_configurations.json +24 -0
  86. package/source/api-data-generators/support/AutomationTask/test_data_generation_configurations.json +29 -0
  87. package/source/api-data-generators/support/Backup/test_data_generation_configurations.json +115 -0
  88. package/source/api-data-generators/support/Badge/test_data_generation_configurations.json +64 -0
  89. package/source/api-data-generators/support/Bot/test_data_generation_configurations.json +288 -0
  90. package/source/api-data-generators/support/BotInference/test_data_generation_configurations.json +119 -0
  91. package/source/api-data-generators/support/BugInteg/test_data_generation_configurations.json +37 -0
  92. package/source/api-data-generators/support/BulkAction/test_data_generation_configurations.json +26 -0
  93. package/source/api-data-generators/support/BulkImport/test_data_generation_configurations.json +211 -0
  94. package/source/api-data-generators/support/BulkUpdate/test_data_generation_configurations.json +40 -0
  95. package/source/api-data-generators/support/BulkWrite/test_data_generation_configurations.json +32 -0
  96. package/source/api-data-generators/support/BusinessHour/test_data_generation_configurations.json +72 -0
  97. package/source/api-data-generators/support/Call/test_data_generation_configurations.json +247 -0
  98. package/source/api-data-generators/support/CallComments/test_data_generation_configurations.json +51 -0
  99. package/source/api-data-generators/support/CallHistory/test_data_generation_configurations.json +65 -0
  100. package/source/api-data-generators/support/CallTimeEntry/test_data_generation_configurations.json +77 -0
  101. package/source/api-data-generators/support/CallTimer/test_data_generation_configurations.json +14 -0
  102. package/source/api-data-generators/support/Channel/test_data_generation_configurations.json +44 -0
  103. package/source/api-data-generators/support/Chart/test_data_generation_configurations.json +35 -0
  104. package/source/api-data-generators/support/ChatTicket/test_data_generation_configurations.json +185 -0
  105. package/source/api-data-generators/support/Common/test_data_generation_configurations.json +43 -0
  106. package/source/api-data-generators/support/Community/test_data_generation_configurations.json +313 -0
  107. package/source/api-data-generators/support/CommunityAttachment/test_data_generation_configurations.json +16 -0
  108. package/source/api-data-generators/support/CommunityCategory/test_data_generation_configurations.json +121 -0
  109. package/source/api-data-generators/support/CommunityComment/test_data_generation_configurations.json +350 -0
  110. package/source/api-data-generators/support/CommunityInitPermissions/test_data_generation_configurations.json +16 -0
  111. package/source/api-data-generators/support/CommunityPreferences/test_data_generation_configurations.json +19 -0
  112. package/source/api-data-generators/support/CommunityTopic/test_data_generation_configurations.json +509 -0
  113. package/source/api-data-generators/support/CommunityTopicInsights/test_data_generation_configurations.json +32 -0
  114. package/source/api-data-generators/support/CommunityUser/test_data_generation_configurations.json +63 -0
  115. package/source/api-data-generators/support/Contact/test_data_generation_configurations.json +370 -0
  116. package/source/api-data-generators/support/ContactAttachment/test_data_generation_configurations.json +44 -0
  117. package/source/api-data-generators/support/ContactComments/test_data_generation_configurations.json +47 -0
  118. package/source/api-data-generators/support/ContactFollowers/test_data_generation_configurations.json +52 -0
  119. package/source/api-data-generators/support/ContactProfile/test_data_generation_configurations.json +11 -0
  120. package/source/api-data-generators/support/ContactTimeEntry/test_data_generation_configurations.json +45 -0
  121. package/source/api-data-generators/support/Contract/test_data_generation_configurations.json +184 -0
  122. package/source/api-data-generators/support/ContractAttachment/test_data_generation_configurations.json +30 -0
  123. package/source/api-data-generators/support/CreateTicket/test_data_generation_configurations.json +93 -0
  124. package/source/api-data-generators/support/Criteria/test_data_generation_configurations.json +19 -0
  125. package/source/api-data-generators/support/CrmInteg/test_data_generation_configurations.json +202 -0
  126. package/source/api-data-generators/support/CustomAction/test_data_generation_configurations.json +56 -0
  127. package/source/api-data-generators/support/CustomActionRuleMapping/test_data_generation_configurations.json +334 -0
  128. package/source/api-data-generators/support/CustomButton/test_data_generation_configurations.json +113 -0
  129. package/source/api-data-generators/support/CustomFunctionExecutionLogs/test_data_generation_configurations.json +68 -0
  130. package/source/api-data-generators/support/CustomFunctionGallery/test_data_generation_configurations.json +16 -0
  131. package/source/api-data-generators/support/CustomFunctions/test_data_generation_configurations.json +270 -0
  132. package/source/api-data-generators/support/CustomTheme/test_data_generation_configurations.json +70 -0
  133. package/source/api-data-generators/support/CustomView/test_data_generation_configurations.json +486 -0
  134. package/source/api-data-generators/support/CustomerHappiness/test_data_generation_configurations.json +77 -0
  135. package/source/api-data-generators/support/DashboardComponent/test_data_generation_configurations.json +305 -0
  136. package/source/api-data-generators/support/DashboardFolder/test_data_generation_configurations.json +126 -0
  137. package/source/api-data-generators/support/DashboardMetrics/test_data_generation_configurations.json +205 -0
  138. package/source/api-data-generators/support/Dashboards/test_data_generation_configurations.json +90 -0
  139. package/source/api-data-generators/support/DataChips/test_data_generation_configurations.json +33 -0
  140. package/source/api-data-generators/support/DataSync/test_data_generation_configurations.json +228 -0
  141. package/source/api-data-generators/support/DeleteTicket/test_data_generation_configurations.json +44 -0
  142. package/source/api-data-generators/support/Department/test_data_generation_configurations.json +156 -0
  143. package/source/api-data-generators/support/DependencyMappings/test_data_generation_configurations.json +50 -0
  144. package/source/api-data-generators/support/DirectAssignRuleTarget/test_data_generation_configurations.json +17 -0
  145. package/source/api-data-generators/support/DirectAssignmentRules/test_data_generation_configurations.json +37 -0
  146. package/source/api-data-generators/support/DisplayEntity/test_data_generation_configurations.json +45 -0
  147. package/source/api-data-generators/support/DomainMapping/test_data_generation_configurations.json +6 -0
  148. package/source/api-data-generators/support/EmailFailureAlert/test_data_generation_configurations.json +21 -0
  149. package/source/api-data-generators/support/EmailTemplates/test_data_generation_configurations.json +106 -0
  150. package/source/api-data-generators/support/EntityBlueprints/test_data_generation_configurations.json +205 -0
  151. package/source/api-data-generators/support/Event/test_data_generation_configurations.json +196 -0
  152. package/source/api-data-generators/support/EventComments/test_data_generation_configurations.json +45 -0
  153. package/source/api-data-generators/support/EventTimeEntry/test_data_generation_configurations.json +77 -0
  154. package/source/api-data-generators/support/EventTimer/test_data_generation_configurations.json +14 -0
  155. package/source/api-data-generators/support/Extension/test_data_generation_configurations.json +689 -0
  156. package/source/api-data-generators/support/FbManager/test_data_generation_configurations.json +64 -0
  157. package/source/api-data-generators/support/Feature/test_data_generation_configurations.json +61 -0
  158. package/source/api-data-generators/support/FeatureFile/test_data_generation_configurations.json +49 -0
  159. package/source/api-data-generators/support/FeatureFolder/test_data_generation_configurations.json +44 -0
  160. package/source/api-data-generators/support/FeaturePermission/test_data_generation_configurations.json +108 -0
  161. package/source/api-data-generators/support/FederatedLogin/test_data_generation_configurations.json +39 -0
  162. package/source/api-data-generators/support/FeedsAPIs/test_data_generation_configurations.json +54 -0
  163. package/source/api-data-generators/support/Field/test_data_generation_configurations.json +1031 -0
  164. package/source/api-data-generators/support/FieldPrediction/test_data_generation_configurations.json +564 -0
  165. package/source/api-data-generators/support/FileExport/test_data_generation_configurations.json +36 -0
  166. package/source/api-data-generators/support/Finance/test_data_generation_configurations.json +180 -0
  167. package/source/api-data-generators/support/Followers/test_data_generation_configurations.json +60 -0
  168. package/source/api-data-generators/support/GC_Bots/test_data_generation_configurations.json +26 -0
  169. package/source/api-data-generators/support/GC_Guide/test_data_generation_configurations.json +240 -0
  170. package/source/api-data-generators/support/GenericAction/test_data_generation_configurations.json +16 -0
  171. package/source/api-data-generators/support/GenericActionMapping/test_data_generation_configurations.json +216 -0
  172. package/source/api-data-generators/support/GoogleAnalytics/test_data_generation_configurations.json +168 -0
  173. package/source/api-data-generators/support/GoogleChat/test_data_generation_configurations.json +29 -0
  174. package/source/api-data-generators/support/Helpcenter/test_data_generation_configurations.json +98 -0
  175. package/source/api-data-generators/support/HelpcenterAutoTranslateSetting/test_data_generation_configurations.json +11 -0
  176. package/source/api-data-generators/support/HelpcenterGroups/test_data_generation_configurations.json +93 -0
  177. package/source/api-data-generators/support/HelpcenterPages/test_data_generation_configurations.json +34 -0
  178. package/source/api-data-generators/support/HelpcenterPreference/test_data_generation_configurations.json +18 -0
  179. package/source/api-data-generators/support/HelpcenterUpload/test_data_generation_configurations.json +25 -0
  180. package/source/api-data-generators/support/HolidayList/test_data_generation_configurations.json +65 -0
  181. package/source/api-data-generators/support/IMCannedMessage/test_data_generation_configurations.json +155 -0
  182. package/source/api-data-generators/support/IMCannedMessageTranslation/test_data_generation_configurations.json +92 -0
  183. package/source/api-data-generators/support/IMTemplateMessage/test_data_generation_configurations.json +22 -0
  184. package/source/api-data-generators/support/IM_AddOn/test_data_generation_configurations.json +19 -0
  185. package/source/api-data-generators/support/IM_Bot/test_data_generation_configurations.json +143 -0
  186. package/source/api-data-generators/support/IM_Broadcast/test_data_generation_configurations.json +39 -0
  187. package/source/api-data-generators/support/IM_Channel/test_data_generation_configurations.json +312 -0
  188. package/source/api-data-generators/support/IM_ChannelPreference/test_data_generation_configurations.json +35 -0
  189. package/source/api-data-generators/support/IM_Contact/test_data_generation_configurations.json +16 -0
  190. package/source/api-data-generators/support/IM_Integration/test_data_generation_configurations.json +32 -0
  191. package/source/api-data-generators/support/IM_Message/test_data_generation_configurations.json +297 -0
  192. package/source/api-data-generators/support/IM_Metrics/test_data_generation_configurations.json +38 -0
  193. package/source/api-data-generators/support/IM_Search/test_data_generation_configurations.json +56 -0
  194. package/source/api-data-generators/support/IM_Session/test_data_generation_configurations.json +149 -0
  195. package/source/api-data-generators/support/IM_TimeSeriesMetrics/test_data_generation_configurations.json +77 -0
  196. package/source/api-data-generators/support/IM_ZiaGpt/test_data_generation_configurations.json +52 -0
  197. package/source/api-data-generators/support/Import/test_data_generation_configurations.json +229 -0
  198. package/source/api-data-generators/support/InlineImage/test_data_generation_configurations.json +16 -0
  199. package/source/api-data-generators/support/IntegModule/test_data_generation_configurations.json +90 -0
  200. package/source/api-data-generators/support/Integrations/test_data_generation_configurations.json +25 -0
  201. package/source/api-data-generators/support/InteractiveTours/test_data_generation_configurations.json +66 -0
  202. package/source/api-data-generators/support/JWT/test_data_generation_configurations.json +49 -0
  203. package/source/api-data-generators/support/KBCategoryUser/test_data_generation_configurations.json +23 -0
  204. package/source/api-data-generators/support/KBRecycleBin/test_data_generation_configurations.json +131 -0
  205. package/source/api-data-generators/support/KBRootCategory/test_data_generation_configurations.json +214 -0
  206. package/source/api-data-generators/support/KBRootCategoryTranslation/test_data_generation_configurations.json +30 -0
  207. package/source/api-data-generators/support/KBSection/test_data_generation_configurations.json +173 -0
  208. package/source/api-data-generators/support/KPIWidget/test_data_generation_configurations.json +21 -0
  209. package/source/api-data-generators/support/KbCategory/test_data_generation_configurations.json +93 -0
  210. package/source/api-data-generators/support/Label/test_data_generation_configurations.json +103 -0
  211. package/source/api-data-generators/support/Layout/test_data_generation_configurations.json +503 -0
  212. package/source/api-data-generators/support/LayoutRuleCriteria/test_data_generation_configurations.json +19 -0
  213. package/source/api-data-generators/support/LayoutRules/test_data_generation_configurations.json +334 -0
  214. package/source/api-data-generators/support/License/test_data_generation_configurations.json +60 -0
  215. package/source/api-data-generators/support/Livecall/test_data_generation_configurations.json +72 -0
  216. package/source/api-data-generators/support/LookupRecord/test_data_generation_configurations.json +34 -0
  217. package/source/api-data-generators/support/Macros/test_data_generation_configurations.json +184 -0
  218. package/source/api-data-generators/support/MailReplyAddress/test_data_generation_configurations.json +32 -0
  219. package/source/api-data-generators/support/MassAction/test_data_generation_configurations.json +38 -0
  220. package/source/api-data-generators/support/Message/test_data_generation_configurations.json +38 -0
  221. package/source/api-data-generators/support/MicrosoftTeams/test_data_generation_configurations.json +50 -0
  222. package/source/api-data-generators/support/Misc/test_data_generation_configurations.json +16 -0
  223. package/source/api-data-generators/support/Module/test_data_generation_configurations.json +96 -0
  224. package/source/api-data-generators/support/NewCriteria/test_data_generation_configurations.json +26 -0
  225. package/source/api-data-generators/support/NewFeatureFields/test_data_generation_configurations.json +19 -0
  226. package/source/api-data-generators/support/NewTicketHistory/test_data_generation_configurations.json +20 -0
  227. package/source/api-data-generators/support/NotificationRules/test_data_generation_configurations.json +27 -0
  228. package/source/api-data-generators/support/OEmbedData/test_data_generation_configurations.json +19 -0
  229. package/source/api-data-generators/support/Onboarding/test_data_generation_configurations.json +29 -0
  230. package/source/api-data-generators/support/Organization/test_data_generation_configurations.json +79 -0
  231. package/source/api-data-generators/support/PBGroup/test_data_generation_configurations.json +109 -0
  232. package/source/api-data-generators/support/PBGroupAgents/test_data_generation_configurations.json +66 -0
  233. package/source/api-data-generators/support/PBPlatform/test_data_generation_configurations.json +113 -0
  234. package/source/api-data-generators/support/PBX/test_data_generation_configurations.json +28 -0
  235. package/source/api-data-generators/support/PBXConfig/test_data_generation_configurations.json +17 -0
  236. package/source/api-data-generators/support/PBXPhoneNumbers/test_data_generation_configurations.json +54 -0
  237. package/source/api-data-generators/support/PBXPreference/test_data_generation_configurations.json +54 -0
  238. package/source/api-data-generators/support/PageSense/test_data_generation_configurations.json +77 -0
  239. package/source/api-data-generators/support/PendingApproval/test_data_generation_configurations.json +14 -0
  240. package/source/api-data-generators/support/Permalink/test_data_generation_configurations.json +32 -0
  241. package/source/api-data-generators/support/PhoneAgents/test_data_generation_configurations.json +66 -0
  242. package/source/api-data-generators/support/PinnedConversation/test_data_generation_configurations.json +64 -0
  243. package/source/api-data-generators/support/Pipeline_Service/test_data_generation_configurations.json +32 -0
  244. package/source/api-data-generators/support/Product/test_data_generation_configurations.json +196 -0
  245. package/source/api-data-generators/support/ProductAttachment/test_data_generation_configurations.json +48 -0
  246. package/source/api-data-generators/support/Profile/test_data_generation_configurations.json +59 -0
  247. package/source/api-data-generators/support/QueueView/test_data_generation_configurations.json +37 -0
  248. package/source/api-data-generators/support/Records/test_data_generation_configurations.json +239 -0
  249. package/source/api-data-generators/support/Recyclebin/test_data_generation_configurations.json +52 -0
  250. package/source/api-data-generators/support/RemoteAuth/test_data_generation_configurations.json +52 -0
  251. package/source/api-data-generators/support/Report/test_data_generation_configurations.json +538 -0
  252. package/source/api-data-generators/support/ReportChart/test_data_generation_configurations.json +28 -0
  253. package/source/api-data-generators/support/ReportFolder/test_data_generation_configurations.json +100 -0
  254. package/source/api-data-generators/support/Resources/test_data_generation_configurations.json +29 -0
  255. package/source/api-data-generators/support/Role/test_data_generation_configurations.json +84 -0
  256. package/source/api-data-generators/support/RoundRobin/test_data_generation_configurations.json +58 -0
  257. package/source/api-data-generators/support/RoundRobinTarget/test_data_generation_configurations.json +50 -0
  258. package/source/api-data-generators/support/RoutingPreference/test_data_generation_configurations.json +29 -0
  259. package/source/api-data-generators/support/SLAMetaInfo/test_data_generation_configurations.json +22 -0
  260. package/source/api-data-generators/support/Saml/test_data_generation_configurations.json +42 -0
  261. package/source/api-data-generators/support/Sandbox/test_data_generation_configurations.json +92 -0
  262. package/source/api-data-generators/support/SandboxChangeset/test_data_generation_configurations.json +46 -0
  263. package/source/api-data-generators/support/SandboxDeployment/test_data_generation_configurations.json +50 -0
  264. package/source/api-data-generators/support/SandboxDeploymentLogs/test_data_generation_configurations.json +22 -0
  265. package/source/api-data-generators/support/SavedFilters/test_data_generation_configurations.json +203 -0
  266. package/source/api-data-generators/support/Schedule/test_data_generation_configurations.json +172 -0
  267. package/source/api-data-generators/support/ScheduleReplyInfo/test_data_generation_configurations.json +182 -0
  268. package/source/api-data-generators/support/Search/test_data_generation_configurations.json +636 -0
  269. package/source/api-data-generators/support/SearchInteg/test_data_generation_configurations.json +32 -0
  270. package/source/api-data-generators/support/Setup/test_data_generation_configurations.json +32 -0
  271. package/source/api-data-generators/support/SharedSnippet/test_data_generation_configurations.json +62 -0
  272. package/source/api-data-generators/support/Signature/test_data_generation_configurations.json +24 -0
  273. package/source/api-data-generators/support/Skill/test_data_generation_configurations.json +164 -0
  274. package/source/api-data-generators/support/SkillConfiguration/test_data_generation_configurations.json +21 -0
  275. package/source/api-data-generators/support/SkillType/test_data_generation_configurations.json +60 -0
  276. package/source/api-data-generators/support/Slack/test_data_generation_configurations.json +51 -0
  277. package/source/api-data-generators/support/SmsTemplates/test_data_generation_configurations.json +40 -0
  278. package/source/api-data-generators/support/Snippets/test_data_generation_configurations.json +47 -0
  279. package/source/api-data-generators/support/SocialInteg/test_data_generation_configurations.json +22 -0
  280. package/source/api-data-generators/support/SocialPosts/test_data_generation_configurations.json +223 -0
  281. package/source/api-data-generators/support/SocialTwitterConversations/test_data_generation_configurations.json +22 -0
  282. package/source/api-data-generators/support/StarredTemplates/test_data_generation_configurations.json +76 -0
  283. package/source/api-data-generators/support/SubjectAccessRequest/test_data_generation_configurations.json +104 -0
  284. package/source/api-data-generators/support/Supervise/test_data_generation_configurations.json +43 -0
  285. package/source/api-data-generators/support/SupportPlan/test_data_generation_configurations.json +65 -0
  286. package/source/api-data-generators/support/Tab/test_data_generation_configurations.json +29 -0
  287. package/source/api-data-generators/support/Target/test_data_generation_configurations.json +97 -0
  288. package/source/api-data-generators/support/Task/test_data_generation_configurations.json +219 -0
  289. package/source/api-data-generators/support/TaskAttachment/test_data_generation_configurations.json +42 -0
  290. package/source/api-data-generators/support/TaskComments/test_data_generation_configurations.json +45 -0
  291. package/source/api-data-generators/support/TaskTimeEntry/test_data_generation_configurations.json +87 -0
  292. package/source/api-data-generators/support/TaskTimer/test_data_generation_configurations.json +27 -0
  293. package/source/api-data-generators/support/Team/test_data_generation_configurations.json +115 -0
  294. package/source/api-data-generators/support/TemplateFolders/test_data_generation_configurations.json +72 -0
  295. package/source/api-data-generators/support/Thread/test_data_generation_configurations.json +383 -0
  296. package/source/api-data-generators/support/Ticket/test_data_generation_configurations.json +694 -0
  297. package/source/api-data-generators/support/TicketApprovals/test_data_generation_configurations.json +66 -0
  298. package/source/api-data-generators/support/TicketAttachment/test_data_generation_configurations.json +58 -0
  299. package/source/api-data-generators/support/TicketComment/test_data_generation_configurations.json +82 -0
  300. package/source/api-data-generators/support/TicketCount/test_data_generation_configurations.json +43 -0
  301. package/source/api-data-generators/support/TicketFollowers/test_data_generation_configurations.json +65 -0
  302. package/source/api-data-generators/support/TicketMetrics/test_data_generation_configurations.json +16 -0
  303. package/source/api-data-generators/support/TicketTag/test_data_generation_configurations.json +99 -0
  304. package/source/api-data-generators/support/TicketTemplate/test_data_generation_configurations.json +475 -0
  305. package/source/api-data-generators/support/TicketTimeEntry/test_data_generation_configurations.json +110 -0
  306. package/source/api-data-generators/support/TicketTimer/test_data_generation_configurations.json +48 -0
  307. package/source/api-data-generators/support/TicketWithChildren/test_data_generation_configurations.json +91 -0
  308. package/source/api-data-generators/support/TimeTracking/test_data_generation_configurations.json +46 -0
  309. package/source/api-data-generators/support/TranslationLanguages/test_data_generation_configurations.json +68 -0
  310. package/source/api-data-generators/support/Upload/test_data_generation_configurations.json +54 -0
  311. package/source/api-data-generators/support/User/test_data_generation_configurations.json +100 -0
  312. package/source/api-data-generators/support/UserAuthentication/test_data_generation_configurations.json +49 -0
  313. package/source/api-data-generators/support/UserPresence/test_data_generation_configurations.json +19 -0
  314. package/source/api-data-generators/support/ValidationRuleCriteria/test_data_generation_configurations.json +19 -0
  315. package/source/api-data-generators/support/ValidationRules/test_data_generation_configurations.json +321 -0
  316. package/source/api-data-generators/support/Webhook/test_data_generation_configurations.json +501 -0
  317. package/source/api-data-generators/support/Widget/test_data_generation_configurations.json +166 -0
  318. package/source/api-data-generators/support/ZIAAnswerbotInference/test_data_generation_configurations.json +26 -0
  319. package/source/api-data-generators/support/ZIADocumentData/test_data_generation_configurations.json +38 -0
  320. package/source/api-data-generators/support/ZIAVectorSearch/test_data_generation_configurations.json +22 -0
  321. package/source/api-data-generators/support/ZiaGPT/test_data_generation_configurations.json +19 -0
  322. package/source/api-data-generators/support/ZiaScheduler/test_data_generation_configurations.json +22 -0
  323. package/source/api-data-generators/support/ZiapoweredbyGPT/test_data_generation_configurations.json +33 -0
  324. package/source/api-data-generators/support/Zwitch/test_data_generation_configurations.json +71 -0
  325. package/source/api-data-generators/support/blueprintDrafts/test_data_generation_configurations.json +859 -0
  326. package/source/api-data-generators/support/blueprintTransitions/test_data_generation_configurations.json +26 -0
  327. package/source/api-data-generators/support/blueprints/test_data_generation_configurations.json +652 -0
  328. package/source/api-data-generators/support/borrow_book/test_data_generation_configurations.json +21 -0
  329. package/source/api-data-generators/support/zlabsnlp/test_data_generation_configurations.json +50 -0
  330. package/source/openapi-specifications/v1.0/common/Common.json +587 -0
  331. package/source/openapi-specifications/v1.0/portal/Account.json +183 -0
  332. package/source/openapi-specifications/v1.0/portal/ArticleComment.json +1103 -0
  333. package/source/openapi-specifications/v1.0/portal/ArticleFeedback.json +133 -0
  334. package/source/openapi-specifications/v1.0/portal/AsapMobile.json +712 -0
  335. package/source/openapi-specifications/v1.0/portal/AsapWeb.json +91 -0
  336. package/source/openapi-specifications/v1.0/portal/Attachment.json +122 -0
  337. package/source/openapi-specifications/v1.0/portal/Captcha.json +334 -0
  338. package/source/openapi-specifications/v1.0/portal/Category.json +1061 -0
  339. package/source/openapi-specifications/v1.0/portal/Comment.json +1546 -0
  340. package/source/openapi-specifications/v1.0/portal/Community.json +235 -0
  341. package/source/openapi-specifications/v1.0/portal/CommunityUser.json +296 -0
  342. package/source/openapi-specifications/v1.0/portal/Contact.json +536 -0
  343. package/source/openapi-specifications/v1.0/portal/CustomerHappiness.json +163 -0
  344. package/source/openapi-specifications/v1.0/portal/Department.json +246 -0
  345. package/source/openapi-specifications/v1.0/portal/Extension.json +1122 -0
  346. package/source/openapi-specifications/v1.0/portal/FeedbackWidget.json +96 -0
  347. package/source/openapi-specifications/v1.0/portal/Field.json +1239 -0
  348. package/source/openapi-specifications/v1.0/portal/FileExport.json +313 -0
  349. package/source/openapi-specifications/v1.0/portal/Followers.json +802 -0
  350. package/source/openapi-specifications/v1.0/portal/Gamification.json +819 -0
  351. package/source/openapi-specifications/v1.0/portal/HashTags.json +61 -0
  352. package/source/openapi-specifications/v1.0/portal/HelpCenterUser.json +605 -0
  353. package/source/openapi-specifications/v1.0/portal/HelpCenterUserPreference.json +148 -0
  354. package/source/openapi-specifications/v1.0/portal/Helpcenter.json +920 -0
  355. package/source/openapi-specifications/v1.0/portal/HelpcenterGroups.json +118 -0
  356. package/source/openapi-specifications/v1.0/portal/HelpcenterPages.json +184 -0
  357. package/source/openapi-specifications/v1.0/portal/KBCategoryTranslation.json +70 -0
  358. package/source/openapi-specifications/v1.0/portal/KBRootCategory.json +1310 -0
  359. package/source/openapi-specifications/v1.0/portal/KbCategory.json +1525 -0
  360. package/source/openapi-specifications/v1.0/portal/KbSection.json +515 -0
  361. package/source/openapi-specifications/v1.0/portal/Label.json +172 -0
  362. package/source/openapi-specifications/v1.0/portal/Layout.json +303 -0
  363. package/source/openapi-specifications/v1.0/portal/LayoutRules.json +375 -0
  364. package/source/openapi-specifications/v1.0/portal/Mentions.json +580 -0
  365. package/source/openapi-specifications/v1.0/portal/NewAsapMobile.json +699 -0
  366. package/source/openapi-specifications/v1.0/portal/Permalink.json +265 -0
  367. package/source/openapi-specifications/v1.0/portal/Placeholders.json +57 -0
  368. package/source/openapi-specifications/v1.0/portal/Product.json +401 -0
  369. package/source/openapi-specifications/v1.0/portal/Solution.json +3766 -0
  370. package/source/openapi-specifications/v1.0/portal/Thread.json +821 -0
  371. package/source/openapi-specifications/v1.0/portal/Ticket.json +2636 -0
  372. package/source/openapi-specifications/v1.0/portal/TicketComment.json +822 -0
  373. package/source/openapi-specifications/v1.0/portal/TicketCount.json +336 -0
  374. package/source/openapi-specifications/v1.0/portal/TicketExport.json +609 -0
  375. package/source/openapi-specifications/v1.0/portal/TicketField.json +358 -0
  376. package/source/openapi-specifications/v1.0/portal/TicketForm.json +517 -0
  377. package/source/openapi-specifications/v1.0/portal/TicketStatusMapping.json +155 -0
  378. package/source/openapi-specifications/v1.0/portal/TicketTemplate.json +409 -0
  379. package/source/openapi-specifications/v1.0/portal/TicketsViewCount.json +175 -0
  380. package/source/openapi-specifications/v1.0/portal/Topic.json +4079 -0
  381. package/source/openapi-specifications/v1.0/portal/Translation.json +174 -0
  382. package/source/openapi-specifications/v1.0/portal/Upload.json +156 -0
  383. package/source/openapi-specifications/v1.0/portal/ValidationRules.json +309 -0
  384. package/source/openapi-specifications/v1.0/portal/View.json +353 -0
  385. package/source/openapi-specifications/v1.0/portal/Widget.json +218 -0
  386. package/source/openapi-specifications/v1.0/support/AEAdminTool.json +354 -0
  387. package/source/openapi-specifications/v1.0/support/Account.json +3206 -0
  388. package/source/openapi-specifications/v1.0/support/AccountAttachment.json +484 -0
  389. package/source/openapi-specifications/v1.0/support/AccountComments.json +794 -0
  390. package/source/openapi-specifications/v1.0/support/AccountContactMappingInfo.json +227 -0
  391. package/source/openapi-specifications/v1.0/support/AccountDeduplication.json +578 -0
  392. package/source/openapi-specifications/v1.0/support/AccountFollowers.json +350 -0
  393. package/source/openapi-specifications/v1.0/support/AccountSla.json +341 -0
  394. package/source/openapi-specifications/v1.0/support/AccountTimeEntry.json +1152 -0
  395. package/source/openapi-specifications/v1.0/support/ActiveCalls.json +573 -0
  396. package/source/openapi-specifications/v1.0/support/Activity.json +1400 -0
  397. package/source/openapi-specifications/v1.0/support/Actor.json +88 -0
  398. package/source/openapi-specifications/v1.0/support/ActorsAPI.json +304 -0
  399. package/source/openapi-specifications/v1.0/support/AdminTool.json +489 -0
  400. package/source/openapi-specifications/v1.0/support/Agent.json +6685 -0
  401. package/source/openapi-specifications/v1.0/support/AgentPresence.json +567 -0
  402. package/source/openapi-specifications/v1.0/support/AgentRoom.json +1997 -0
  403. package/source/openapi-specifications/v1.0/support/AgentSignatures.json +359 -0
  404. package/source/openapi-specifications/v1.0/support/AgentTimeEntry.json +1402 -0
  405. package/source/openapi-specifications/v1.0/support/AntiSpamInfo.json +510 -0
  406. package/source/openapi-specifications/v1.0/support/ApiCreditNotificationRule.json +1189 -0
  407. package/source/openapi-specifications/v1.0/support/ApiDashboard.json +543 -0
  408. package/source/openapi-specifications/v1.0/support/ApplicationFlags.json +155 -0
  409. package/source/openapi-specifications/v1.0/support/ArchivedView.json +469 -0
  410. package/source/openapi-specifications/v1.0/support/Article.json +5060 -0
  411. package/source/openapi-specifications/v1.0/support/ArticleAttachment.json +544 -0
  412. package/source/openapi-specifications/v1.0/support/ArticleComment.json +1929 -0
  413. package/source/openapi-specifications/v1.0/support/ArticleExternalImageUrlResponse.json +56 -0
  414. package/source/openapi-specifications/v1.0/support/ArticleFeedback.json +1314 -0
  415. package/source/openapi-specifications/v1.0/support/ArticleFeedbackResolution.json +513 -0
  416. package/source/openapi-specifications/v1.0/support/ArticleHistory.json +2510 -0
  417. package/source/openapi-specifications/v1.0/support/ArticleStatistics.json +3053 -0
  418. package/source/openapi-specifications/v1.0/support/ArticleTranslation.json +7530 -0
  419. package/source/openapi-specifications/v1.0/support/ArticleVersion.json +184 -0
  420. package/source/openapi-specifications/v1.0/support/ArticleViews.json +564 -0
  421. package/source/openapi-specifications/v1.0/support/Asap.json +1525 -0
  422. package/source/openapi-specifications/v1.0/support/AsapModule.json +246 -0
  423. package/source/openapi-specifications/v1.0/support/AsapStatus.json +199 -0
  424. package/source/openapi-specifications/v1.0/support/AssistInteg.json +613 -0
  425. package/source/openapi-specifications/v1.0/support/AttachmentRestriction.json +786 -0
  426. package/source/openapi-specifications/v1.0/support/AuditLog.json +1122 -0
  427. package/source/openapi-specifications/v1.0/support/AutomatedSummaryForChats.json +702 -0
  428. package/source/openapi-specifications/v1.0/support/AutomationAlerts.json +868 -0
  429. package/source/openapi-specifications/v1.0/support/AutomationEngine.json +1181 -0
  430. package/source/openapi-specifications/v1.0/support/AutomationFeatureCount.json +207 -0
  431. package/source/openapi-specifications/v1.0/support/AutomationFieldUpdates.json +809 -0
  432. package/source/openapi-specifications/v1.0/support/AutomationTask.json +1054 -0
  433. package/source/openapi-specifications/v1.0/support/Backup.json +2845 -0
  434. package/source/openapi-specifications/v1.0/support/Badge.json +544 -0
  435. package/source/openapi-specifications/v1.0/support/Bot.json +2103 -0
  436. package/source/openapi-specifications/v1.0/support/BotInference.json +1071 -0
  437. package/source/openapi-specifications/v1.0/support/BotResources.json +175 -0
  438. package/source/openapi-specifications/v1.0/support/BotStaticResources.json +541 -0
  439. package/source/openapi-specifications/v1.0/support/Bot_UserInfo.json +63 -0
  440. package/source/openapi-specifications/v1.0/support/Bots.json +58 -0
  441. package/source/openapi-specifications/v1.0/support/BugInteg.json +481 -0
  442. package/source/openapi-specifications/v1.0/support/BulkAction.json +150 -0
  443. package/source/openapi-specifications/v1.0/support/BulkImport.json +2845 -0
  444. package/source/openapi-specifications/v1.0/support/BulkUpdate.json +743 -0
  445. package/source/openapi-specifications/v1.0/support/BulkWrite.json +678 -0
  446. package/source/openapi-specifications/v1.0/support/BusinessHour.json +1344 -0
  447. package/source/openapi-specifications/v1.0/support/Call.json +3839 -0
  448. package/source/openapi-specifications/v1.0/support/CallComments.json +721 -0
  449. package/source/openapi-specifications/v1.0/support/CallHistory.json +936 -0
  450. package/source/openapi-specifications/v1.0/support/CallTimeEntry.json +1745 -0
  451. package/source/openapi-specifications/v1.0/support/CallTimer.json +285 -0
  452. package/source/openapi-specifications/v1.0/support/Channel.json +730 -0
  453. package/source/openapi-specifications/v1.0/support/Chart.json +422 -0
  454. package/source/openapi-specifications/v1.0/support/ChatTicket.json +553 -0
  455. package/source/openapi-specifications/v1.0/support/ClientAction.json +1834 -0
  456. package/source/openapi-specifications/v1.0/support/ClientEvent.json +780 -0
  457. package/source/openapi-specifications/v1.0/support/CliqIntegJsonMapping.json +1123 -0
  458. package/source/openapi-specifications/v1.0/support/CloudAttachment.json +528 -0
  459. package/source/openapi-specifications/v1.0/support/CommonMassActionError.json +44 -0
  460. package/source/openapi-specifications/v1.0/support/CommonMassActionResponse.json +94 -0
  461. package/source/openapi-specifications/v1.0/support/Community.json +2545 -0
  462. package/source/openapi-specifications/v1.0/support/CommunityAttachment.json +249 -0
  463. package/source/openapi-specifications/v1.0/support/CommunityCategory.json +1896 -0
  464. package/source/openapi-specifications/v1.0/support/CommunityCategoryLogo.json +145 -0
  465. package/source/openapi-specifications/v1.0/support/CommunityComment.json +2492 -0
  466. package/source/openapi-specifications/v1.0/support/CommunityInitPermissions.json +129 -0
  467. package/source/openapi-specifications/v1.0/support/CommunityPreferences.json +343 -0
  468. package/source/openapi-specifications/v1.0/support/CommunitySearch.json +78 -0
  469. package/source/openapi-specifications/v1.0/support/CommunityTopic.json +6005 -0
  470. package/source/openapi-specifications/v1.0/support/CommunityTopicInsights.json +310 -0
  471. package/source/openapi-specifications/v1.0/support/CommunityUser.json +822 -0
  472. package/source/openapi-specifications/v1.0/support/Composite.json +414 -0
  473. package/source/openapi-specifications/v1.0/support/Contact.json +4691 -0
  474. package/source/openapi-specifications/v1.0/support/ContactAttachment.json +484 -0
  475. package/source/openapi-specifications/v1.0/support/ContactComments.json +769 -0
  476. package/source/openapi-specifications/v1.0/support/ContactDeduplication.json +683 -0
  477. package/source/openapi-specifications/v1.0/support/ContactFollowers.json +350 -0
  478. package/source/openapi-specifications/v1.0/support/ContactProfile.json +195 -0
  479. package/source/openapi-specifications/v1.0/support/ContactTimeEntry.json +1157 -0
  480. package/source/openapi-specifications/v1.0/support/Contract.json +2877 -0
  481. package/source/openapi-specifications/v1.0/support/ContractAttachment.json +307 -0
  482. package/source/openapi-specifications/v1.0/support/Conversation.json +570 -0
  483. package/source/openapi-specifications/v1.0/support/CountriesAndLanguages.json +5279 -0
  484. package/source/openapi-specifications/v1.0/support/CreditCycle.json +124 -0
  485. package/source/openapi-specifications/v1.0/support/Criteria.json +1014 -0
  486. package/source/openapi-specifications/v1.0/support/CriteriaValue.json +50 -0
  487. package/source/openapi-specifications/v1.0/support/CrmInteg.json +5938 -0
  488. package/source/openapi-specifications/v1.0/support/CustomAction.json +2106 -0
  489. package/source/openapi-specifications/v1.0/support/CustomActionRuleMapping.json +1327 -0
  490. package/source/openapi-specifications/v1.0/support/CustomButton.json +1898 -0
  491. package/source/openapi-specifications/v1.0/support/CustomFunctionExecutionLogs.json +883 -0
  492. package/source/openapi-specifications/v1.0/support/CustomFunctionGallery.json +329 -0
  493. package/source/openapi-specifications/v1.0/support/CustomFunctionReRun.json +317 -0
  494. package/source/openapi-specifications/v1.0/support/CustomFunctionZiaCopilot.json +379 -0
  495. package/source/openapi-specifications/v1.0/support/CustomFunctions.json +3457 -0
  496. package/source/openapi-specifications/v1.0/support/CustomModuleAdminTool.json +81 -0
  497. package/source/openapi-specifications/v1.0/support/CustomTheme.json +7391 -0
  498. package/source/openapi-specifications/v1.0/support/CustomView.json +3478 -0
  499. package/source/openapi-specifications/v1.0/support/CustomerHappiness.json +464 -0
  500. package/source/openapi-specifications/v1.0/support/DBThrottle.json +334 -0
  501. package/source/openapi-specifications/v1.0/support/DashboardComponent.json +1163 -0
  502. package/source/openapi-specifications/v1.0/support/DashboardFolder.json +1258 -0
  503. package/source/openapi-specifications/v1.0/support/DashboardMetrics.json +2310 -0
  504. package/source/openapi-specifications/v1.0/support/Dashboards.json +1219 -0
  505. package/source/openapi-specifications/v1.0/support/DataChips.json +477 -0
  506. package/source/openapi-specifications/v1.0/support/DataImport.json +1099 -0
  507. package/source/openapi-specifications/v1.0/support/DataSync.json +1246 -0
  508. package/source/openapi-specifications/v1.0/support/DatasetEntry.json +153 -0
  509. package/source/openapi-specifications/v1.0/support/Department.json +1971 -0
  510. package/source/openapi-specifications/v1.0/support/DependencyMappings.json +656 -0
  511. package/source/openapi-specifications/v1.0/support/DirectAssignRuleTarget.json +232 -0
  512. package/source/openapi-specifications/v1.0/support/DirectAssignmentRules.json +722 -0
  513. package/source/openapi-specifications/v1.0/support/DisplayEntity.json +91 -0
  514. package/source/openapi-specifications/v1.0/support/DomainMapping.json +1143 -0
  515. package/source/openapi-specifications/v1.0/support/EmailFailureAlert.json +306 -0
  516. package/source/openapi-specifications/v1.0/support/EmailTemplates.json +1491 -0
  517. package/source/openapi-specifications/v1.0/support/EntityBlueprints.json +572 -0
  518. package/source/openapi-specifications/v1.0/support/Event.json +3607 -0
  519. package/source/openapi-specifications/v1.0/support/EventComments.json +737 -0
  520. package/source/openapi-specifications/v1.0/support/EventTimeEntry.json +1520 -0
  521. package/source/openapi-specifications/v1.0/support/EventTimer.json +285 -0
  522. package/source/openapi-specifications/v1.0/support/Expression.json +43 -0
  523. package/source/openapi-specifications/v1.0/support/Extension.json +7152 -0
  524. package/source/openapi-specifications/v1.0/support/ExtensionOrg.json +129 -0
  525. package/source/openapi-specifications/v1.0/support/FAQ.json +142 -0
  526. package/source/openapi-specifications/v1.0/support/FAQTranslation.json +178 -0
  527. package/source/openapi-specifications/v1.0/support/FbManager.json +1147 -0
  528. package/source/openapi-specifications/v1.0/support/Feature.json +691 -0
  529. package/source/openapi-specifications/v1.0/support/FeatureFile.json +435 -0
  530. package/source/openapi-specifications/v1.0/support/FeatureFolder.json +576 -0
  531. package/source/openapi-specifications/v1.0/support/FeaturePermission.json +492 -0
  532. package/source/openapi-specifications/v1.0/support/FederatedLogin.json +318 -0
  533. package/source/openapi-specifications/v1.0/support/FeedsAPIs.json +198 -0
  534. package/source/openapi-specifications/v1.0/support/Field.json +7493 -0
  535. package/source/openapi-specifications/v1.0/support/FieldDetails.json +139 -0
  536. package/source/openapi-specifications/v1.0/support/FieldPermissions.json +113 -0
  537. package/source/openapi-specifications/v1.0/support/FieldPrediction.json +3831 -0
  538. package/source/openapi-specifications/v1.0/support/FileExport.json +324 -0
  539. package/source/openapi-specifications/v1.0/support/Finance.json +4290 -0
  540. package/source/openapi-specifications/v1.0/support/Followers.json +875 -0
  541. package/source/openapi-specifications/v1.0/support/FormulaFunctions.json +47 -0
  542. package/source/openapi-specifications/v1.0/support/GC_Bots.json +138 -0
  543. package/source/openapi-specifications/v1.0/support/GC_Guide.json +1536 -0
  544. package/source/openapi-specifications/v1.0/support/GC_GuideHistories.json +58 -0
  545. package/source/openapi-specifications/v1.0/support/GC_GuideHistory.json +79 -0
  546. package/source/openapi-specifications/v1.0/support/GC_Guides.json +89 -0
  547. package/source/openapi-specifications/v1.0/support/GC_Info.json +208 -0
  548. package/source/openapi-specifications/v1.0/support/GC_Status.json +69 -0
  549. package/source/openapi-specifications/v1.0/support/GC_UserInfo.json +79 -0
  550. package/source/openapi-specifications/v1.0/support/GenericAction.json +1888 -0
  551. package/source/openapi-specifications/v1.0/support/GenericActionMapping.json +1050 -0
  552. package/source/openapi-specifications/v1.0/support/GoogleAnalytics.json +1715 -0
  553. package/source/openapi-specifications/v1.0/support/GoogleChat.json +650 -0
  554. package/source/openapi-specifications/v1.0/support/HelpCenterCommon.json +44 -0
  555. package/source/openapi-specifications/v1.0/support/Help_Center_OIDC_Authentication.json +900 -0
  556. package/source/openapi-specifications/v1.0/support/Helpcenter.json +1212 -0
  557. package/source/openapi-specifications/v1.0/support/HelpcenterAutoTranslateSetting.json +331 -0
  558. package/source/openapi-specifications/v1.0/support/HelpcenterGroups.json +1496 -0
  559. package/source/openapi-specifications/v1.0/support/HelpcenterPages.json +504 -0
  560. package/source/openapi-specifications/v1.0/support/HelpcenterPreference.json +208 -0
  561. package/source/openapi-specifications/v1.0/support/HelpcenterTranslationApp.json +64 -0
  562. package/source/openapi-specifications/v1.0/support/HelpcenterUpload.json +211 -0
  563. package/source/openapi-specifications/v1.0/support/HolidayList.json +731 -0
  564. package/source/openapi-specifications/v1.0/support/IMAPAddress.json +1091 -0
  565. package/source/openapi-specifications/v1.0/support/IMCannedMessage.json +1357 -0
  566. package/source/openapi-specifications/v1.0/support/IMCannedMessagePlaceHolders.json +169 -0
  567. package/source/openapi-specifications/v1.0/support/IMCannedMessageTranslation.json +624 -0
  568. package/source/openapi-specifications/v1.0/support/IMTemplateMessage.json +597 -0
  569. package/source/openapi-specifications/v1.0/support/IM_AddOn.json +841 -0
  570. package/source/openapi-specifications/v1.0/support/IM_AttachmentMessage.json +64 -0
  571. package/source/openapi-specifications/v1.0/support/IM_Bot.json +1007 -0
  572. package/source/openapi-specifications/v1.0/support/IM_BotService.json +357 -0
  573. package/source/openapi-specifications/v1.0/support/IM_Broadcast.json +323 -0
  574. package/source/openapi-specifications/v1.0/support/IM_Channel.json +2849 -0
  575. package/source/openapi-specifications/v1.0/support/IM_ChannelPreference.json +502 -0
  576. package/source/openapi-specifications/v1.0/support/IM_Contact.json +165 -0
  577. package/source/openapi-specifications/v1.0/support/IM_Efc.json +188 -0
  578. package/source/openapi-specifications/v1.0/support/IM_Integration.json +1269 -0
  579. package/source/openapi-specifications/v1.0/support/IM_IntegrationService.json +454 -0
  580. package/source/openapi-specifications/v1.0/support/IM_LayoutView.json +625 -0
  581. package/source/openapi-specifications/v1.0/support/IM_License.json +225 -0
  582. package/source/openapi-specifications/v1.0/support/IM_Message.json +1371 -0
  583. package/source/openapi-specifications/v1.0/support/IM_Metrics.json +462 -0
  584. package/source/openapi-specifications/v1.0/support/IM_Search.json +547 -0
  585. package/source/openapi-specifications/v1.0/support/IM_Session.json +1397 -0
  586. package/source/openapi-specifications/v1.0/support/IM_TemplateButton.json +142 -0
  587. package/source/openapi-specifications/v1.0/support/IM_TemplateFooter.json +83 -0
  588. package/source/openapi-specifications/v1.0/support/IM_TemplateHeader.json +86 -0
  589. package/source/openapi-specifications/v1.0/support/IM_TemplateItems.json +73 -0
  590. package/source/openapi-specifications/v1.0/support/IM_TimeSeriesMetrics.json +435 -0
  591. package/source/openapi-specifications/v1.0/support/IM_TwilioPhoneNumber.json +202 -0
  592. package/source/openapi-specifications/v1.0/support/IM_WhatsApp_Integrations.json +193 -0
  593. package/source/openapi-specifications/v1.0/support/IM_ZiaGpt.json +489 -0
  594. package/source/openapi-specifications/v1.0/support/Import.json +1844 -0
  595. package/source/openapi-specifications/v1.0/support/IncrementalDocuments.json +395 -0
  596. package/source/openapi-specifications/v1.0/support/Inference.json +307 -0
  597. package/source/openapi-specifications/v1.0/support/InlineImage.json +97 -0
  598. package/source/openapi-specifications/v1.0/support/IntegModule.json +938 -0
  599. package/source/openapi-specifications/v1.0/support/Integrations.json +1264 -0
  600. package/source/openapi-specifications/v1.0/support/InteractiveTours.json +539 -0
  601. package/source/openapi-specifications/v1.0/support/JWT.json +535 -0
  602. package/source/openapi-specifications/v1.0/support/KBCategoryPermalink.json +208 -0
  603. package/source/openapi-specifications/v1.0/support/KBCategoryUser.json +241 -0
  604. package/source/openapi-specifications/v1.0/support/KBPreference.json +323 -0
  605. package/source/openapi-specifications/v1.0/support/KBRecycleBin.json +2316 -0
  606. package/source/openapi-specifications/v1.0/support/KBRootCategory.json +2839 -0
  607. package/source/openapi-specifications/v1.0/support/KBRootCategoryTranslation.json +570 -0
  608. package/source/openapi-specifications/v1.0/support/KBSection.json +1941 -0
  609. package/source/openapi-specifications/v1.0/support/KBTranslationMassActionResponse.json +169 -0
  610. package/source/openapi-specifications/v1.0/support/KPIWidget.json +206 -0
  611. package/source/openapi-specifications/v1.0/support/KbBot.json +511 -0
  612. package/source/openapi-specifications/v1.0/support/KbCategory.json +1618 -0
  613. package/source/openapi-specifications/v1.0/support/KbCategoryLogo.json +124 -0
  614. package/source/openapi-specifications/v1.0/support/Label.json +1251 -0
  615. package/source/openapi-specifications/v1.0/support/Layout.json +8042 -0
  616. package/source/openapi-specifications/v1.0/support/LayoutRuleCriteria.json +491 -0
  617. package/source/openapi-specifications/v1.0/support/LayoutRules.json +1422 -0
  618. package/source/openapi-specifications/v1.0/support/LensInteg.json +86 -0
  619. package/source/openapi-specifications/v1.0/support/LicenseFeaturePlan.json +548 -0
  620. package/source/openapi-specifications/v1.0/support/LicenseInfo.json +1231 -0
  621. package/source/openapi-specifications/v1.0/support/LicenseTool.json +165 -0
  622. package/source/openapi-specifications/v1.0/support/Livecall.json +954 -0
  623. package/source/openapi-specifications/v1.0/support/LookupRecord.json +174 -0
  624. package/source/openapi-specifications/v1.0/support/Macros.json +1960 -0
  625. package/source/openapi-specifications/v1.0/support/MailReplyAddress.json +1263 -0
  626. package/source/openapi-specifications/v1.0/support/MassAction.json +1151 -0
  627. package/source/openapi-specifications/v1.0/support/MassActionError.json +55 -0
  628. package/source/openapi-specifications/v1.0/support/MassActionResponse.json +89 -0
  629. package/source/openapi-specifications/v1.0/support/Mentions.json +491 -0
  630. package/source/openapi-specifications/v1.0/support/Message.json +685 -0
  631. package/source/openapi-specifications/v1.0/support/Microsoft.json +887 -0
  632. package/source/openapi-specifications/v1.0/support/MicrosoftTeams.json +574 -0
  633. package/source/openapi-specifications/v1.0/support/Microsoft_PowerBI.json +903 -0
  634. package/source/openapi-specifications/v1.0/support/Misc.json +214 -0
  635. package/source/openapi-specifications/v1.0/support/Module.json +1625 -0
  636. package/source/openapi-specifications/v1.0/support/NewCriteria.json +1863 -0
  637. package/source/openapi-specifications/v1.0/support/NewFeatureFields.json +204 -0
  638. package/source/openapi-specifications/v1.0/support/NewTicketHistory.json +150 -0
  639. package/source/openapi-specifications/v1.0/support/NotificationRules.json +441 -0
  640. package/source/openapi-specifications/v1.0/support/OEmbedData.json +233 -0
  641. package/source/openapi-specifications/v1.0/support/Onboarding.json +282 -0
  642. package/source/openapi-specifications/v1.0/support/Organization.json +1391 -0
  643. package/source/openapi-specifications/v1.0/support/PBGroup.json +634 -0
  644. package/source/openapi-specifications/v1.0/support/PBGroupAgents.json +433 -0
  645. package/source/openapi-specifications/v1.0/support/PBPlatform.json +1447 -0
  646. package/source/openapi-specifications/v1.0/support/PBX.json +550 -0
  647. package/source/openapi-specifications/v1.0/support/PBXConfig.json +219 -0
  648. package/source/openapi-specifications/v1.0/support/PBXPhoneNumbers.json +443 -0
  649. package/source/openapi-specifications/v1.0/support/PBXPreference.json +314 -0
  650. package/source/openapi-specifications/v1.0/support/PageSense.json +1505 -0
  651. package/source/openapi-specifications/v1.0/support/PendingApproval.json +279 -0
  652. package/source/openapi-specifications/v1.0/support/Permalink.json +393 -0
  653. package/source/openapi-specifications/v1.0/support/PhoneAgents.json +1014 -0
  654. package/source/openapi-specifications/v1.0/support/PhoneMenu.json +118 -0
  655. package/source/openapi-specifications/v1.0/support/PinnedConversation.json +1115 -0
  656. package/source/openapi-specifications/v1.0/support/Pipeline_Info.json +232 -0
  657. package/source/openapi-specifications/v1.0/support/Pipeline_Service.json +499 -0
  658. package/source/openapi-specifications/v1.0/support/Product.json +1861 -0
  659. package/source/openapi-specifications/v1.0/support/ProductAttachment.json +485 -0
  660. package/source/openapi-specifications/v1.0/support/Profile.json +4236 -0
  661. package/source/openapi-specifications/v1.0/support/ProjectsInteg.json +989 -0
  662. package/source/openapi-specifications/v1.0/support/QueryStore.json +238 -0
  663. package/source/openapi-specifications/v1.0/support/QueueView.json +335 -0
  664. package/source/openapi-specifications/v1.0/support/RatelimitAdminTool.json +1204 -0
  665. package/source/openapi-specifications/v1.0/support/Records.json +1509 -0
  666. package/source/openapi-specifications/v1.0/support/Recyclebin.json +669 -0
  667. package/source/openapi-specifications/v1.0/support/RemoteAuth.json +401 -0
  668. package/source/openapi-specifications/v1.0/support/Report.json +6491 -0
  669. package/source/openapi-specifications/v1.0/support/ReportChart.json +254 -0
  670. package/source/openapi-specifications/v1.0/support/ReportFolder.json +1076 -0
  671. package/source/openapi-specifications/v1.0/support/ReportIntegration.json +202 -0
  672. package/source/openapi-specifications/v1.0/support/RequestFlags.json +358 -0
  673. package/source/openapi-specifications/v1.0/support/Resources.json +335 -0
  674. package/source/openapi-specifications/v1.0/support/ResponseHelpCenterUser.json +128 -0
  675. package/source/openapi-specifications/v1.0/support/Role.json +996 -0
  676. package/source/openapi-specifications/v1.0/support/RoundRobin.json +796 -0
  677. package/source/openapi-specifications/v1.0/support/RoundRobinTarget.json +381 -0
  678. package/source/openapi-specifications/v1.0/support/RoutingPreference.json +615 -0
  679. package/source/openapi-specifications/v1.0/support/RuleGroup.json +1630 -0
  680. package/source/openapi-specifications/v1.0/support/SLAMetaInfo.json +227 -0
  681. package/source/openapi-specifications/v1.0/support/Saml.json +565 -0
  682. package/source/openapi-specifications/v1.0/support/Sandbox.json +1075 -0
  683. package/source/openapi-specifications/v1.0/support/SandboxChangeset.json +501 -0
  684. package/source/openapi-specifications/v1.0/support/SandboxDeployment.json +428 -0
  685. package/source/openapi-specifications/v1.0/support/SandboxDeploymentLogs.json +295 -0
  686. package/source/openapi-specifications/v1.0/support/SandboxSourceOrganization.json +268 -0
  687. package/source/openapi-specifications/v1.0/support/SavedFilters.json +652 -0
  688. package/source/openapi-specifications/v1.0/support/Schedule.json +2077 -0
  689. package/source/openapi-specifications/v1.0/support/ScheduleReplyInfo.json +2271 -0
  690. package/source/openapi-specifications/v1.0/support/Search.json +12600 -0
  691. package/source/openapi-specifications/v1.0/support/SearchInteg.json +2254 -0
  692. package/source/openapi-specifications/v1.0/support/Setup.json +1766 -0
  693. package/source/openapi-specifications/v1.0/support/SharedSnippet.json +1110 -0
  694. package/source/openapi-specifications/v1.0/support/SharingRule.json +287 -0
  695. package/source/openapi-specifications/v1.0/support/Signature.json +354 -0
  696. package/source/openapi-specifications/v1.0/support/Skill.json +2164 -0
  697. package/source/openapi-specifications/v1.0/support/SkillConfiguration.json +269 -0
  698. package/source/openapi-specifications/v1.0/support/SkillType.json +807 -0
  699. package/source/openapi-specifications/v1.0/support/Slack.json +957 -0
  700. package/source/openapi-specifications/v1.0/support/SmsTemplates.json +514 -0
  701. package/source/openapi-specifications/v1.0/support/Snippets.json +918 -0
  702. package/source/openapi-specifications/v1.0/support/SocialBrands.json +427 -0
  703. package/source/openapi-specifications/v1.0/support/SocialInteg.json +336 -0
  704. package/source/openapi-specifications/v1.0/support/SocialPosts.json +2460 -0
  705. package/source/openapi-specifications/v1.0/support/SocialTwitterConversations.json +337 -0
  706. package/source/openapi-specifications/v1.0/support/StarredTemplates.json +690 -0
  707. package/source/openapi-specifications/v1.0/support/Statistics.json +125 -0
  708. package/source/openapi-specifications/v1.0/support/SubjectAccessRequest.json +2419 -0
  709. package/source/openapi-specifications/v1.0/support/Supervise.json +774 -0
  710. package/source/openapi-specifications/v1.0/support/SupportEmailAddress.json +188 -0
  711. package/source/openapi-specifications/v1.0/support/SupportEmailDomain.json +293 -0
  712. package/source/openapi-specifications/v1.0/support/SupportPlan.json +1109 -0
  713. package/source/openapi-specifications/v1.0/support/Tab.json +606 -0
  714. package/source/openapi-specifications/v1.0/support/Target.json +1311 -0
  715. package/source/openapi-specifications/v1.0/support/TargetFunctions.json +130 -0
  716. package/source/openapi-specifications/v1.0/support/Task.json +4006 -0
  717. package/source/openapi-specifications/v1.0/support/TaskAttachment.json +443 -0
  718. package/source/openapi-specifications/v1.0/support/TaskComments.json +706 -0
  719. package/source/openapi-specifications/v1.0/support/TaskTimeEntry.json +1756 -0
  720. package/source/openapi-specifications/v1.0/support/TaskTimer.json +441 -0
  721. package/source/openapi-specifications/v1.0/support/Team.json +1383 -0
  722. package/source/openapi-specifications/v1.0/support/TemplateFolders.json +1069 -0
  723. package/source/openapi-specifications/v1.0/support/Theme.json +152 -0
  724. package/source/openapi-specifications/v1.0/support/Thread.json +3545 -0
  725. package/source/openapi-specifications/v1.0/support/Ticket.json +9495 -0
  726. package/source/openapi-specifications/v1.0/support/TicketApprovals.json +855 -0
  727. package/source/openapi-specifications/v1.0/support/TicketAttachment.json +562 -0
  728. package/source/openapi-specifications/v1.0/support/TicketComment.json +1444 -0
  729. package/source/openapi-specifications/v1.0/support/TicketCount.json +690 -0
  730. package/source/openapi-specifications/v1.0/support/TicketFollowers.json +454 -0
  731. package/source/openapi-specifications/v1.0/support/TicketHistory.json +414 -0
  732. package/source/openapi-specifications/v1.0/support/TicketMetrics.json +369 -0
  733. package/source/openapi-specifications/v1.0/support/TicketRealTime.json +178 -0
  734. package/source/openapi-specifications/v1.0/support/TicketTag.json +1513 -0
  735. package/source/openapi-specifications/v1.0/support/TicketTemplate.json +907 -0
  736. package/source/openapi-specifications/v1.0/support/TicketTimeEntry.json +1681 -0
  737. package/source/openapi-specifications/v1.0/support/TicketTimer.json +1205 -0
  738. package/source/openapi-specifications/v1.0/support/TimeTracking.json +1212 -0
  739. package/source/openapi-specifications/v1.0/support/TrainingCourses.json +614 -0
  740. package/source/openapi-specifications/v1.0/support/TrainingIntegration.json +163 -0
  741. package/source/openapi-specifications/v1.0/support/TranslationLanguages.json +2772 -0
  742. package/source/openapi-specifications/v1.0/support/Upload.json +620 -0
  743. package/source/openapi-specifications/v1.0/support/User.json +1409 -0
  744. package/source/openapi-specifications/v1.0/support/UserAuthentication.json +617 -0
  745. package/source/openapi-specifications/v1.0/support/UserPresence.json +763 -0
  746. package/source/openapi-specifications/v1.0/support/ValidationRuleCriteria.json +107 -0
  747. package/source/openapi-specifications/v1.0/support/ValidationRules.json +1173 -0
  748. package/source/openapi-specifications/v1.0/support/Webhook.json +1330 -0
  749. package/source/openapi-specifications/v1.0/support/WhatsAppDetails.json +132 -0
  750. package/source/openapi-specifications/v1.0/support/WhatsAppMigration.json +143 -0
  751. package/source/openapi-specifications/v1.0/support/WhatsAppTemplateTags.json +132 -0
  752. package/source/openapi-specifications/v1.0/support/Widget.json +3023 -0
  753. package/source/openapi-specifications/v1.0/support/WmsDomain.json +104 -0
  754. package/source/openapi-specifications/v1.0/support/ZIAAnswerbotInference.json +756 -0
  755. package/source/openapi-specifications/v1.0/support/ZIADocumentData.json +989 -0
  756. package/source/openapi-specifications/v1.0/support/ZIASolutionService.json +135 -0
  757. package/source/openapi-specifications/v1.0/support/ZIAVectorSearch.json +376 -0
  758. package/source/openapi-specifications/v1.0/support/ZiaDCMigration.json +159 -0
  759. package/source/openapi-specifications/v1.0/support/ZiaGPT.json +3229 -0
  760. package/source/openapi-specifications/v1.0/support/ZiaScheduler.json +453 -0
  761. package/source/openapi-specifications/v1.0/support/Zwitch.json +1543 -0
  762. package/source/openapi-specifications/v1.0/support/blueprintChartData.json +201 -0
  763. package/source/openapi-specifications/v1.0/support/blueprintConnections.json +75 -0
  764. package/source/openapi-specifications/v1.0/support/blueprintCriteria.json +255 -0
  765. package/source/openapi-specifications/v1.0/support/blueprintDrafts.json +1677 -0
  766. package/source/openapi-specifications/v1.0/support/blueprintStates.json +284 -0
  767. package/source/openapi-specifications/v1.0/support/blueprintStrictModeConfig.json +91 -0
  768. package/source/openapi-specifications/v1.0/support/blueprintTransitions.json +1546 -0
  769. package/source/openapi-specifications/v1.0/support/blueprints.json +2992 -0
  770. package/source/openapi-specifications/v1.0/support/errors.json +80 -0
  771. package/source/openapi-specifications/v1.0/support/zlabsnlp.json +416 -0
@@ -0,0 +1,121 @@
1
+ ---
2
+ name: GeneratorAgent
3
+ description: Creates generators using the OpenAPI specification and defined generator patterns. Ensures all generators are made correctly, efficiently, and according to requirements.
4
+ ---
5
+
6
+ ## Role
7
+ Responsible for building generators that follow strict rules and guidelines based on OpenAPI and specified patterns.
8
+
9
+ ---
10
+
11
+ ## What to do
12
+
13
+ 1. Read all generator type definitions in the Generator_Patterns folder to understand their rules and structures, then use them to create generators based on the OAS file’s schema and dependencies.
14
+
15
+ 2. Analyze the user prompt to identify only the dependencies explicitly requested by the user. Do not add extra setup dependencies on your own.
16
+
17
+ 3. For user-requested dependencies, ensure generators extract the required values from API responses so downstream generators can consume them clearly and correctly.
18
+
19
+ 4. Always create a new generator file instead of modifying existing ones. If you need to modify or add to an existing generator, request explicit user permission before proceeding.
20
+
21
+ 5. Refer to the `PathConfig.properties` file to find the paths for OAS files and existing generator files. Always use these paths when reading or referencing OAS or generator files.
22
+
23
+ 6. Use only the dependencies explicitly provided in the user prompt. Do not include every parameter listed in the OAS, and do not auto-create additional dependency generators unless the user explicitly asks.
24
+
25
+ 7. Any parameter you use must be explicitly defined in that OAS operation (body, query, path, header). Never invent fields, wrapper keys, or placeholders. Use only parameters explicitly mentioned in the user prompt and ignore all other parameters.
26
+
27
+ 8. You may use tools if necessary to generate the generators correctly.
28
+ ---
29
+
30
+ ## Generator
31
+
32
+ 1. Generator names must use snake_case (all lowercase, underscores), be clear, consistent, and meaningful, matching the resource and purpose. Use singular for single values (e.g., entity_id), plural for lists (e.g., entity_ids). All generator names must be unique and kept short and meaningful.
33
+
34
+ 2. Maintain order in generator creation based on dependencies. If Generator A depends on Generator B, ensure that Generator B is created before Generator A.
35
+
36
+ 3. Ensure that all generators strictly follow the definitions and rules specified in the generator type definition files.
37
+
38
+ 4. Choose the correct generator type strictly according to its definition file.
39
+
40
+ 5. For the "name" field inside a generator, use the resource name from PathConfig in snake_case: plural for lists, singular for single items (e.g., "resources", "resource", "records").
41
+
42
+ 6. Follow exact reference syntax, dataPath format, and structural rules as defined in the type definition files and README.md.
43
+
44
+ 7. Output must contain only the "generators" JSON object.
45
+
46
+ 8. When using short-hand references like `$departments` or `$contacts`, ensure they reference generators defined in the same `test_data_generation_configurations.json` file unless the reference explicitly uses a relative cross-file path (for example `../Department/...`). This prevents accidental cross-file name collisions and keeps generated params local by default.
47
+
48
+ 9. Operation ID format: Always specify `generatorOperationId` using the `<service>.<Entity>.<operation>` pattern (for example: "generatorOperationId": "support.Agent.getAgents").
49
+
50
+ 10. When params are used in a dynamic generator, the parameter names should be the same as those defined in the OpenAPI specification.
51
+
52
+ 11. If you use param input from body, query, path or header, please make sure the reference path is correct and the field exists in the OpenAPI specification. For example: "$.input.body:$.ticketId" for request body, "$.input.query:$.status" for query parameter, "$.input.path:$.agentId" for path parameter, "$.input.header:$.Authorization" for header.
53
+
54
+ 12. If the same API with the same payload is needed more than once, call that API only once, store the entire response object, and extract all required values from that stored response.
55
+
56
+ 13. When storing an entire object in a generator, the `dataPath` must use the `:$` format (for example: `$.response.body:$`).
57
+
58
+ ---
59
+
60
+ ## Generator Structure Rule
61
+
62
+ All generators must be created using the following structure:
63
+
64
+ ```json
65
+ {
66
+ "generators": {
67
+ "<generator_name>": [
68
+ {}
69
+ ]
70
+ }
71
+ }
72
+ ```
73
+
74
+ - All dependencies for a generator must be included in the same array under the generator name.
75
+ - This ensures clarity, maintainability, and proper grouping of related generator steps.
76
+ - Generator name should be descriptive of the entity and purpose, following the snake_case convention.
77
+ ---
78
+
79
+ ## Generator Creation Rules
80
+
81
+ 1. Create subfolder with PascalCase name (e.g., `CreateContact`, `CreateTicket`) in `Created_Generators` directory, add `test_data_generation_configurations.json` inside.
82
+
83
+ 2. Only create the generator JSON file.
84
+
85
+ 3. Always create new generator files instead of modifying existing ones. Request explicit permission before editing existing generators.
86
+
87
+ ---
88
+
89
+ ## Prompt Handling Rules
90
+
91
+ 1. **Direct Prompt**: When user provides a direct prompt (e.g., "Create Contact", "Create Ticket"), implement the generator immediately without preamble like "Create generator for X".
92
+
93
+ 2. **Explicit Request**: When user explicitly says "Create a generator for X" or similar, proceed as normal with full context.
94
+
95
+ 3. **Skip Explanation**: For direct prompts, go straight to building the generator, no explanations.
96
+
97
+ 4. **Clarify Ambiguity First**: If there is any confusion about which generator to use, which data to extract, or how required values should be sourced, ask the user first and generate only after confirmation.
98
+
99
+ 5. **No Implicit Body Defaults**: For implied actions (for example, "add comments"), do not auto-fill request body fields that were not provided in the prompt. Ask the user for missing values first.
100
+
101
+ 6. **Optional Param Choice**: In ambiguous enum/choice situations, ask the user with available options and include one extra option: **"Don't consider this param"**. If the user selects it, omit that parameter from the generator.
102
+
103
+ ---
104
+
105
+ ## Do Not:
106
+
107
+ 1. Don't Invent new generator types or modify existing rules.
108
+
109
+ 2. Don't modify or generate any section other than "generators" in the test_data_generation_configurations.json file.
110
+
111
+ 3. Don't include explanations, comments, markdown, or extra text in the final output.
112
+
113
+ 4. Don't edit OpenAPI specification files.
114
+
115
+ 5. Never include any param or field in a generator unless it is explicitly defined in the OAS for that operation.
116
+
117
+ 6. Don't auto-add setup generators (for example Contact/Department/Account) unless those dependencies are explicitly requested by the user.
118
+
119
+ 7. Don't ask permission for read access to OAS or generator files, as you have full access to read any file in the specified paths.You have permission to read files outside of the workspace.
120
+
121
+ 8. Don't give text response in chat window.Only output the generator JSON object as specified.
@@ -0,0 +1,19 @@
1
+ # Generator Agent
2
+
3
+ You are a Generator Agent responsible for generating conditional rule-based data.
4
+
5
+ ## Capabilities
6
+
7
+ - Generate static data based on fixed values
8
+ - Generate dynamic data using expressions and functions
9
+ - Generate conditional data based on rules
10
+ - Generate reference data from other fields
11
+ - Generate remote data from external APIs
12
+
13
+ ## Instructions
14
+
15
+ When a user asks to generate data:
16
+ 1. Ask what type of generation they need (static, dynamic, conditional, reference, or remote)
17
+ 2. Understand the data structure requirements
18
+ 3. Generate appropriate configuration based on the patterns
19
+ 4. Provide clear examples and explanations
@@ -0,0 +1,84 @@
1
+ # CONDITIONAL Generator — Rule-Based Data Selection
2
+
3
+ ---
4
+
5
+ ## Overview
6
+
7
+ A **Conditional Generator** selects a data generator based on predefined conditions. It enables dynamic test data generation by evaluating input values or context and branching to different generator logic accordingly.
8
+
9
+ ---
10
+
11
+ ## When to Use
12
+
13
+ - When the value of a parameter depends on other input values or request context.
14
+ - To implement business rules, feature flags, or scenario-specific data.
15
+ - For fallback/default logic when no condition matches.
16
+
17
+ ---
18
+
19
+ ## Structure
20
+
21
+ A conditional generator contains:
22
+ - `type`: Must be `"conditional"`
23
+ - `conditions`: List of condition objects, each with:
24
+ - `when`: The condition to evaluate (key, operator, value)
25
+ - `then`: The generator or value to use if the condition matches
26
+ - `else`: (optional) The generator or value to use if no conditions match
27
+
28
+ ---
29
+
30
+ ## Example
31
+
32
+ ```json
33
+ {
34
+ "generators": {
35
+ "snippet_id": [
36
+ {
37
+ "type": "conditional",
38
+ "conditions": [
39
+ {
40
+ "when": {
41
+ "key": "$.input.query:modules",
42
+ "equals": "tickets"
43
+ },
44
+ "then": {
45
+ "use": "$generators:#/generators/ticket_id"
46
+ }
47
+ },
48
+ {
49
+ "when": {
50
+ "key": "$.input.query:modules",
51
+ "equals": "contacts"
52
+ },
53
+ "then": {
54
+ "use": "$generators:#/generators/contact_id"
55
+ }
56
+ }
57
+ ],
58
+ "else": "$generators:#/generators/activity_id"
59
+ }
60
+ ]
61
+ }
62
+ }
63
+ ```
64
+
65
+ ---
66
+
67
+ ## Best Practices
68
+
69
+ - Use input-based branching: reference request path, query, or body fields in `when`.
70
+ - Reference other generators in `then` using correct relative paths or `$generators:` syntax.
71
+ - Always provide an `else` clause if possible to avoid unexpected nulls.
72
+ - Keep conditions mutually exclusive and clear.
73
+ - Avoid deeply nested or overly complex chains for readability.
74
+
75
+ ---
76
+
77
+ ## Validation Checklist
78
+
79
+ - Ensure all referenced generators exist.
80
+ - Test each condition path for expected output.
81
+
82
+ ---
83
+
84
+ *Last Updated: 17 February 2026*
@@ -0,0 +1,129 @@
1
+
2
+ # Rule: Referencing Single-Entity Dynamic Generator Dependencies
3
+
4
+ When a dynamic generator is used as a dependency for another generator (e.g., createTicket), always reference the dependency in params as $<generatorname>.value, regardless of the dataPath used in the dependency generator. This ensures the correct value is passed even if the dataPath returns an array or a single value.
5
+
6
+ **Example:**
7
+
8
+ Dependency generator:
9
+ ```json
10
+ {
11
+ "type": "dynamic",
12
+ "name": "departments",
13
+ "generatorOperationId": "support.Department.getDepartments",
14
+ "dataPath": "$.response.body:$.data[*].id"
15
+ }
16
+ ```
17
+
18
+ Dependent generator:
19
+ ```json
20
+ {
21
+ "type": "dynamic",
22
+ "name": "ticket",
23
+ "generatorOperationId": "support.Ticket.createTicket",
24
+ "params": {
25
+ "departmentId": "$departments.value"
26
+ }
27
+ }
28
+ ```
29
+
30
+ ## What It Does
31
+ A DYNAMIC Generator fetches data from real API responses.
32
+
33
+ ---
34
+
35
+ ## When to Use DYNAMIC
36
+ - When you need real system data that changes frequently (e.g., active agent IDs, current ticket IDs).
37
+ - When there is an API available to fetch the required data.
38
+
39
+ ---
40
+
41
+ ## Required Properties
42
+
43
+ | Property | Type | Purpose |
44
+ |----------|------|---------|
45
+ | `type` | string | Must be `"dynamic"` |
46
+ | `generatorOperationId` | string | Which API operation to call |
47
+ | `dataPath` | string | Where to extract data from response |
48
+
49
+ ## Optional Properties
50
+
51
+ | Property | Type | Purpose |
52
+ |----------|------|---------|
53
+ | `params` | object | Filter parameters: `{"status": "ACTIVE"}` |
54
+ | `name` | string | Generator identifier (unique label for referencing in params) |
55
+
56
+ ---
57
+
58
+ ## DataPath Format
59
+
60
+ **Pattern:** `$.response.body:$.path.to.data`
61
+
62
+ **Examples:**
63
+ - `$.response.body:$.data[0].id` - First item ID
64
+ - `$.response.body:$.data[*].id` - All item IDs
65
+ - `$.response.body:$.items[0].manager.id` - Nested field
66
+
67
+ ---
68
+
69
+ ## Examples
70
+
71
+ ### Single Result
72
+ Fetch the first matching record:
73
+ ```json
74
+ {
75
+ "type": "dynamic",
76
+ "generatorOperationId": "support.Agent.getAgents",
77
+ "dataPath": "$.response.body:$.data[0].id"
78
+ }
79
+ ```
80
+ ### With Filter Parameters
81
+ Find specific records:
82
+ ```json
83
+ {
84
+ "type": "dynamic",
85
+ "generatorOperationId": "support.Agent.getAgents",
86
+ "dataPath": "$.response.body:$.data[*].id",
87
+ "params": {"status": "ACTIVE"}
88
+ }
89
+ ```
90
+ ### Nested Field
91
+ Extract from object hierarchy:
92
+ ```json
93
+ {
94
+ "type": "dynamic",
95
+ "generatorOperationId": "support.Department.getDepartment",
96
+ "dataPath": "$.response.body:$.manager.id"
97
+ }
98
+ ```
99
+ ---
100
+
101
+ ## Best Practices
102
+
103
+ **Do:**
104
+ - Use params to filter for specific scenarios
105
+ - Give descriptive names showing the filter/status
106
+ - Verify operationId exists in OpenAPI specification
107
+
108
+ **Avoid:**
109
+ - Assuming first result is always valid
110
+ - Generic names like "id"
111
+ - Forgetting `[*]` on array parameters
112
+ - Hardcoding fallback without DYNAMIC
113
+
114
+ ---
115
+
116
+ ## Check
117
+ - operationId is spelled correctly
118
+ - dataPath matches actual response structure
119
+ - params filter isn't too strict
120
+
121
+ ## Reference
122
+ - **Fetch Method:** API operations
123
+ - **Data Type:** Real system data
124
+ - **Scope:** Cross-entity references possible
125
+ - **Updates:** Auto-syncs with system data
126
+
127
+ ---
128
+
129
+ *Last Updated: 17 February 2026*
@@ -0,0 +1,4 @@
1
+
2
+ # Path configurations for generator framework (using source folder)
3
+ GENERATOR_CONFIG_PATH=../source/api-data-generators/support/
4
+ OAS_FILE_PATH=../source/openapi-specifications/v1.0/support/
@@ -0,0 +1,118 @@
1
+ # Data Generation Framework
2
+
3
+ ## What is this?
4
+
5
+ This framework helps you generate test data for APIs defined in OpenAPI (OAS) files.
6
+
7
+ In simple words:
8
+ - You define generators in JSON.
9
+ - Generators call APIs, reuse values, and build input data.
10
+ - You can chain generators when one value depends on another.
11
+
12
+ ## What is a generator?
13
+
14
+ A generator is a small JSON step that produces data.
15
+
16
+ Examples:
17
+ - Fetch `departmentId` from an API response
18
+ - Reuse a value from request input
19
+ - Set a fixed value like `priority = "high"`
20
+
21
+ All generators must be inside the `generators` object.
22
+
23
+ Basic format:
24
+
25
+ ```json
26
+ {
27
+ "generators": {
28
+ "generator_name": [
29
+ {
30
+ "type": "..."
31
+ }
32
+ ]
33
+ }
34
+ }
35
+ ```
36
+
37
+ ## About the Generator Agent
38
+
39
+ The Generator Agent helps developers create generator files faster and correctly.
40
+
41
+ The agent does the following:
42
+ - Reads the target operation from OAS
43
+ - Finds required dependencies from related operations
44
+ - Creates generator steps in the correct dependency order
45
+ - Uses only fields that exist in OAS (no invented params)
46
+ - Produces output in the required `generators` JSON structure
47
+
48
+ ## Where to find paths
49
+
50
+ Use `PathConfig.properties` as the source of truth:
51
+ - `GENERATOR_CONFIG_PATH` for generator file locations
52
+ - `OAS_FILE_PATH` for OpenAPI specification locations
53
+
54
+ Always use these configured paths instead of hardcoding paths.
55
+
56
+ ## Generator types
57
+
58
+ Use the right type based on your need:
59
+
60
+ | Type | Purpose | Documentation |
61
+ | --- | --- | --- |
62
+ | Dynamic | Get values from API operations | [Dynamic](./Dynamic.md) |
63
+ | Remote | Get values from system/remote helpers | [Remote](./Remote.md) |
64
+ | Static | Use fixed constant values | [Static](./Static.md) |
65
+ | Reference | Reuse existing values from input/other generators | [Reference](./Reference.md) |
66
+ | Conditional | Choose values based on conditions | [Conditional](./Conditional.md) |
67
+
68
+ ## JSONPath quick guide
69
+
70
+ Common response mapping format:
71
+
72
+ `$.location:$.path`
73
+
74
+ Examples:
75
+ - `$.data[*].id` → all ids in an array
76
+ - `$.data[0].id` → first id
77
+ - `$.manager.id` → nested value
78
+ - `$.users[?(@.active == true)].id` → filtered values
79
+
80
+ ## Developer workflow (quick)
81
+
82
+ 1. Identify the target API operation.
83
+ 2. Read the target operation in OAS.
84
+ 3. Identify dependency operations and required values.
85
+ 4. Choose proper generator types.
86
+ 5. Create a new generator file in the correct folder.
87
+ 6. Keep dependencies in order inside the same generator array.
88
+ 7. Validate all params and paths against OAS.
89
+
90
+ ## Important rules
91
+
92
+ - Use snake_case generator names.
93
+ - Keep names meaningful and short.
94
+ - Use singular for single value, plural for list values.
95
+ - Do not add fields that are not present in OAS.
96
+ - Do not modify existing generators unless explicitly requested.
97
+
98
+ ## Reference Syntax
99
+
100
+ ```
101
+ $<generatorname>.value // Generator reference
102
+ $.input.body:$.fieldName // Request body
103
+ $.input.query:$.paramName // Query parameter
104
+ $.input.path:$.pathParam // URL path
105
+ $.input.header:$.HeaderName // HTTP header
106
+ ```
107
+
108
+ ## DataPath Format
109
+
110
+ ```
111
+ $.response.body:$.data[0].id // First item ID
112
+ $.response.body:$.data[*].id // All item IDs
113
+ $.response.body:$.id // Direct ID field
114
+ $.response.body:$.manager.id // Nested field
115
+ $.response.body:$.items[?(@.status == 'active')].id // Filtered values
116
+ ```
117
+
118
+ Last updated: 23 February 2026
@@ -0,0 +1,98 @@
1
+ # REFERENCE Generator - Use Request Input Data
2
+
3
+ ## What It Does
4
+
5
+ Passes data directly from incoming request to response without modification. Extracts values from request body, query parameters, path parameters, or headers.
6
+
7
+ ---
8
+
9
+ ## When to Use REFERENCE
10
+
11
+ Use REFERENCE when:
12
+ A Reference Generator extracts data from previous API responses.- Using data from request body
13
+ - Getting values from query parameters
14
+ - Using path parameters
15
+ - Using header values
16
+ - Data comes directly from request
17
+
18
+ **Common Scenarios:**
19
+ - Pass ticket ID from request to response
20
+ - Use query parameters in operations
21
+ - Extract URL path parameters
22
+ - Forward authorization headers
23
+ - Use nested request objects
24
+
25
+ ---
26
+
27
+ ## Required Properties
28
+
29
+ | Property | Type | Purpose |
30
+ |----------|------|---------|
31
+ | `type` | string | Must be `"reference"` |
32
+ | `ref` | string | Path to request data |
33
+
34
+ ## Reference Path Format
35
+
36
+ **Pattern:** `$.input.{location}:$.{jsonPath}`
37
+
38
+ ### Location Types
39
+
40
+ | Location | Source | Example |
41
+ |----------|--------|---------|
42
+ | `$.input.body` | Request body JSON | `$.input.body:$.ticketId` |
43
+ | `$.input.query` | Query parameters | `$.input.query:$.departmentId` |
44
+ | `$.input.path` | URL path parameters | `$.input.path:$.ticketId` |
45
+ | `$.input.header` | HTTP headers | `$.input.header:$.Authorization` |
46
+
47
+ ### Path Selector Examples
48
+
49
+ | Reference | Extracts |
50
+ |-----------|----------|
51
+ | `$.input.body:$.fieldName` | Simple field from body |
52
+ | `$.input.body:$.parent.child.fieldName` | Nested field |
53
+ | `$.input.body:$.items[*].id` | All array IDs |
54
+ | `$.input.body:$.items[0].id` | First array ID |
55
+ | `$.input.query:$.parameterName` | Query parameter |
56
+ | `$.input.path:$.pathParamName` | Path parameter |
57
+ | `$.input.header:$.HeaderName` | Header value |
58
+
59
+ ---
60
+
61
+ ## Best Practices
62
+
63
+ **Do:**
64
+ - Verify request contains the fields you reference
65
+ - Use exact field names (case-sensitive)
66
+ - Use clear generator names matching source
67
+
68
+ **Avoid:**
69
+ - Referencing fields that don't exist
70
+ - Assuming request structure without docs
71
+ - Using REFERENCE for static values
72
+ - Ignoring case sensitivity
73
+
74
+ ---
75
+
76
+ ## When to Use REFERENCE
77
+
78
+ | Scenario | Use REFERENCE |
79
+ |----------|---|
80
+ | Pass-through from request | Yes |
81
+ | Get data from request | Yes |
82
+ | Fetch from database | No |
83
+ | Fixed constant | No |
84
+ | System timestamp | No |
85
+ | Logic-based value | No |
86
+
87
+ ---
88
+
89
+ ## Reference
90
+
91
+ - **Fetch Method:** Request fields
92
+ - **Data Type:** Request data (pass-through)
93
+ - **Scope:** Single request scope
94
+ - **Updates:** From request content
95
+
96
+ ---
97
+
98
+ *Last Updated: 17 February 2026*