@stack-spot/portal-network 0.183.0 → 0.184.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2412 -2405
- package/dist/api/account.js +1 -1
- package/dist/api/agent-tools.js +1 -1
- package/dist/api/agent.js +1 -1
- package/dist/api/ai.js +1 -1
- package/dist/api/apiManagement.js +1 -1
- package/dist/api/apiRuntime.js +1 -1
- package/dist/api/cloudAccount.js +1 -1
- package/dist/api/cloudPlatform.js +1 -1
- package/dist/api/cloudPlatformHorizon.js +1 -1
- package/dist/api/cloudRuntimes.js +1 -1
- package/dist/api/cloudServices.js +1 -1
- package/dist/api/codeShift.js +1 -1
- package/dist/api/content.js +1 -1
- package/dist/api/dataIntegration.js +1 -1
- package/dist/api/discover.js +1 -1
- package/dist/api/genAiInference.js +1 -1
- package/dist/api/insights.js +1 -1
- package/dist/api/notification.js +1 -1
- package/dist/api/secrets.js +1 -1
- package/dist/api/serviceCatalog.js +1 -1
- package/dist/api/workspace-ai.js +1 -1
- package/dist/api/workspace.js +1 -1
- package/dist/api/workspaceManager.d.ts +16 -10
- package/dist/api/workspaceManager.d.ts.map +1 -1
- package/dist/api/workspaceManager.js +11 -1
- package/dist/api/workspaceManager.js.map +1 -1
- package/dist/api/workspaceSearchEngine.js +1 -1
- package/dist/client/workspace-manager.d.ts +6 -0
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +10 -1
- package/dist/client/workspace-manager.js.map +1 -1
- package/package.json +6 -6
- package/scripts/generate-apis.ts +134 -134
- package/src/api/account.ts +8367 -8367
- package/src/api/agent-tools.ts +2169 -2169
- package/src/api/agent.ts +1083 -1083
- package/src/api/ai.ts +3388 -3388
- package/src/api/apiManagement.ts +570 -570
- package/src/api/apiRuntime.ts +2103 -2103
- package/src/api/cloudAccount.ts +1239 -1239
- package/src/api/cloudPlatform.ts +927 -927
- package/src/api/cloudPlatformHorizon.ts +2655 -2655
- package/src/api/cloudRuntimes.ts +2043 -2043
- package/src/api/cloudServices.ts +1445 -1445
- package/src/api/codeShift.ts +3481 -3481
- package/src/api/content.ts +9785 -9785
- package/src/api/dataIntegration.ts +1657 -1657
- package/src/api/discover.ts +435 -435
- package/src/api/eventBus.ts +171 -171
- package/src/api/genAiInference.ts +603 -603
- package/src/api/insights.ts +310 -310
- package/src/api/notification.ts +334 -334
- package/src/api/secrets.ts +342 -342
- package/src/api/serviceCatalog.ts +2908 -2908
- package/src/api/workflows.ts +1669 -1669
- package/src/api/workspace-ai.ts +677 -677
- package/src/api/workspace.ts +5889 -5889
- package/src/api/workspaceManager.ts +2951 -2936
- package/src/api/workspaceSearchEngine.ts +153 -153
- package/src/api-addresses.ts +120 -120
- package/src/apis-itau.json +225 -225
- package/src/apis.json +225 -225
- package/src/client/account.ts +902 -902
- package/src/client/agent-tools.ts +210 -210
- package/src/client/agent.ts +81 -81
- package/src/client/ai.ts +395 -395
- package/src/client/api-management.ts +40 -40
- package/src/client/cloud-account.ts +70 -70
- package/src/client/cloud-platform-horizon.ts +113 -113
- package/src/client/cloud-platform.ts +163 -163
- package/src/client/cloud-runtimes.ts +129 -129
- package/src/client/cloud-services.ts +94 -94
- package/src/client/code-shift.ts +349 -349
- package/src/client/content.ts +538 -538
- package/src/client/data-integration.ts +191 -191
- package/src/client/discover.ts +89 -89
- package/src/client/event-bus.ts +84 -84
- package/src/client/gen-ai-inference.ts +65 -65
- package/src/client/insights.ts +28 -28
- package/src/client/notification.ts +32 -32
- package/src/client/runtime-manager.ts +76 -76
- package/src/client/secrets.ts +60 -60
- package/src/client/types.ts +377 -377
- package/src/client/workflow.ts +83 -83
- package/src/client/workspace-ai.ts +191 -191
- package/src/client/workspace-manager.ts +564 -560
- package/src/client/workspace-search.ts +39 -39
- package/src/client/workspace.ts +480 -480
- package/src/error/DefaultAPIError.ts +151 -151
- package/src/error/FileUploadError.ts +18 -18
- package/src/error/IgnoredErrorCodes.ts +3 -3
- package/src/error/StackspotAPIError.ts +101 -101
- package/src/error/StreamCanceledError.ts +10 -10
- package/src/error/StreamError.ts +7 -7
- package/src/error/StreamJsonError.ts +10 -10
- package/src/error/dictionary/account.ts +58 -58
- package/src/error/dictionary/action-details.ts +20 -20
- package/src/error/dictionary/action.ts +211 -211
- package/src/error/dictionary/agent-tools.ts +75 -75
- package/src/error/dictionary/ai-inference.ts +28 -28
- package/src/error/dictionary/base.ts +22 -22
- package/src/error/dictionary/cloud-platform.ts +82 -82
- package/src/error/dictionary/cnt-fields.ts +14 -14
- package/src/error/dictionary/cnt.ts +103 -103
- package/src/error/dictionary/code-shift.ts +12 -12
- package/src/error/dictionary/rte.ts +24 -24
- package/src/error/dictionary/rtm.ts +10 -10
- package/src/error/dictionary/secrets.ts +14 -14
- package/src/error/dictionary/workspace-ai.ts +10 -10
- package/src/error/dictionary/workspace-details.ts +15 -15
- package/src/error/dictionary/workspace-fields.ts +10 -10
- package/src/error/dictionary/workspace.ts +209 -209
- package/src/error/types.ts +21 -21
- package/src/index.ts +43 -43
- package/src/network/AutoInfiniteQuery.ts +115 -115
- package/src/network/AutoMutation.ts +27 -27
- package/src/network/AutoOperation.ts +73 -73
- package/src/network/AutoQuery.ts +75 -75
- package/src/network/ManualInfiniteQuery.ts +95 -95
- package/src/network/ManualMutation.ts +40 -40
- package/src/network/ManualOperation.ts +52 -52
- package/src/network/ManualQuery.ts +82 -82
- package/src/network/NetworkClient.ts +167 -167
- package/src/network/ReactQueryNetworkClient.ts +312 -312
- package/src/network/react-query-client.ts +14 -14
- package/src/network/types.ts +294 -294
- package/src/types.ts +1 -1
- package/src/utils/StreamedArray.tsx +146 -146
- package/src/utils/StreamedJson.tsx +166 -166
- package/src/utils/remove-authorization-param.ts +6 -6
- package/src/utils/string.ts +19 -19
- package/src/utils/use-extended-list.ts +80 -80
- package/src/utils/use-streamed-array.ts +17 -17
- package/tsconfig.build.json +4 -4
- package/tsconfig.json +10 -10
package/src/apis-itau.json
CHANGED
|
@@ -1,225 +1,225 @@
|
|
|
1
|
-
{
|
|
2
|
-
"ai": {
|
|
3
|
-
"url": {
|
|
4
|
-
"stg": "https://genai-code-buddy-api.stackspot.hom.aws.cloud.ihf",
|
|
5
|
-
"dev": "https://genai-code-buddy-api.stackspot.dev.aws.cloud.ihf",
|
|
6
|
-
"prd": "https://genai-code-buddy-api.stackspot.prod.aws.cloud.ihf"
|
|
7
|
-
},
|
|
8
|
-
"docs": "/openapi.json"
|
|
9
|
-
},
|
|
10
|
-
"workspace-ai": {
|
|
11
|
-
"url": {
|
|
12
|
-
"stg": "https://genai-workspace-ai-api.stackspot.hom.aws.cloud.ihf",
|
|
13
|
-
"dev": "https://genai-workspace-ai-api.stackspot.dev.aws.cloud.ihf",
|
|
14
|
-
"prd": "https://genai-workspace-ai-api.stackspot.prod.aws.cloud.ihf"
|
|
15
|
-
},
|
|
16
|
-
"docs": "/openapi.json"
|
|
17
|
-
},
|
|
18
|
-
"agent": {
|
|
19
|
-
"url": {
|
|
20
|
-
"dev": "https://genai-ai-agent-mgmt-api.dev.stackspot.com",
|
|
21
|
-
"stg": "https://genai-ai-agent-mgmt-api.stg.stackspot.com",
|
|
22
|
-
"prd": "https://genai-ai-agent-mgmt-api.stackspot.com"
|
|
23
|
-
},
|
|
24
|
-
"docs": "/q/openapi"
|
|
25
|
-
},
|
|
26
|
-
"agent-tools": {
|
|
27
|
-
"url": {
|
|
28
|
-
"stg": "https://genai-agent-tools-api.stackspot.hom.aws.cloud.ihf",
|
|
29
|
-
"dev": "https://genai-agent-tools-api.stackspot.dev.aws.cloud.ihf",
|
|
30
|
-
"prd": "https://genai-agent-tools-api.stackspot.prod.aws.cloud.ihf"
|
|
31
|
-
},
|
|
32
|
-
"docs": "/openapi.json"
|
|
33
|
-
},
|
|
34
|
-
"dataIntegration": {
|
|
35
|
-
"url": {
|
|
36
|
-
"stg": "https://genai-data-integration.stackspot.hom.aws.cloud.ihf",
|
|
37
|
-
"dev": "https://genai-data-integration.stackspot.dev.aws.cloud.ihf",
|
|
38
|
-
"prd": "https://genai-data-integration.stackspot.prod.aws.cloud.ihf"
|
|
39
|
-
},
|
|
40
|
-
"docs": "/openapi.json"
|
|
41
|
-
},
|
|
42
|
-
"workspace": {
|
|
43
|
-
"url": {
|
|
44
|
-
"dev": "https://workspace-workspace-api.dev.stackspot.com",
|
|
45
|
-
"stg": "https://workspace-workspace-api.stg.stackspot.com",
|
|
46
|
-
"prd": "https://workspace.stackspot.com"
|
|
47
|
-
},
|
|
48
|
-
"docs": "/v3/api-docs"
|
|
49
|
-
},
|
|
50
|
-
"account": {
|
|
51
|
-
"url": {
|
|
52
|
-
"stg": "https://account-account-api.stackspot.hom.aws.cloud.ihf",
|
|
53
|
-
"dev": "https://account-account-api.stackspot.dev.aws.cloud.ihf",
|
|
54
|
-
"prd": "https://account-account-api.stackspot.prod.aws.cloud.ihf"
|
|
55
|
-
},
|
|
56
|
-
"docs": "/v3/api-docs"
|
|
57
|
-
},
|
|
58
|
-
"content": {
|
|
59
|
-
"url": {
|
|
60
|
-
"dev": "https://content-content-api.dev.stackspot.com",
|
|
61
|
-
"stg": "https://content-content-api.stg.stackspot.com",
|
|
62
|
-
"prd": "https://content-api.stackspot.com"
|
|
63
|
-
},
|
|
64
|
-
"docs": "/v3/api-docs"
|
|
65
|
-
},
|
|
66
|
-
"eventBus": {
|
|
67
|
-
"url": {
|
|
68
|
-
"stg": "https://idp-event-bus-api.stackspot.hom.aws.cloud.ihf",
|
|
69
|
-
"dev": "https://idp-event-bus-api.stackspot.dev.aws.cloud.ihf",
|
|
70
|
-
"prd": "https://idp-event-bus-api.stackspot.prod.aws.cloud.ihf"
|
|
71
|
-
},
|
|
72
|
-
"docs": "/v3/api-docs"
|
|
73
|
-
},
|
|
74
|
-
"serviceCatalog": {
|
|
75
|
-
"url": {
|
|
76
|
-
"dev": "https://catalog-tech-products-catalog-api.dev.stackspot.com",
|
|
77
|
-
"stg": "https://catalog-tech-products-catalog-api.stg.stackspot.com",
|
|
78
|
-
"prd": "https://catalog-api.stackspot.com"
|
|
79
|
-
},
|
|
80
|
-
"docs": "/v3/api-docs"
|
|
81
|
-
},
|
|
82
|
-
"apiRuntime": {
|
|
83
|
-
"url": {
|
|
84
|
-
"dev": "https://runtime-manager.dev.stackspot.com",
|
|
85
|
-
"stg": "https://runtime-manager.stg.stackspot.com",
|
|
86
|
-
"prd": "https://runtime-manager.stackspot.com"
|
|
87
|
-
},
|
|
88
|
-
"docs": "/v3/api-docs"
|
|
89
|
-
},
|
|
90
|
-
"cloudServices": {
|
|
91
|
-
"url": {
|
|
92
|
-
"dev": "https://cloud-services-cloud-services-api.dev.stackspot.com",
|
|
93
|
-
"stg": "https://cloud-services-cloud-services-api.stg.stackspot.com",
|
|
94
|
-
"prd": "https://cloud-services-api.stackspot.com"
|
|
95
|
-
},
|
|
96
|
-
"docs": "/v3/api-docs"
|
|
97
|
-
},
|
|
98
|
-
"cloudAccount": {
|
|
99
|
-
"url": {
|
|
100
|
-
"dev": "https://account-account-external-connections-api.dev.stackspot.com",
|
|
101
|
-
"stg": "https://account-account-external-connections-api.stg.stackspot.com",
|
|
102
|
-
"prd": "https://account-external-connections-api.stackspot.com"
|
|
103
|
-
},
|
|
104
|
-
"docs": "/v3/api-docs"
|
|
105
|
-
},
|
|
106
|
-
"dataPlatform": {
|
|
107
|
-
"url": {
|
|
108
|
-
"dev": "https://data-platform-metabase.dev.stackspot.com",
|
|
109
|
-
"stg": "https://data-platform-metabase.stg.stackspot.com",
|
|
110
|
-
"prd": "https://data-platform-stackspot-public.stackspot.com"
|
|
111
|
-
},
|
|
112
|
-
"docs": "/v3/api-docs"
|
|
113
|
-
},
|
|
114
|
-
"insights": {
|
|
115
|
-
"url": {
|
|
116
|
-
"dev": "https://insights-insights-api.dev.stackspot.com",
|
|
117
|
-
"stg": "https://insights-insights-api.stg.stackspot.com",
|
|
118
|
-
"prd": "https://insights-api.stackspot.com"
|
|
119
|
-
},
|
|
120
|
-
"docs": "/v3/api-docs"
|
|
121
|
-
},
|
|
122
|
-
"workflows": {
|
|
123
|
-
"url": {
|
|
124
|
-
"dev": "https://workflow-workflow-api.dev.stackspot.com",
|
|
125
|
-
"stg": "https://workflow-workflow-api.stg.stackspot.com",
|
|
126
|
-
"prd": "https://workflow-api.stackspot.com"
|
|
127
|
-
},
|
|
128
|
-
"docs": "/openapi.json"
|
|
129
|
-
},
|
|
130
|
-
"workspaceManager": {
|
|
131
|
-
"url": {
|
|
132
|
-
"dev": "https://workspace-workspace-manager.dev.stackspot.com",
|
|
133
|
-
"stg": "https://workspace-workspace-manager.stg.stackspot.com",
|
|
134
|
-
"prd": "https://workspace-manager.stackspot.com"
|
|
135
|
-
},
|
|
136
|
-
"docs": "/v3/api-docs"
|
|
137
|
-
},
|
|
138
|
-
"workspaceSearchEngine": {
|
|
139
|
-
"url": {
|
|
140
|
-
"dev": "https://workspace-search-engine-api.dev.stackspot.com",
|
|
141
|
-
"stg": "https://workspace-search-engine-api.stg.stackspot.com",
|
|
142
|
-
"prd": "https://workspace-search-engine-api.stackspot.com"
|
|
143
|
-
},
|
|
144
|
-
"docs": "/v3/api-docs"
|
|
145
|
-
},
|
|
146
|
-
"permissionValidation": {
|
|
147
|
-
"url": {
|
|
148
|
-
"stg": "https://portal-opa-server.stackspot.hom.aws.cloud.ihf/v1/validate",
|
|
149
|
-
"dev": "https://portal-opa-server.stackspot.dev.aws.cloud.ihf/v1/validate",
|
|
150
|
-
"prd": "https://portal-opa-server.stackspot.prod.aws.cloud.ihf/v1/validate"
|
|
151
|
-
}
|
|
152
|
-
},
|
|
153
|
-
"apiManagement": {
|
|
154
|
-
"url": {
|
|
155
|
-
"dev": "https://api-management-apigw.dev.stackspot.com/catalog-assets",
|
|
156
|
-
"stg": "https://api-management-apigw.stg.stackspot.com/catalog-assets",
|
|
157
|
-
"prd": "https://api-management-apigw.stackspot.com/catalog-assets"
|
|
158
|
-
},
|
|
159
|
-
"docs": "/v3/api-docs"
|
|
160
|
-
},
|
|
161
|
-
"secrets": {
|
|
162
|
-
"url": {
|
|
163
|
-
"dev": "https://workspace-workspace-secrets-api.dev.stackspot.com",
|
|
164
|
-
"stg": "https://workspace-workspace-secrets-api.stg.stackspot.com",
|
|
165
|
-
"prd": "https://secrets-api.stackspot.com"
|
|
166
|
-
},
|
|
167
|
-
"docs": "/v3/api-docs"
|
|
168
|
-
},
|
|
169
|
-
"notification": {
|
|
170
|
-
"url": {
|
|
171
|
-
"stg": "https://account-notification-engine.stackspot.hom.aws.cloud.ihf",
|
|
172
|
-
"dev": "https://account-notification-engine.stackspot.dev.aws.cloud.ihf",
|
|
173
|
-
"prd": "https://account-notification-engine.stackspot.prod.aws.cloud.ihf"
|
|
174
|
-
},
|
|
175
|
-
"docs": "/v3/api-docs"
|
|
176
|
-
},
|
|
177
|
-
"cloudPlatform": {
|
|
178
|
-
"url": {
|
|
179
|
-
"dev": "https://cloud-cloud-platform-api.dev.stackspot.com",
|
|
180
|
-
"stg": "https://cloud-cloud-platform-api.stg.stackspot.com",
|
|
181
|
-
"prd": "https://cloud-cloud-platform-api.prd.stackspot.com"
|
|
182
|
-
},
|
|
183
|
-
"docs": "/v3/api-docs"
|
|
184
|
-
},
|
|
185
|
-
"cloudRuntimes": {
|
|
186
|
-
"url": {
|
|
187
|
-
"dev": "https://cloud-cloud-runtime-api.dev.stackspot.com",
|
|
188
|
-
"stg": "https://cloud-cloud-runtime-api.stg.stackspot.com",
|
|
189
|
-
"prd": "https://cloud-cloud-runtime-api.prd.stackspot.com"
|
|
190
|
-
},
|
|
191
|
-
"docs": "/v3/api-docs"
|
|
192
|
-
},
|
|
193
|
-
"cloudPlatformHorizon": {
|
|
194
|
-
"url": {
|
|
195
|
-
"dev": "https://cloud-platform-horizon.dev.stackspot.com",
|
|
196
|
-
"stg": "https://cloud-platform-horizon.stg.stackspot.com",
|
|
197
|
-
"prd": "https://cloud-platform-horizon.stackspot.com"
|
|
198
|
-
},
|
|
199
|
-
"docs": "/v3/api-docs"
|
|
200
|
-
},
|
|
201
|
-
"codeShift": {
|
|
202
|
-
"url": {
|
|
203
|
-
"dev": "https://code-shift-code-shift-api.dev.stackspot.com",
|
|
204
|
-
"stg": "https://code-shift-code-shift-api.stg.stackspot.com",
|
|
205
|
-
"prd": "https://code-shift-api.stackspot.com"
|
|
206
|
-
},
|
|
207
|
-
"docs": "/openapi.json"
|
|
208
|
-
},
|
|
209
|
-
"genAiInference": {
|
|
210
|
-
"url": {
|
|
211
|
-
"stg": "https://genai-inference-app.stackspot.hom.aws.cloud.ihf",
|
|
212
|
-
"dev": "https://genai-inference-app.stackspot.dev.aws.cloud.ihf",
|
|
213
|
-
"prd": "https://genai-inference-app.stackspot.prod.aws.cloud.ihf"
|
|
214
|
-
},
|
|
215
|
-
"docs": "/openapi.json"
|
|
216
|
-
},
|
|
217
|
-
"discover": {
|
|
218
|
-
"url": {
|
|
219
|
-
"dev": "https://discover-discover-core.dev.stackspot.com",
|
|
220
|
-
"stg": "https://discover-discover-core.stg.stackspot.com",
|
|
221
|
-
"prd": "https://discover-core.stackspot.com"
|
|
222
|
-
},
|
|
223
|
-
"docs": "/v3/api-docs"
|
|
224
|
-
}
|
|
225
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"ai": {
|
|
3
|
+
"url": {
|
|
4
|
+
"stg": "https://genai-code-buddy-api.stackspot.hom.aws.cloud.ihf",
|
|
5
|
+
"dev": "https://genai-code-buddy-api.stackspot.dev.aws.cloud.ihf",
|
|
6
|
+
"prd": "https://genai-code-buddy-api.stackspot.prod.aws.cloud.ihf"
|
|
7
|
+
},
|
|
8
|
+
"docs": "/openapi.json"
|
|
9
|
+
},
|
|
10
|
+
"workspace-ai": {
|
|
11
|
+
"url": {
|
|
12
|
+
"stg": "https://genai-workspace-ai-api.stackspot.hom.aws.cloud.ihf",
|
|
13
|
+
"dev": "https://genai-workspace-ai-api.stackspot.dev.aws.cloud.ihf",
|
|
14
|
+
"prd": "https://genai-workspace-ai-api.stackspot.prod.aws.cloud.ihf"
|
|
15
|
+
},
|
|
16
|
+
"docs": "/openapi.json"
|
|
17
|
+
},
|
|
18
|
+
"agent": {
|
|
19
|
+
"url": {
|
|
20
|
+
"dev": "https://genai-ai-agent-mgmt-api.dev.stackspot.com",
|
|
21
|
+
"stg": "https://genai-ai-agent-mgmt-api.stg.stackspot.com",
|
|
22
|
+
"prd": "https://genai-ai-agent-mgmt-api.stackspot.com"
|
|
23
|
+
},
|
|
24
|
+
"docs": "/q/openapi"
|
|
25
|
+
},
|
|
26
|
+
"agent-tools": {
|
|
27
|
+
"url": {
|
|
28
|
+
"stg": "https://genai-agent-tools-api.stackspot.hom.aws.cloud.ihf",
|
|
29
|
+
"dev": "https://genai-agent-tools-api.stackspot.dev.aws.cloud.ihf",
|
|
30
|
+
"prd": "https://genai-agent-tools-api.stackspot.prod.aws.cloud.ihf"
|
|
31
|
+
},
|
|
32
|
+
"docs": "/openapi.json"
|
|
33
|
+
},
|
|
34
|
+
"dataIntegration": {
|
|
35
|
+
"url": {
|
|
36
|
+
"stg": "https://genai-data-integration.stackspot.hom.aws.cloud.ihf",
|
|
37
|
+
"dev": "https://genai-data-integration.stackspot.dev.aws.cloud.ihf",
|
|
38
|
+
"prd": "https://genai-data-integration.stackspot.prod.aws.cloud.ihf"
|
|
39
|
+
},
|
|
40
|
+
"docs": "/openapi.json"
|
|
41
|
+
},
|
|
42
|
+
"workspace": {
|
|
43
|
+
"url": {
|
|
44
|
+
"dev": "https://workspace-workspace-api.dev.stackspot.com",
|
|
45
|
+
"stg": "https://workspace-workspace-api.stg.stackspot.com",
|
|
46
|
+
"prd": "https://workspace.stackspot.com"
|
|
47
|
+
},
|
|
48
|
+
"docs": "/v3/api-docs"
|
|
49
|
+
},
|
|
50
|
+
"account": {
|
|
51
|
+
"url": {
|
|
52
|
+
"stg": "https://account-account-api.stackspot.hom.aws.cloud.ihf",
|
|
53
|
+
"dev": "https://account-account-api.stackspot.dev.aws.cloud.ihf",
|
|
54
|
+
"prd": "https://account-account-api.stackspot.prod.aws.cloud.ihf"
|
|
55
|
+
},
|
|
56
|
+
"docs": "/v3/api-docs"
|
|
57
|
+
},
|
|
58
|
+
"content": {
|
|
59
|
+
"url": {
|
|
60
|
+
"dev": "https://content-content-api.dev.stackspot.com",
|
|
61
|
+
"stg": "https://content-content-api.stg.stackspot.com",
|
|
62
|
+
"prd": "https://content-api.stackspot.com"
|
|
63
|
+
},
|
|
64
|
+
"docs": "/v3/api-docs"
|
|
65
|
+
},
|
|
66
|
+
"eventBus": {
|
|
67
|
+
"url": {
|
|
68
|
+
"stg": "https://idp-event-bus-api.stackspot.hom.aws.cloud.ihf",
|
|
69
|
+
"dev": "https://idp-event-bus-api.stackspot.dev.aws.cloud.ihf",
|
|
70
|
+
"prd": "https://idp-event-bus-api.stackspot.prod.aws.cloud.ihf"
|
|
71
|
+
},
|
|
72
|
+
"docs": "/v3/api-docs"
|
|
73
|
+
},
|
|
74
|
+
"serviceCatalog": {
|
|
75
|
+
"url": {
|
|
76
|
+
"dev": "https://catalog-tech-products-catalog-api.dev.stackspot.com",
|
|
77
|
+
"stg": "https://catalog-tech-products-catalog-api.stg.stackspot.com",
|
|
78
|
+
"prd": "https://catalog-api.stackspot.com"
|
|
79
|
+
},
|
|
80
|
+
"docs": "/v3/api-docs"
|
|
81
|
+
},
|
|
82
|
+
"apiRuntime": {
|
|
83
|
+
"url": {
|
|
84
|
+
"dev": "https://runtime-manager.dev.stackspot.com",
|
|
85
|
+
"stg": "https://runtime-manager.stg.stackspot.com",
|
|
86
|
+
"prd": "https://runtime-manager.stackspot.com"
|
|
87
|
+
},
|
|
88
|
+
"docs": "/v3/api-docs"
|
|
89
|
+
},
|
|
90
|
+
"cloudServices": {
|
|
91
|
+
"url": {
|
|
92
|
+
"dev": "https://cloud-services-cloud-services-api.dev.stackspot.com",
|
|
93
|
+
"stg": "https://cloud-services-cloud-services-api.stg.stackspot.com",
|
|
94
|
+
"prd": "https://cloud-services-api.stackspot.com"
|
|
95
|
+
},
|
|
96
|
+
"docs": "/v3/api-docs"
|
|
97
|
+
},
|
|
98
|
+
"cloudAccount": {
|
|
99
|
+
"url": {
|
|
100
|
+
"dev": "https://account-account-external-connections-api.dev.stackspot.com",
|
|
101
|
+
"stg": "https://account-account-external-connections-api.stg.stackspot.com",
|
|
102
|
+
"prd": "https://account-external-connections-api.stackspot.com"
|
|
103
|
+
},
|
|
104
|
+
"docs": "/v3/api-docs"
|
|
105
|
+
},
|
|
106
|
+
"dataPlatform": {
|
|
107
|
+
"url": {
|
|
108
|
+
"dev": "https://data-platform-metabase.dev.stackspot.com",
|
|
109
|
+
"stg": "https://data-platform-metabase.stg.stackspot.com",
|
|
110
|
+
"prd": "https://data-platform-stackspot-public.stackspot.com"
|
|
111
|
+
},
|
|
112
|
+
"docs": "/v3/api-docs"
|
|
113
|
+
},
|
|
114
|
+
"insights": {
|
|
115
|
+
"url": {
|
|
116
|
+
"dev": "https://insights-insights-api.dev.stackspot.com",
|
|
117
|
+
"stg": "https://insights-insights-api.stg.stackspot.com",
|
|
118
|
+
"prd": "https://insights-api.stackspot.com"
|
|
119
|
+
},
|
|
120
|
+
"docs": "/v3/api-docs"
|
|
121
|
+
},
|
|
122
|
+
"workflows": {
|
|
123
|
+
"url": {
|
|
124
|
+
"dev": "https://workflow-workflow-api.dev.stackspot.com",
|
|
125
|
+
"stg": "https://workflow-workflow-api.stg.stackspot.com",
|
|
126
|
+
"prd": "https://workflow-api.stackspot.com"
|
|
127
|
+
},
|
|
128
|
+
"docs": "/openapi.json"
|
|
129
|
+
},
|
|
130
|
+
"workspaceManager": {
|
|
131
|
+
"url": {
|
|
132
|
+
"dev": "https://workspace-workspace-manager.dev.stackspot.com",
|
|
133
|
+
"stg": "https://workspace-workspace-manager.stg.stackspot.com",
|
|
134
|
+
"prd": "https://workspace-manager.stackspot.com"
|
|
135
|
+
},
|
|
136
|
+
"docs": "/v3/api-docs"
|
|
137
|
+
},
|
|
138
|
+
"workspaceSearchEngine": {
|
|
139
|
+
"url": {
|
|
140
|
+
"dev": "https://workspace-search-engine-api.dev.stackspot.com",
|
|
141
|
+
"stg": "https://workspace-search-engine-api.stg.stackspot.com",
|
|
142
|
+
"prd": "https://workspace-search-engine-api.stackspot.com"
|
|
143
|
+
},
|
|
144
|
+
"docs": "/v3/api-docs"
|
|
145
|
+
},
|
|
146
|
+
"permissionValidation": {
|
|
147
|
+
"url": {
|
|
148
|
+
"stg": "https://portal-opa-server.stackspot.hom.aws.cloud.ihf/v1/validate",
|
|
149
|
+
"dev": "https://portal-opa-server.stackspot.dev.aws.cloud.ihf/v1/validate",
|
|
150
|
+
"prd": "https://portal-opa-server.stackspot.prod.aws.cloud.ihf/v1/validate"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"apiManagement": {
|
|
154
|
+
"url": {
|
|
155
|
+
"dev": "https://api-management-apigw.dev.stackspot.com/catalog-assets",
|
|
156
|
+
"stg": "https://api-management-apigw.stg.stackspot.com/catalog-assets",
|
|
157
|
+
"prd": "https://api-management-apigw.stackspot.com/catalog-assets"
|
|
158
|
+
},
|
|
159
|
+
"docs": "/v3/api-docs"
|
|
160
|
+
},
|
|
161
|
+
"secrets": {
|
|
162
|
+
"url": {
|
|
163
|
+
"dev": "https://workspace-workspace-secrets-api.dev.stackspot.com",
|
|
164
|
+
"stg": "https://workspace-workspace-secrets-api.stg.stackspot.com",
|
|
165
|
+
"prd": "https://secrets-api.stackspot.com"
|
|
166
|
+
},
|
|
167
|
+
"docs": "/v3/api-docs"
|
|
168
|
+
},
|
|
169
|
+
"notification": {
|
|
170
|
+
"url": {
|
|
171
|
+
"stg": "https://account-notification-engine.stackspot.hom.aws.cloud.ihf",
|
|
172
|
+
"dev": "https://account-notification-engine.stackspot.dev.aws.cloud.ihf",
|
|
173
|
+
"prd": "https://account-notification-engine.stackspot.prod.aws.cloud.ihf"
|
|
174
|
+
},
|
|
175
|
+
"docs": "/v3/api-docs"
|
|
176
|
+
},
|
|
177
|
+
"cloudPlatform": {
|
|
178
|
+
"url": {
|
|
179
|
+
"dev": "https://cloud-cloud-platform-api.dev.stackspot.com",
|
|
180
|
+
"stg": "https://cloud-cloud-platform-api.stg.stackspot.com",
|
|
181
|
+
"prd": "https://cloud-cloud-platform-api.prd.stackspot.com"
|
|
182
|
+
},
|
|
183
|
+
"docs": "/v3/api-docs"
|
|
184
|
+
},
|
|
185
|
+
"cloudRuntimes": {
|
|
186
|
+
"url": {
|
|
187
|
+
"dev": "https://cloud-cloud-runtime-api.dev.stackspot.com",
|
|
188
|
+
"stg": "https://cloud-cloud-runtime-api.stg.stackspot.com",
|
|
189
|
+
"prd": "https://cloud-cloud-runtime-api.prd.stackspot.com"
|
|
190
|
+
},
|
|
191
|
+
"docs": "/v3/api-docs"
|
|
192
|
+
},
|
|
193
|
+
"cloudPlatformHorizon": {
|
|
194
|
+
"url": {
|
|
195
|
+
"dev": "https://cloud-platform-horizon.dev.stackspot.com",
|
|
196
|
+
"stg": "https://cloud-platform-horizon.stg.stackspot.com",
|
|
197
|
+
"prd": "https://cloud-platform-horizon.stackspot.com"
|
|
198
|
+
},
|
|
199
|
+
"docs": "/v3/api-docs"
|
|
200
|
+
},
|
|
201
|
+
"codeShift": {
|
|
202
|
+
"url": {
|
|
203
|
+
"dev": "https://code-shift-code-shift-api.dev.stackspot.com",
|
|
204
|
+
"stg": "https://code-shift-code-shift-api.stg.stackspot.com",
|
|
205
|
+
"prd": "https://code-shift-api.stackspot.com"
|
|
206
|
+
},
|
|
207
|
+
"docs": "/openapi.json"
|
|
208
|
+
},
|
|
209
|
+
"genAiInference": {
|
|
210
|
+
"url": {
|
|
211
|
+
"stg": "https://genai-inference-app.stackspot.hom.aws.cloud.ihf",
|
|
212
|
+
"dev": "https://genai-inference-app.stackspot.dev.aws.cloud.ihf",
|
|
213
|
+
"prd": "https://genai-inference-app.stackspot.prod.aws.cloud.ihf"
|
|
214
|
+
},
|
|
215
|
+
"docs": "/openapi.json"
|
|
216
|
+
},
|
|
217
|
+
"discover": {
|
|
218
|
+
"url": {
|
|
219
|
+
"dev": "https://discover-discover-core.dev.stackspot.com",
|
|
220
|
+
"stg": "https://discover-discover-core.stg.stackspot.com",
|
|
221
|
+
"prd": "https://discover-core.stackspot.com"
|
|
222
|
+
},
|
|
223
|
+
"docs": "/v3/api-docs"
|
|
224
|
+
}
|
|
225
|
+
}
|