@stack-spot/portal-network 0.199.0-beta.1 → 0.200.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 (94) hide show
  1. package/CHANGELOG.md +55 -1
  2. package/dist/api/account.d.ts +331 -89
  3. package/dist/api/account.d.ts.map +1 -1
  4. package/dist/api/account.js +203 -46
  5. package/dist/api/account.js.map +1 -1
  6. package/dist/api/accountAssetManager.d.ts +279 -0
  7. package/dist/api/accountAssetManager.d.ts.map +1 -0
  8. package/dist/api/accountAssetManager.js +167 -0
  9. package/dist/api/accountAssetManager.js.map +1 -0
  10. package/dist/api/agent-tools.d.ts +2 -0
  11. package/dist/api/agent-tools.d.ts.map +1 -1
  12. package/dist/api/agent-tools.js.map +1 -1
  13. package/dist/api/ai.d.ts +2 -3
  14. package/dist/api/ai.d.ts.map +1 -1
  15. package/dist/api/ai.js.map +1 -1
  16. package/dist/api/discover.d.ts +9 -6
  17. package/dist/api/discover.d.ts.map +1 -1
  18. package/dist/api/discover.js +5 -5
  19. package/dist/api/discover.js.map +1 -1
  20. package/dist/api/edpBfa.d.ts +215 -0
  21. package/dist/api/edpBfa.d.ts.map +1 -0
  22. package/dist/api/edpBfa.js +87 -0
  23. package/dist/api/edpBfa.js.map +1 -0
  24. package/dist/api-addresses.d.ts +11 -20
  25. package/dist/api-addresses.d.ts.map +1 -1
  26. package/dist/api-addresses.js +31 -17
  27. package/dist/api-addresses.js.map +1 -1
  28. package/dist/apis-itau.json +16 -0
  29. package/dist/apis.json +16 -0
  30. package/dist/client/account-asset-manager.d.ts +110 -0
  31. package/dist/client/account-asset-manager.d.ts.map +1 -0
  32. package/dist/client/account-asset-manager.js +160 -0
  33. package/dist/client/account-asset-manager.js.map +1 -0
  34. package/dist/client/account.d.ts +11 -9
  35. package/dist/client/account.d.ts.map +1 -1
  36. package/dist/client/account.js +11 -8
  37. package/dist/client/account.js.map +1 -1
  38. package/dist/client/agent-tools.d.ts +2 -2
  39. package/dist/client/agent-tools.d.ts.map +1 -1
  40. package/dist/client/agent-tools.js +2 -1
  41. package/dist/client/agent-tools.js.map +1 -1
  42. package/dist/client/ai.d.ts +24 -1
  43. package/dist/client/ai.d.ts.map +1 -1
  44. package/dist/client/ai.js +19 -1
  45. package/dist/client/ai.js.map +1 -1
  46. package/dist/client/data-integration.d.ts.map +1 -1
  47. package/dist/client/data-integration.js +8 -1
  48. package/dist/client/data-integration.js.map +1 -1
  49. package/dist/client/discover.d.ts +2 -2
  50. package/dist/client/discover.d.ts.map +1 -1
  51. package/dist/client/discover.js.map +1 -1
  52. package/dist/client/edp-bfa.d.ts +16 -0
  53. package/dist/client/edp-bfa.d.ts.map +1 -0
  54. package/dist/client/edp-bfa.js +24 -0
  55. package/dist/client/edp-bfa.js.map +1 -0
  56. package/dist/client/notification.d.ts +7 -0
  57. package/dist/client/notification.d.ts.map +1 -1
  58. package/dist/client/notification.js +10 -1
  59. package/dist/client/notification.js.map +1 -1
  60. package/dist/client/workspace-manager.d.ts +15 -0
  61. package/dist/client/workspace-manager.d.ts.map +1 -1
  62. package/dist/client/workspace-manager.js +19 -1
  63. package/dist/client/workspace-manager.js.map +1 -1
  64. package/dist/error/dictionary/accountAssetManager.d.ts +11 -0
  65. package/dist/error/dictionary/accountAssetManager.d.ts.map +1 -0
  66. package/dist/error/dictionary/accountAssetManager.js +11 -0
  67. package/dist/error/dictionary/accountAssetManager.js.map +1 -0
  68. package/dist/index.d.ts +3 -1
  69. package/dist/index.d.ts.map +1 -1
  70. package/dist/index.js +3 -1
  71. package/dist/index.js.map +1 -1
  72. package/dist/network/NetworkClient.js.map +1 -1
  73. package/package.json +1 -1
  74. package/src/api/account.ts +579 -163
  75. package/src/api/accountAssetManager.ts +655 -0
  76. package/src/api/agent-tools.ts +2 -0
  77. package/src/api/ai.ts +2 -3
  78. package/src/api/discover.ts +10 -10
  79. package/src/api/edpBfa.ts +472 -0
  80. package/src/api-addresses.ts +56 -37
  81. package/src/apis-itau.json +16 -0
  82. package/src/apis.json +16 -0
  83. package/src/client/account-asset-manager.ts +100 -0
  84. package/src/client/account.ts +11 -7
  85. package/src/client/agent-tools.ts +2 -1
  86. package/src/client/ai.ts +10 -0
  87. package/src/client/data-integration.ts +9 -2
  88. package/src/client/discover.ts +2 -2
  89. package/src/client/edp-bfa.ts +24 -0
  90. package/src/client/notification.ts +6 -1
  91. package/src/client/workspace-manager.ts +13 -0
  92. package/src/error/dictionary/accountAssetManager.ts +12 -0
  93. package/src/index.ts +4 -1
  94. package/src/network/NetworkClient.ts +1 -1
package/src/apis.json CHANGED
@@ -221,5 +221,21 @@
221
221
  "prd": "https://discover-core.stackspot.com"
222
222
  },
223
223
  "docs": "/v3/api-docs"
224
+ },
225
+ "accountAssetManager" : {
226
+ "url": {
227
+ "dev": "https://account-asset-manager.dev.stackspot.com",
228
+ "stg": "https://account-asset-manager.stg.stackspot.com",
229
+ "prd": "https://account-asset-manager.stackspot.com"
230
+ },
231
+ "docs": "/v3/api-docs"
232
+ },
233
+ "edpBfa": {
234
+ "url": {
235
+ "dev": "https://adp-development-edp-bfa.dev.stackspot.com",
236
+ "stg": "https://adp-development-edp-bfa.stg.stackspot.com",
237
+ "prd": "https://edp-bfa.stackspot.com"
238
+ },
239
+ "docs": "/openapi.json"
224
240
  }
225
241
  }
@@ -0,0 +1,100 @@
1
+ import { HttpError } from '@oazapfts/runtime'
2
+ import { getApiAddresses } from '../api-addresses'
3
+ import { defaults, deleteAssetType, deleteFolder, deleteProject, disassociateProjectAsset, getFolderDetails, getProjectDetails, listAssetTypes, listFolders, saveAssetType, saveFolder, saveProject, updateAsset, updateAssetType, updateFolders, updateProject } from '../api/accountAssetManager'
4
+ import { DefaultAPIError } from '../error/DefaultAPIError'
5
+ import { accountAssetManagerDictionary } from '../error/dictionary/accountAssetManager'
6
+ import { StackspotAPIError } from '../error/StackspotAPIError'
7
+ import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient'
8
+ import { removeAuthorizationParam } from '../utils/remove-authorization-param'
9
+
10
+ class AccountAssetManagerClient extends ReactQueryNetworkClient {
11
+ constructor() {
12
+ super(getApiAddresses().accountAssetManager.url, defaults)
13
+ }
14
+
15
+ protected buildStackSpotError(error: HttpError): StackspotAPIError {
16
+ return new DefaultAPIError(error.data, error.status, accountAssetManagerDictionary, error.headers)
17
+ }
18
+
19
+ /**
20
+ * Save project
21
+ */
22
+ saveProject = this.mutation(removeAuthorizationParam(saveProject))
23
+
24
+ /**
25
+ * Get project details
26
+ */
27
+ getProjectDetails = this.query(removeAuthorizationParam(getProjectDetails))
28
+
29
+ /**
30
+ * Delete project
31
+ */
32
+ deleteProject = this.mutation(removeAuthorizationParam(deleteProject))
33
+
34
+ /**
35
+ * Update project
36
+ */
37
+ updateProject = this.mutation(removeAuthorizationParam(updateProject))
38
+
39
+ /**
40
+ * Disassociate project asset
41
+ */
42
+ disassociateProjectAsset = this.mutation(removeAuthorizationParam(disassociateProjectAsset))
43
+
44
+ /**
45
+ * List account folders
46
+ */
47
+ folders = this.query(removeAuthorizationParam(listFolders))
48
+
49
+ /**
50
+ * Create new folder in account
51
+ */
52
+ createFolder = this.mutation(removeAuthorizationParam(saveFolder))
53
+
54
+ /**
55
+ * Get folder details
56
+ */
57
+ folderDetails = this.query(removeAuthorizationParam(getFolderDetails))
58
+
59
+ /**
60
+ * Delete folder
61
+ */
62
+ deleteFolder = this.mutation(removeAuthorizationParam(deleteFolder))
63
+
64
+ /**
65
+ * Update folder
66
+ */
67
+ updateFolder = this.mutation(removeAuthorizationParam(updateFolders))
68
+
69
+ /**
70
+ * Create asset
71
+ */
72
+ createAsset = this.mutation(removeAuthorizationParam(saveAssetType))
73
+
74
+ /**
75
+ * Update asset
76
+ */
77
+ updateAsset = this.mutation(removeAuthorizationParam(updateAsset))
78
+
79
+ /**
80
+ * List all asset types
81
+ */
82
+ assetTypes = this.query(removeAuthorizationParam(listAssetTypes))
83
+
84
+ /**
85
+ * Save asset type
86
+ */
87
+ saveAssetType = this.mutation(removeAuthorizationParam(saveAssetType))
88
+
89
+ /**
90
+ * Delete asset type
91
+ */
92
+ deleteAssetType = this.mutation(removeAuthorizationParam(deleteAssetType))
93
+
94
+ /**
95
+ * Update asset type
96
+ */
97
+ updateAssetType = this.mutation(removeAuthorizationParam(updateAssetType))
98
+ }
99
+
100
+ export const accountAssetManagerClient = new AccountAssetManagerClient()
@@ -102,8 +102,8 @@ import {
102
102
  isCreatedScmCredentials1,
103
103
  listAccountMemberFavorites,
104
104
  listExtensionLinks,
105
- listExtensions,
106
105
  listExtensionVersions,
106
+ listManageableExtensions,
107
107
  listMemberFavoritesByResource,
108
108
  listScmCredentials1,
109
109
  listScmCredentials2, partialUpdateSso, personalAccessTokenAuthorization,
@@ -145,8 +145,12 @@ import { DefaultAPIError } from '../error/DefaultAPIError'
145
145
  import { accountDictionary } from '../error/dictionary/account'
146
146
  import { StackspotAPIError } from '../error/StackspotAPIError'
147
147
  import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient'
148
+ import { removeAuthorizationParam } from '../utils/remove-authorization-param'
148
149
  import { CreateSCMRequest, SCMStatus, UpdateSCMRequest } from './types'
149
150
 
151
+ const listAllResourcesOfGroup = removeAuthorizationParam(getGroupResources)
152
+ const getsListAllResourcesOfGroup = removeAuthorizationParam(getResources)
153
+
150
154
  class AccountClient extends ReactQueryNetworkClient {
151
155
  constructor() {
152
156
  super(getApiAddresses().account.url, defaults)
@@ -324,9 +328,9 @@ class AccountClient extends ReactQueryNetworkClient {
324
328
  */
325
329
  removeRoleFromGroup = this.mutation(deleteRole)
326
330
  /**
327
- * Gets all resources of a group (paginated).
331
+ * Get all resources by groups with pagination.
328
332
  */
329
- groupResources = this.infiniteQuery(getGroupResources)
333
+ allResourcesByGroupWithPagination = this.infiniteQuery(listAllResourcesOfGroup, { accumulator: 'items' })
330
334
  /**
331
335
  * Adds several resources to a group.
332
336
  */
@@ -393,7 +397,7 @@ class AccountClient extends ReactQueryNetworkClient {
393
397
  /**
394
398
  * Gets all resources (paginated)
395
399
  */
396
- allResources = this.infiniteQuery(getResources)
400
+ allResources = this.infiniteQuery(getsListAllResourcesOfGroup, { accumulator: 'items' })
397
401
  /**
398
402
  * Gets all resource types (paginated)
399
403
  */
@@ -649,9 +653,9 @@ class AccountClient extends ReactQueryNetworkClient {
649
653
  */
650
654
  allRolesByGroupWithPagination = this.query(getRoles5)
651
655
  /**
652
- * Get all resources by groups with pagination
656
+ * Gets all resources of a group (paginated)
653
657
  */
654
- allResourcesByGroupWithPagination = this.query(getGroupResources1)
658
+ groupResources = this.query(getGroupResources1)
655
659
  /**
656
660
  * Get all roles account with pagination
657
661
  */
@@ -687,7 +691,7 @@ class AccountClient extends ReactQueryNetworkClient {
687
691
  /**
688
692
  * Lists all extensions.
689
693
  */
690
- extensions = this.query(listExtensions)
694
+ extensions = this.query(listManageableExtensions)
691
695
 
692
696
  /**
693
697
  * Lists all versions of an extension.
@@ -13,6 +13,7 @@ import { workspaceAiClient } from './workspace-ai'
13
13
 
14
14
  const AGENT_DEFAULT_SLUG = 'stk_flex'
15
15
  const listAgentsV3AgentsWithoutAuthorization = removeAuthorizationParam(listAgentsV3AgentsGet)
16
+ const listToolkitsAuthorization = removeAuthorizationParam(listToolkitsV2ToolkitsGet)
16
17
 
17
18
  class AgentToolsClient extends ReactQueryNetworkClient {
18
19
  constructor() {
@@ -150,7 +151,7 @@ class AgentToolsClient extends ReactQueryNetworkClient {
150
151
  /**
151
152
  * Get list of Toolkits V2
152
153
  */
153
- toolkitsV2 = this.query(removeAuthorizationParam(listToolkitsV2ToolkitsGet))
154
+ toolkitsV2 = this.infiniteQuery(listToolkitsAuthorization, { accumulator: 'items' })
154
155
  /**
155
156
  * Lists all tools of an MCP toolkit.
156
157
  */
package/src/client/ai.ts CHANGED
@@ -45,6 +45,8 @@ import {
45
45
  resetKnowledgeObjectsV1KnowledgeSourcesSlugObjectsDelete,
46
46
  runFetchStepV1QuickCommandsSlugStepsStepSlugFetchRunPost,
47
47
  searchKnowledgeSourcesV1KnowledgeSourcesSearchPost,
48
+ tokensByUserV1AnalyticsTokensByUserGet,
49
+ tokensDailyUsageV1AnalyticsTokensDailyUsageGet,
48
50
  startScriptStepV1QuickCommandsSlugStepsStepSlugStartScriptPost,
49
51
  totalV1TokensUsageTotalGet,
50
52
  updateQuickCommandV1QuickCommandsSlugPatch,
@@ -277,6 +279,14 @@ class AIClient extends ReactQueryNetworkClient {
277
279
  */
278
280
  removeFavoriteQuickCommand = this.mutation(removeAuthorizationParam(deleteFavoriteV1QuickCommandsSlugFavoriteDelete))
279
281
  /**
282
+ * Get Tokens Daily usage
283
+ */
284
+ analyticsTokensDailyUsage = this.query(removeAuthorizationParam(tokensDailyUsageV1AnalyticsTokensDailyUsageGet))
285
+ /**
286
+ * Get Tokens By User
287
+ */
288
+ analyticsTokensByUser = this.query(removeAuthorizationParam(tokensByUserV1AnalyticsTokensByUserGet))
289
+ /*
280
290
  * Lists all the feature flags for this user.
281
291
  */
282
292
  flags = this.query(getFlagsV1FlagsGet)
@@ -99,7 +99,14 @@ class DataIntegrationClient extends ReactQueryNetworkClient {
99
99
  /**
100
100
  * List of knowledge sources with pagination
101
101
  */
102
- knowledgeSourcesV2 = this.infiniteQuery(listKSV2WithoutAuthorization, { accumulator: 'items' })
102
+ knowledgeSourcesV2 = this.infiniteQuery(listKSV2WithoutAuthorization, {
103
+ accumulator: 'items',
104
+ getNextPageParam: ({ variables, lastPage, lastPageParam }) => {
105
+ const size = variables.size ?? 1
106
+ const parsedLastPageParam = (lastPageParam as number) ?? variables.page ?? 1
107
+ return lastPage.items && lastPage.items.length < size ? undefined : parsedLastPageParam + 1
108
+ },
109
+ })
103
110
  /**
104
111
  * Adds the resource of type Knowledge Source to the list of favorites.
105
112
  */
@@ -199,7 +206,7 @@ class DataIntegrationClient extends ReactQueryNetworkClient {
199
206
  * Get Indexed Files
200
207
  */
201
208
  listIndexedProjectFiles = this.query(removeAuthorizationParam(getIndexedFilesV1KnowledgeSourcesKsSlugFilesGet))
202
-
209
+
203
210
  }
204
211
 
205
212
  export const dataIntegrationClient = new DataIntegrationClient()
@@ -2,7 +2,7 @@ import { HttpError } from '@oazapfts/runtime'
2
2
  import { findLast, last } from 'lodash'
3
3
  import { getApiAddresses } from '../api-addresses'
4
4
  import { ConversationResponse } from '../api/ai'
5
- import { create, create1, create2, defaults, deleteById, deleteById1, deleteById2, fetchInsights, getAll, getAll1, getAll2, getAllByHypothesis, getById, getById1, getById2, getInsightById, GetOpportunityResponse, MessageRequest, refreshInsights } from '../api/discover'
5
+ import { create, create1, create2, defaults, deleteById, deleteById1, deleteById2, fetchInsights, getAll, getAll1, getAll2, getAllByHypothesis, getById, getById1, getById2, getInsightById, GetOpportunityResponse, AiChatRequest, refreshInsights } from '../api/discover'
6
6
  import { DefaultAPIError } from '../error/DefaultAPIError'
7
7
  import { StackspotAPIError } from '../error/StackspotAPIError'
8
8
  import { StreamedJson } from '../utils/StreamedJson'
@@ -121,7 +121,7 @@ class DiscoverClient extends ReactQueryNetworkClient {
121
121
  }
122
122
 
123
123
 
124
- sendChatMessage(request: MessageRequest & { agentId: string }, minChangeIntervalMS?: number): StreamedJson<ChatResponseWithSteps> {
124
+ sendChatMessage(request: AiChatRequest & { agentId: string }, minChangeIntervalMS?: number): StreamedJson<ChatResponseWithSteps> {
125
125
  const abortController = new AbortController()
126
126
  const headers = {
127
127
  'Content-Type': 'application/json',
@@ -0,0 +1,24 @@
1
+ import { HttpError } from '@oazapfts/runtime'
2
+ import { getApiAddresses } from '../api-addresses'
3
+ import { defaults, executeCodeWorkflow } from '../api/edpBfa'
4
+ import { DefaultAPIError } from '../error/DefaultAPIError'
5
+ import { baseDictionary } from '../error/dictionary/base'
6
+ import { StackspotAPIError } from '../error/StackspotAPIError'
7
+ import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient'
8
+
9
+ class EdpBfaClient extends ReactQueryNetworkClient {
10
+ constructor() {
11
+ super(getApiAddresses().edpBfa.url, defaults)
12
+ }
13
+
14
+ protected buildStackSpotError(error: HttpError): StackspotAPIError {
15
+ return new DefaultAPIError(error.data, error.status, baseDictionary, error.headers)
16
+ }
17
+
18
+ /**
19
+ * Triggers an workflow to generate code.
20
+ */
21
+ generateCode = this.mutation(executeCodeWorkflow)
22
+ }
23
+
24
+ export const edpBfaClient = new EdpBfaClient()
@@ -1,5 +1,5 @@
1
1
  import { HttpError } from '@oazapfts/runtime'
2
- import { commit, committedNotifications, defaults, findAll } from '../api/notification'
2
+ import { commit, committedNotifications, defaults, findAll, uncommit } from '../api/notification'
3
3
  import { DefaultAPIError } from '../error/DefaultAPIError'
4
4
  import { baseDictionary } from '../error/dictionary/base'
5
5
  import { StackspotAPIError } from '../error/StackspotAPIError'
@@ -27,6 +27,11 @@ class NotificationClient extends ReactQueryNetworkClient {
27
27
  * Mark a notification as committed (mark as read)
28
28
  */
29
29
  commit = this.mutation(commit)
30
+ /**
31
+ * Mark a notification as uncommitted (mark as unread)
32
+ */
33
+ uncommit = this.mutation(uncommit)
34
+
30
35
  }
31
36
 
32
37
  export const notificationClient = new NotificationClient()
@@ -29,6 +29,8 @@ import {
29
29
  contextControllerclearActionContextInWorkspace,
30
30
  contextControllerclearPluginContextInAccount,
31
31
  contextControllerclearPluginContextInWorkspace,
32
+ contextControllerclearWorkflowContextInAccount,
33
+ contextControllerclearWorkflowContextInWorkspace,
32
34
  contextControllerimportContextInAccount,
33
35
  contextControllerimportContextInWorkspace,
34
36
  contextControllerupsertAccountActionsInputContext,
@@ -539,6 +541,17 @@ class WorkspaceManagerClient extends ReactQueryNetworkClient {
539
541
  permission: async ({ stackVersionId, workflowVersionId }: Parameters<typeof contextControllerupsertWorkflowAccountContext>[0]) =>
540
542
  workspaceClient.saveContextInAccount.isAllowed({ $type: 'workflow', stackVersionId, externalId: workflowVersionId }),
541
543
  })
544
+
545
+ /**
546
+ * Clear stack workflow context in account
547
+ */
548
+ clearInputContextWorkflowAccount = this.mutation(contextControllerclearWorkflowContextInAccount)
549
+
550
+ /**
551
+ * Clear stack workflow context in workspace
552
+ */
553
+ clearInputContextWorkflowWorkspace = this.mutation(contextControllerclearWorkflowContextInWorkspace)
554
+
542
555
  /**
543
556
  * Get Stacks with context
544
557
  */
@@ -0,0 +1,12 @@
1
+ import { Dictionary } from '@stack-spot/portal-translate'
2
+
3
+ export const accountAssetManagerDictionary = {
4
+ en: {
5
+ FOLDER_BAD_REQUEST_ERROR: 'The provided data is invalid or inconsistent.',
6
+ FOLDER_ALREADY_EXISTS: 'A folder with this name already exists.',
7
+ },
8
+ pt: {
9
+ FOLDER_BAD_REQUEST_ERROR: 'Os dados informados estão inválidos ou inconsistentes.',
10
+ FOLDER_ALREADY_EXISTS: 'Já existe uma pasta com esse nome.',
11
+ },
12
+ } satisfies Dictionary
package/src/index.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export { CancelledError } from '@tanstack/react-query'
2
- export { apiAddresses, getApiAddresses, getApisByTenant, getBaseUrlByTenantWithOverride, setApisOverride } from './api-addresses'
2
+ export { apiAddresses, getApiAddresses, getApisBaseUrlConfig, getBaseUrlByTenantWithOverride } from './api-addresses'
3
3
  export { accountClient } from './client/account'
4
+ export { accountAssetManagerClient } from './client/account-asset-manager'
4
5
  export { agentClient } from './client/agent'
5
6
  export { agentToolsClient } from './client/agent-tools'
6
7
  export { aiClient } from './client/ai'
@@ -15,6 +16,7 @@ export { contentClient } from './client/content'
15
16
  export { dataIntegrationClient } from './client/data-integration'
16
17
  export * from './client/discover'
17
18
  export { discoverClient } from './client/discover'
19
+ export { edpBfaClient } from './client/edp-bfa'
18
20
  export { eventBusClient } from './client/event-bus'
19
21
  export { genAiInferenceClient } from './client/gen-ai-inference'
20
22
  export { insightsClient } from './client/insights'
@@ -41,3 +43,4 @@ export { StreamedArray } from './utils/StreamedArray'
41
43
  export { StreamedJson } from './utils/StreamedJson'
42
44
  export { useExtendedList } from './utils/use-extended-list'
43
45
  export { useStreamedArray } from './utils/use-streamed-array'
46
+
@@ -65,7 +65,7 @@ export abstract class NetworkClient {
65
65
  * @returns the final baseURL for the current environment, considering overrides if available.
66
66
  */
67
67
  protected getBaseURL(): string {
68
- return getBaseUrlByTenantWithOverride(this.baseURL, NetworkClient.env, NetworkClient.tenant);
68
+ return getBaseUrlByTenantWithOverride(this.baseURL, NetworkClient.env, NetworkClient.tenant)
69
69
  }
70
70
 
71
71
  /**