@stack-spot/portal-network 0.194.1 → 0.195.0-beta.1

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 (95) hide show
  1. package/CHANGELOG.md +181 -0
  2. package/dist/api/agent-tools.d.ts +6 -0
  3. package/dist/api/agent-tools.d.ts.map +1 -1
  4. package/dist/api/agent-tools.js.map +1 -1
  5. package/dist/api/agent.d.ts +55 -55
  6. package/dist/api/agent.d.ts.map +1 -1
  7. package/dist/api/ai.d.ts +189 -86
  8. package/dist/api/ai.d.ts.map +1 -1
  9. package/dist/api/ai.js +238 -142
  10. package/dist/api/ai.js.map +1 -1
  11. package/dist/api/cloudPlatform.d.ts +70 -129
  12. package/dist/api/cloudPlatform.d.ts.map +1 -1
  13. package/dist/api/cloudPlatform.js +79 -72
  14. package/dist/api/cloudPlatform.js.map +1 -1
  15. package/dist/api/codeShift.d.ts +315 -62
  16. package/dist/api/codeShift.d.ts.map +1 -1
  17. package/dist/api/codeShift.js +153 -12
  18. package/dist/api/codeShift.js.map +1 -1
  19. package/dist/api/discover.d.ts +23 -12
  20. package/dist/api/discover.d.ts.map +1 -1
  21. package/dist/api/discover.js +10 -0
  22. package/dist/api/discover.js.map +1 -1
  23. package/dist/api-addresses.d.ts.map +1 -1
  24. package/dist/client/account.d.ts +233 -233
  25. package/dist/client/account.d.ts.map +1 -1
  26. package/dist/client/agent-tools.d.ts +124 -124
  27. package/dist/client/agent-tools.d.ts.map +1 -1
  28. package/dist/client/agent-tools.js +10 -1
  29. package/dist/client/agent-tools.js.map +1 -1
  30. package/dist/client/agent.d.ts +46 -46
  31. package/dist/client/agent.d.ts.map +1 -1
  32. package/dist/client/ai.d.ts +123 -77
  33. package/dist/client/ai.d.ts.map +1 -1
  34. package/dist/client/ai.js +47 -2
  35. package/dist/client/ai.js.map +1 -1
  36. package/dist/client/api-management.d.ts +2 -2
  37. package/dist/client/cloud-account.d.ts +13 -13
  38. package/dist/client/cloud-platform-horizon.d.ts +19 -19
  39. package/dist/client/cloud-platform.d.ts +114 -89
  40. package/dist/client/cloud-platform.d.ts.map +1 -1
  41. package/dist/client/cloud-platform.js +73 -46
  42. package/dist/client/cloud-platform.js.map +1 -1
  43. package/dist/client/cloud-runtimes.d.ts +4 -4
  44. package/dist/client/cloud-services.d.ts +17 -17
  45. package/dist/client/cloud-services.d.ts.map +1 -1
  46. package/dist/client/code-shift.d.ts +356 -258
  47. package/dist/client/code-shift.d.ts.map +1 -1
  48. package/dist/client/code-shift.js +91 -1
  49. package/dist/client/code-shift.js.map +1 -1
  50. package/dist/client/content.d.ts +127 -132
  51. package/dist/client/content.d.ts.map +1 -1
  52. package/dist/client/data-integration.d.ts +55 -55
  53. package/dist/client/data-integration.d.ts.map +1 -1
  54. package/dist/client/discover.d.ts +15 -9
  55. package/dist/client/discover.d.ts.map +1 -1
  56. package/dist/client/discover.js +208 -0
  57. package/dist/client/discover.js.map +1 -1
  58. package/dist/client/event-bus.d.ts.map +1 -1
  59. package/dist/client/gen-ai-inference.d.ts +20 -20
  60. package/dist/client/insights.d.ts +7 -7
  61. package/dist/client/notification.d.ts +10 -10
  62. package/dist/client/runtime-manager.d.ts +8 -8
  63. package/dist/client/types.d.ts +14 -0
  64. package/dist/client/types.d.ts.map +1 -1
  65. package/dist/client/workflow.d.ts +10 -10
  66. package/dist/client/workspace-ai.d.ts +48 -48
  67. package/dist/client/workspace-manager.d.ts +77 -77
  68. package/dist/client/workspace-search.d.ts +2 -2
  69. package/dist/client/workspace.d.ts +58 -105
  70. package/dist/client/workspace.d.ts.map +1 -1
  71. package/dist/error/dictionary/cloud-platform.d.ts +6 -0
  72. package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
  73. package/dist/error/dictionary/cloud-platform.js +6 -0
  74. package/dist/error/dictionary/cloud-platform.js.map +1 -1
  75. package/dist/utils/StreamedJson.d.ts.map +1 -1
  76. package/dist/utils/StreamedJson.js +9 -1
  77. package/dist/utils/StreamedJson.js.map +1 -1
  78. package/package.json +2 -2
  79. package/readme.md +2 -1
  80. package/src/api/account.ts +1 -0
  81. package/src/api/agent-tools.ts +9 -0
  82. package/src/api/agent.ts +2 -0
  83. package/src/api/ai.ts +364 -157
  84. package/src/api/cloudPlatform.ts +142 -216
  85. package/src/api/codeShift.ts +607 -69
  86. package/src/api/discover.ts +35 -12
  87. package/src/api/notification.ts +2 -0
  88. package/src/client/agent-tools.ts +10 -1
  89. package/src/client/ai.ts +42 -1
  90. package/src/client/cloud-platform.ts +40 -25
  91. package/src/client/code-shift.ts +54 -1
  92. package/src/client/discover.ts +220 -3
  93. package/src/client/types.ts +17 -2
  94. package/src/error/dictionary/cloud-platform.ts +6 -0
  95. package/src/utils/StreamedJson.tsx +9 -2
@@ -28,7 +28,7 @@ export type GetOpportunityResponse = {
28
28
  hypotheses: GetOpportunityResponseHypothesisResponse[];
29
29
  updatedBy?: string;
30
30
  updatedAt?: string;
31
- chatId?: string;
31
+ chatId: string;
32
32
  };
33
33
  export type UpdateOpportunityRequest = {
34
34
  title?: string;
@@ -42,7 +42,7 @@ export type UpdateOpportunityResponse = {
42
42
  createdAt?: string;
43
43
  updatedBy?: string;
44
44
  updatedAt?: string;
45
- chatId?: string;
45
+ chatId: string;
46
46
  };
47
47
  export type GetHypothesisResponseDocumentResponse = {
48
48
  id: string;
@@ -59,7 +59,7 @@ export type GetHypothesisResponse = {
59
59
  createdAt?: string;
60
60
  updatedBy?: string;
61
61
  updatedAt?: string;
62
- chatId?: string;
62
+ chatId: string;
63
63
  };
64
64
  export type UpdateHypothesisRequest = {
65
65
  title?: string;
@@ -74,7 +74,7 @@ export type UpdateHypothesisResponse = {
74
74
  createdAt?: string;
75
75
  updatedBy?: string;
76
76
  updatedAt?: string;
77
- chatId?: string;
77
+ chatId: string;
78
78
  };
79
79
  export type GetDocumentResponse = {
80
80
  id: string;
@@ -85,7 +85,7 @@ export type GetDocumentResponse = {
85
85
  createdAt?: string;
86
86
  updatedBy?: string;
87
87
  updatedAt?: string;
88
- chatId?: string;
88
+ chatId: string;
89
89
  };
90
90
  export type UpdateDocumentRequest = {
91
91
  title?: string;
@@ -101,7 +101,7 @@ export type UpdateDocumentResponse = {
101
101
  createdAt?: string;
102
102
  updatedBy?: string;
103
103
  updatedAt?: string;
104
- chatId?: string;
104
+ chatId: string;
105
105
  };
106
106
  export type SortResponse = {
107
107
  direction: string;
@@ -134,7 +134,7 @@ export type PageResponseGetOpportunityResponse = {
134
134
  export type CreateOpportunityRequest = {
135
135
  title?: string;
136
136
  description?: string;
137
- chatId?: string;
137
+ chatId: string;
138
138
  };
139
139
  export type CreateOpportunityResponse = {
140
140
  id: string;
@@ -144,13 +144,13 @@ export type CreateOpportunityResponse = {
144
144
  createdAt?: string;
145
145
  updatedBy?: string;
146
146
  updatedAt?: string;
147
- chatId?: string;
147
+ chatId: string;
148
148
  };
149
149
  export type CreateHypothesisRequest = {
150
150
  opportunityId?: string;
151
151
  title?: string;
152
152
  description?: string;
153
- chatId?: string;
153
+ chatId: string;
154
154
  };
155
155
  export type CreateHypothesisResponse = {
156
156
  id: string;
@@ -161,14 +161,14 @@ export type CreateHypothesisResponse = {
161
161
  createdAt?: string;
162
162
  updatedBy?: string;
163
163
  updatedAt?: string;
164
- chatId?: string;
164
+ chatId: string;
165
165
  };
166
166
  export type CreateDocumentRequest = {
167
167
  hypothesisId?: string;
168
168
  title?: string;
169
169
  description?: string;
170
170
  content?: string;
171
- chatId?: string;
171
+ chatId: string;
172
172
  };
173
173
  export type CreateDocumentResponse = {
174
174
  id: string;
@@ -179,7 +179,14 @@ export type CreateDocumentResponse = {
179
179
  createdAt?: string;
180
180
  updatedBy?: string;
181
181
  updatedAt?: string;
182
- chatId?: string;
182
+ chatId: string;
183
+ };
184
+ export type MessageRequest = {
185
+ prompt: string;
186
+ conversationId: string;
187
+ };
188
+ export type SseEmitter = {
189
+ timeout?: number;
183
190
  };
184
191
  export type GetArtifactResponse = {
185
192
  "type": "OPPORTUNITY" | "HYPOTHESIS" | "DOCUMENT";
@@ -405,6 +412,22 @@ export function create2({ createDocumentRequest }: {
405
412
  body: createDocumentRequest
406
413
  })));
407
414
  }
415
+ export function chat({ authorization, messageRequest }: {
416
+ authorization: string;
417
+ messageRequest: MessageRequest;
418
+ }, opts?: Oazapfts.RequestOpts) {
419
+ return oazapfts.ok(oazapfts.fetchJson<{
420
+ status: 200;
421
+ data: SseEmitter;
422
+ }>("/v2/ai/chat", oazapfts.json({
423
+ ...opts,
424
+ method: "POST",
425
+ body: messageRequest,
426
+ headers: oazapfts.mergeHeaders(opts?.headers, {
427
+ Authorization: authorization
428
+ })
429
+ })));
430
+ }
408
431
  /**
409
432
  * Get specific Document content
410
433
  */
@@ -332,3 +332,5 @@ export function delete1({ notificationIntentId }: {
332
332
  method: "DELETE"
333
333
  }));
334
334
  }
335
+
336
+
@@ -12,6 +12,7 @@ import { AgentResponseWithBuiltIn, AgentToolsOpenAPIPreview, AgentVisibilityLeve
12
12
  import { workspaceAiClient } from './workspace-ai'
13
13
 
14
14
  const AGENT_DEFAULT_SLUG = 'stk_flex'
15
+ const listAgentsV3AgentsWithoutAuthorization = removeAuthorizationParam(listAgentsV3AgentsGet)
15
16
 
16
17
  class AgentToolsClient extends ReactQueryNetworkClient {
17
18
  constructor() {
@@ -57,7 +58,15 @@ class AgentToolsClient extends ReactQueryNetworkClient {
57
58
  /**
58
59
  * List agents with support for multiple filters
59
60
  */
60
- agentsMultipleFilters = this.infiniteQuery(removeAuthorizationParam(listAgentsV3AgentsGet), { pageParamName: 'filters.page' })
61
+ agentsMultipleFilters = this.infiniteQuery(listAgentsV3AgentsWithoutAuthorization, {
62
+ pageParamName: 'filters.page',
63
+ accumulator: 'items',
64
+ getNextPageParam: ({ variables, lastPage, lastPageParam }) => {
65
+ const size = variables.filters.size ?? 1
66
+ const parsedLastPageParam = (lastPageParam as number) ?? variables.filters.page ?? 1
67
+ return lastPage.items && lastPage.items.length < size ? undefined : parsedLastPageParam + 1
68
+ },
69
+ })
61
70
 
62
71
  /**
63
72
  * List agents available to be added to other agents
package/src/client/ai.ts CHANGED
@@ -38,6 +38,8 @@ import {
38
38
  resetKnowledgeObjectsV1KnowledgeSourcesSlugObjectsDelete,
39
39
  runFetchStepV1QuickCommandsSlugStepsStepSlugFetchRunPost,
40
40
  searchKnowledgeSourcesV1KnowledgeSourcesSearchPost,
41
+ tokensByUserV1AnalyticsTokensByUserGet,
42
+ tokensDailyUsageV1AnalyticsTokensDailyUsageGet,
41
43
  updateQuickCommandV1QuickCommandsSlugPatch,
42
44
  updateTitleV1ConversationsConversationIdPatch,
43
45
  vectorizeCustomKnowledgeSourceV1KnowledgeSourcesSlugCustomPost,
@@ -257,6 +259,14 @@ class AIClient extends ReactQueryNetworkClient {
257
259
  * Removes the resource of type Quick Command from the list of favorites.
258
260
  */
259
261
  removeFavoriteQuickCommand = this.mutation(removeAuthorizationParam(deleteFavoriteV1QuickCommandsSlugFavoriteDelete))
262
+ /**
263
+ * Get Tokens Daily usage
264
+ */
265
+ analyticsTokensDailyUsage = this.query(removeAuthorizationParam(tokensDailyUsageV1AnalyticsTokensDailyUsageGet))
266
+ /**
267
+ * Get Tokens By User
268
+ */
269
+ analyticsTokensByUser = this.query(tokensByUserV1AnalyticsTokensByUserGet)
260
270
 
261
271
  private static async toolsOfAgent(agentId?: string) {
262
272
  try {
@@ -293,7 +303,9 @@ class AIClient extends ReactQueryNetworkClient {
293
303
  */
294
304
  async function transform(event: Partial<FixedChatResponse>, data: Partial<ChatResponseWithSteps>) {
295
305
  const info = event.agent_info
306
+
296
307
  if (!info) return
308
+
297
309
  const tools = await AIClient.toolsOfAgent(request.context?.agent_id)
298
310
  data.steps = data.steps ? [...data.steps] : []
299
311
 
@@ -349,6 +361,32 @@ class AIClient extends ReactQueryNetworkClient {
349
361
  data.steps.push({ id: 'answer', type: 'answer', status: 'pending' })
350
362
  }
351
363
 
364
+ if (info.type === 'planning' && info.action === 'awaiting_approval') {
365
+ data.steps.push({
366
+ id: 'planning',
367
+ type: 'planning',
368
+ status: 'awaiting_approval',
369
+ user_question: info.data?.user_question,
370
+ duration: info.duration || 0,
371
+ steps: info.data?.steps?.map(s => s.goal) ?? [],
372
+ goal: info.data?.plan_goal ?? '',
373
+ })
374
+ info.data?.steps.forEach(s => data.steps?.push({
375
+ id: s.id,
376
+ type: 'step',
377
+ status: 'pending',
378
+ input: s.goal,
379
+ attempts: [{
380
+ tools: s.tools?.map(t => ({
381
+ ...(tools.find(({ id }) => id === t.tool_id) ?? { id: t.tool_id, name: t.tool_id }),
382
+ executionId: t.tool_execution_id,
383
+ goal: t.goal,
384
+ })),
385
+ }],
386
+ }))
387
+ data.steps.push({ id: 'answer', type: 'answer', status: 'pending' })
388
+ }
389
+
352
390
  if (info.type === 'step' && info.action === 'start') {
353
391
  const step = data.steps.find(s => s.id === info.id)
354
392
  if (step) step.status = 'running'
@@ -415,6 +453,7 @@ class AIClient extends ReactQueryNetworkClient {
415
453
  const tool = tools?.find(({ id }) => id === info.data?.tool_id) ?? { id: info.data?.tool_id, name: info.data?.tool_id }
416
454
  currentStep.attempts[info.data.attempt-1].tools?.push({
417
455
  ...tool,
456
+ executionId: info.id,
418
457
  input,
419
458
  })
420
459
  } else {
@@ -426,6 +465,7 @@ class AIClient extends ReactQueryNetworkClient {
426
465
  currentStep.attempts[info.data.attempt-1] ??= { tools: [] }
427
466
  currentStep.attempts[info.data.attempt-1].tools?.push({
428
467
  ...tool,
468
+ executionId: info.id,
429
469
  input,
430
470
  })
431
471
  }
@@ -448,7 +488,7 @@ class AIClient extends ReactQueryNetworkClient {
448
488
  if (answerStep) answerStep.status = 'running'
449
489
  }
450
490
 
451
- if (info.type === 'final_answer' && info.action === 'end') {
491
+ if (info.type === 'chat' && info.action === 'end') {
452
492
  const answerStep = last(data.steps)
453
493
  if (answerStep) {
454
494
  answerStep.status = 'success'
@@ -475,3 +515,4 @@ class AIClient extends ReactQueryNetworkClient {
475
515
  }
476
516
 
477
517
  export const aiClient = new AIClient()
518
+
@@ -1,20 +1,25 @@
1
1
  import { HttpError } from '@oazapfts/runtime'
2
2
  import {
3
- acceptNetworkConnection,
4
3
  createCertificate,
5
4
  createCidr,
6
5
  createDnsRecord,
7
6
  createDnsZone,
8
7
  createFolder,
9
8
  createFoundation,
10
- createInbound,
11
9
  createNetwork,
12
- createNetworkConnection,
13
10
  createProject,
14
11
  createRuntime,
15
12
  createTenant,
16
13
  createVpn,
17
14
  defaults,
15
+ deleteCertificate,
16
+ deleteCidr,
17
+ deleteDnsRecord,
18
+ deleteDnsZone,
19
+ deleteFolder,
20
+ deleteNetwork,
21
+ deleteProject,
22
+ deleteVpn,
18
23
  getCertificate,
19
24
  getFolder,
20
25
  getFolderTags,
@@ -27,9 +32,7 @@ import {
27
32
  listDnsRecord,
28
33
  listDnsZone,
29
34
  listFoundations,
30
- listInbound,
31
35
  listNetwork,
32
- listNetworkConnection,
33
36
  listRuntime,
34
37
  listTenant,
35
38
  listVpns,
@@ -133,26 +136,6 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
133
136
  * Create a network
134
137
  */
135
138
  createNetwork = this.mutation(removeAuthorizationParam(createNetwork))
136
- /**
137
- * Get a list of inbounds
138
- */
139
- listInbounds = this.query(removeAuthorizationParam(listInbound))
140
- /**
141
- * Create a inbound
142
- */
143
- createInbound = this.mutation(removeAuthorizationParam(createInbound))
144
- /**
145
- * Add a network connection
146
- */
147
- addNetworkConnection = this.mutation(removeAuthorizationParam(createNetworkConnection))
148
- /**
149
- * Get a network connection request
150
- */
151
- getNetworkConnections = this.query(removeAuthorizationParam(listNetworkConnection))
152
- /**
153
- * Accept a network connection
154
- */
155
- acceptNetworkConnection = this.mutation(removeAuthorizationParam(acceptNetworkConnection))
156
139
  /**
157
140
  * Get a list of vpn's
158
141
  */
@@ -217,6 +200,38 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
217
200
  * Update vpn tags
218
201
  */
219
202
  updateVpnTags = this.mutation(removeAuthorizationParam(putVpnTags))
203
+ /**
204
+ * Delete a folder
205
+ */
206
+ deleteFolder = this.mutation(removeAuthorizationParam(deleteFolder))
207
+ /**
208
+ * Delete a project
209
+ */
210
+ deleteProject = this.mutation(removeAuthorizationParam(deleteProject))
211
+ /**
212
+ * Delete a network
213
+ */
214
+ deleteNetwork = this.mutation(removeAuthorizationParam(deleteNetwork))
215
+ /**
216
+ * Delete a certificate
217
+ */
218
+ deleteCertificate = this.mutation(removeAuthorizationParam(deleteCertificate))
219
+ /**
220
+ * Delete a dns zone
221
+ */
222
+ deleteDnsZone = this.mutation(removeAuthorizationParam(deleteDnsZone))
223
+ /**
224
+ * Delete a dns record
225
+ */
226
+ deleteDnsRecord = this.mutation(removeAuthorizationParam(deleteDnsRecord))
227
+ /**
228
+ * Delete a VPN
229
+ */
230
+ deleteVPN = this.mutation(removeAuthorizationParam(deleteVpn))
231
+ /**
232
+ * Delete a CIDR
233
+ */
234
+ deleteCidr = this.mutation(removeAuthorizationParam(deleteCidr))
220
235
  }
221
236
 
222
237
  export const cloudPlatformClient = new CloudPlatformClient()
@@ -58,14 +58,23 @@ import {
58
58
  getModuleV1ModulesModuleIdGet,
59
59
  analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet,
60
60
  analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet,
61
+ putCustomerRatingReportV1ReportsReportIdCustomerRatingPut,
61
62
  searchReposScmServiceV2ReposSearchScmPost,
62
63
  importReposWithTagsScmServiceV2ReposSearchScmSearchIdPost,
63
64
  searchReposScmV2V2ReposSearchScmSearchIdGet,
64
65
  analyticsRepositoryTargetDetailsV1AnalyticsRepositoriesTargetDetailsGet,
65
66
  analyticsRepositoryTargetDetailsDownloadV1AnalyticsRepositoriesTargetDetailsDownloadGet,
66
- putCustomerRatingReportV1ReportsReportIdCustomerRatingPut,
67
67
  updateModuleServiceV1ModulesModuleIdPut,
68
68
  downloadSearchReposScmV2V2ReposSearchScmSearchIdDownloadGet,
69
+ moduleFavoriteServiceAddV1ModulesModuleIdFavoritesPost,
70
+ moduleFavoriteServiceDeleteV1ModulesModuleIdFavoritesDelete,
71
+ patHealthCheckV1ScmPatHealthCheckGet,
72
+ createReposBatchServiceV2ReposBatchPost,
73
+ getImportResultV2ReposBatchImportIdGet,
74
+ getModuleDocsV1ModulesModuleIdDocsGet,
75
+ downloadImportResultV2ReposBatchImportIdDownloadGet,
76
+ analyticsModuleExecutionTimesReportV1AnalyticsModulesExecutionTimesGet,
77
+ analyticsModuleExecutionTimesDownloadV1AnalyticsModulesExecutionTimesDownloadGet,
69
78
  } from '../api/codeShift'
70
79
  import { DefaultAPIError } from '../error/DefaultAPIError'
71
80
  import { codeShiftDictionary } from '../error/dictionary/code-shift'
@@ -91,6 +100,18 @@ class CodeShift extends ReactQueryNetworkClient {
91
100
  * Creates repositories in batch.
92
101
  */
93
102
  createRepositoriesBatch = this.mutation(removeAuthorizationParam(createReposBatchServiceV1ReposBatchPost))
103
+ /**
104
+ * Imports repositories in batch.
105
+ */
106
+ createRepositoriesBatchV2 = this.mutation(removeAuthorizationParam(createReposBatchServiceV2ReposBatchPost))
107
+ /**
108
+ * Gets the status of a batch import.
109
+ */
110
+ getImportBatchResultsV2 = this.query(removeAuthorizationParam(getImportResultV2ReposBatchImportIdGet))
111
+ /**
112
+ * Downloads the import result for a batch.
113
+ */
114
+ downloadImportBatchResultsV2 = this.query(removeAuthorizationParam(downloadImportResultV2ReposBatchImportIdDownloadGet))
94
115
  /**
95
116
  * Gets list of repositories.
96
117
  */
@@ -123,6 +144,14 @@ class CodeShift extends ReactQueryNetworkClient {
123
144
  * Gets module by id.
124
145
  */
125
146
  module = this.query(removeAuthorizationParam(getModuleV1ModulesModuleIdGet))
147
+ /**
148
+ * Add a module in favorites.
149
+ */
150
+ addFavoriteModule = this.mutation(removeAuthorizationParam(moduleFavoriteServiceAddV1ModulesModuleIdFavoritesPost))
151
+ /**
152
+ * Remove a module from favorites.
153
+ */
154
+ removeFavoriteModule = this.mutation(removeAuthorizationParam(moduleFavoriteServiceDeleteV1ModulesModuleIdFavoritesDelete))
126
155
  /**
127
156
  * Gets module inputs.
128
157
  */
@@ -135,10 +164,18 @@ class CodeShift extends ReactQueryNetworkClient {
135
164
  * Updates a module.
136
165
  */
137
166
  updateModule = this.mutation(removeAuthorizationParam(updateModuleServiceV1ModulesModuleIdPut))
167
+ /**
168
+ * Adds a module to favorites.
169
+ */
170
+ addModuleToFavorites = this.mutation(removeAuthorizationParam(moduleFavoriteServiceAddV1ModulesModuleIdFavoritesPost))
138
171
  /**
139
172
  * Generates a report.
140
173
  */
141
174
  generateReport = this.mutation(removeAuthorizationParam(dispatchModuleServiceV1ModulesDispatchesPost))
175
+ /**
176
+ * Gets module docs.
177
+ */
178
+ moduleDocs = this.query(removeAuthorizationParam(getModuleDocsV1ModulesModuleIdDocsGet))
142
179
  /**
143
180
  * Gets repository reports.
144
181
  */
@@ -263,6 +300,10 @@ class CodeShift extends ReactQueryNetworkClient {
263
300
  * Validates a SCM URL.
264
301
  */
265
302
  validateSCMUrl = this.mutation(removeAuthorizationParam(validateScmUrlServiceV1ReposValidateScmUrlPost))
303
+ /**
304
+ * PAT Health Check
305
+ */
306
+ checkScmPatHealth = this.query(removeAuthorizationParam(patHealthCheckV1ScmPatHealthCheckGet))
266
307
  /**
267
308
  * Get Branches for a Repository
268
309
  */
@@ -379,6 +420,18 @@ class CodeShift extends ReactQueryNetworkClient {
379
420
  analyticsRepositoryTargetDetailsDownload = this.query(
380
421
  removeAuthorizationParam(analyticsRepositoryTargetDetailsDownloadV1AnalyticsRepositoriesTargetDetailsDownloadGet),
381
422
  )
423
+ /**
424
+ * Analytics Modules Execution Times
425
+ */
426
+ analyticsModulesExecutionTimes = this.query(
427
+ removeAuthorizationParam(analyticsModuleExecutionTimesReportV1AnalyticsModulesExecutionTimesGet),
428
+ )
429
+ /**
430
+ * Analytics Modules Execution Times Download
431
+ */
432
+ analyticsModulesExecutionTimesDownload = this.query(
433
+ removeAuthorizationParam(analyticsModuleExecutionTimesDownloadV1AnalyticsModulesExecutionTimesDownloadGet),
434
+ )
382
435
  }
383
436
 
384
437
  export const codeShiftClient = new CodeShift()