egain-api-python 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl
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.
- egain_api_python/_version.py +3 -3
- egain_api_python/answers.py +18 -18
- egain_api_python/articlelists.py +6 -6
- egain_api_python/errors/gethealthop.py +33 -19
- egain_api_python/export.py +2 -2
- egain_api_python/models/__init__.py +65 -42
- egain_api_python/models/aisearchop.py +6 -34
- egain_api_python/models/aisearchresponse.py +0 -4
- egain_api_python/models/articleaisearchresult.py +14 -21
- egain_api_python/models/articletype.py +3 -5
- egain_api_python/models/exportstatus.py +15 -8
- egain_api_python/models/getannouncementarticlesop.py +2 -2
- egain_api_python/models/getarticlelistdetailsop.py +2 -2
- egain_api_python/models/getarticlesintopicop.py +4 -4
- egain_api_python/models/getbestanswerop.py +6 -6
- egain_api_python/models/gethealthop.py +134 -7
- egain_api_python/models/getpopulararticlesop.py +4 -4
- egain_api_python/models/getrelatedarticlesop.py +2 -2
- egain_api_python/models/importstatus.py +116 -0
- egain_api_python/models/knowledgeexport.py +3 -5
- egain_api_python/models/referenceresponse.py +7 -23
- egain_api_python/models/retrievechunksop.py +6 -6
- egain_api_python/models/searchresult.py +7 -23
- egain_api_python/populararticles.py +12 -12
- egain_api_python/portal_article.py +24 -24
- egain_api_python/retrieve.py +18 -18
- egain_api_python/sdk.py +1 -0
- egain_api_python/search.py +18 -36
- {egain_api_python-0.1.2.dist-info → egain_api_python-0.1.3.dist-info}/METADATA +14 -9
- {egain_api_python-0.1.2.dist-info → egain_api_python-0.1.3.dist-info}/RECORD +33 -35
- egain_api_python/models/resourcetype_parameter.py +0 -10
- egain_api_python/models/topicaisearchresult.py +0 -67
- {egain_api_python-0.1.2.dist-info → egain_api_python-0.1.3.dist-info}/WHEEL +0 -0
- {egain_api_python-0.1.2.dist-info → egain_api_python-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {egain_api_python-0.1.2.dist-info → egain_api_python-0.1.3.dist-info}/top_level.txt +0 -0
egain_api_python/_version.py
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
import importlib.metadata
|
4
4
|
|
5
5
|
__title__: str = "egain-api-python"
|
6
|
-
__version__: str = "0.1.
|
6
|
+
__version__: str = "0.1.3"
|
7
7
|
__openapi_doc_version__: str = "4.0.0"
|
8
|
-
__gen_version__: str = "2.
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.1.
|
8
|
+
__gen_version__: str = "2.722.2"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.1.3 2.722.2 4.0.0 egain-api-python"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
egain_api_python/answers.py
CHANGED
@@ -15,10 +15,10 @@ class Answers(BaseSDK):
|
|
15
15
|
*,
|
16
16
|
q: str,
|
17
17
|
portal_id: str,
|
18
|
-
|
18
|
+
filter_user_profile_id: Optional[str] = None,
|
19
19
|
language: Optional[models.LanguageCodeParameter] = None,
|
20
|
-
|
21
|
-
|
20
|
+
filter_tags: Optional[Dict[str, List[str]]] = None,
|
21
|
+
filter_topic_ids: Optional[List[str]] = None,
|
22
22
|
channel: Optional[
|
23
23
|
Union[models.AnswersRequestChannel, models.AnswersRequestChannelTypedDict]
|
24
24
|
] = None,
|
@@ -41,10 +41,10 @@ class Answers(BaseSDK):
|
|
41
41
|
|
42
42
|
:param q: The search query string. The string must be escaped as required by the URL syntax rules.
|
43
43
|
:param portal_id: The ID of the portal being accessed.<br><br>A portal ID is composed of a 2-4 letter prefix, followed by a dash and 4-15 digits.
|
44
|
-
:param
|
44
|
+
:param filter_user_profile_id:
|
45
45
|
:param language: The language that describes the details of a resource. Resources available in different languages may differ from each other. <br><br> If lang is not passed, then the portal's default language is used.
|
46
|
-
:param
|
47
|
-
:param
|
46
|
+
:param filter_tags: An object where each key is a **Category Tag ID** (numeric string), and each value is an array of **Tag IDs** for that category.
|
47
|
+
:param filter_topic_ids: An array of topic IDs. It is used to restrict search results to specific topics.
|
48
48
|
:param channel:
|
49
49
|
:param context: Additional contextual metadata that enriches the query, providing the LLM with relevant details for tailoring the response.
|
50
50
|
:param event_id: Unique ID for this specific API call or event.
|
@@ -70,10 +70,10 @@ class Answers(BaseSDK):
|
|
70
70
|
request = models.GetBestAnswerRequest(
|
71
71
|
q=q,
|
72
72
|
portal_id=portal_id,
|
73
|
-
|
73
|
+
filter_user_profile_id=filter_user_profile_id,
|
74
74
|
language=language,
|
75
|
-
|
76
|
-
|
75
|
+
filter_tags=filter_tags,
|
76
|
+
filter_topic_ids=filter_topic_ids,
|
77
77
|
answers_request=models.AnswersRequest(
|
78
78
|
channel=utils.get_pydantic_model(
|
79
79
|
channel, Optional[models.AnswersRequestChannel]
|
@@ -150,10 +150,10 @@ class Answers(BaseSDK):
|
|
150
150
|
*,
|
151
151
|
q: str,
|
152
152
|
portal_id: str,
|
153
|
-
|
153
|
+
filter_user_profile_id: Optional[str] = None,
|
154
154
|
language: Optional[models.LanguageCodeParameter] = None,
|
155
|
-
|
156
|
-
|
155
|
+
filter_tags: Optional[Dict[str, List[str]]] = None,
|
156
|
+
filter_topic_ids: Optional[List[str]] = None,
|
157
157
|
channel: Optional[
|
158
158
|
Union[models.AnswersRequestChannel, models.AnswersRequestChannelTypedDict]
|
159
159
|
] = None,
|
@@ -176,10 +176,10 @@ class Answers(BaseSDK):
|
|
176
176
|
|
177
177
|
:param q: The search query string. The string must be escaped as required by the URL syntax rules.
|
178
178
|
:param portal_id: The ID of the portal being accessed.<br><br>A portal ID is composed of a 2-4 letter prefix, followed by a dash and 4-15 digits.
|
179
|
-
:param
|
179
|
+
:param filter_user_profile_id:
|
180
180
|
:param language: The language that describes the details of a resource. Resources available in different languages may differ from each other. <br><br> If lang is not passed, then the portal's default language is used.
|
181
|
-
:param
|
182
|
-
:param
|
181
|
+
:param filter_tags: An object where each key is a **Category Tag ID** (numeric string), and each value is an array of **Tag IDs** for that category.
|
182
|
+
:param filter_topic_ids: An array of topic IDs. It is used to restrict search results to specific topics.
|
183
183
|
:param channel:
|
184
184
|
:param context: Additional contextual metadata that enriches the query, providing the LLM with relevant details for tailoring the response.
|
185
185
|
:param event_id: Unique ID for this specific API call or event.
|
@@ -205,10 +205,10 @@ class Answers(BaseSDK):
|
|
205
205
|
request = models.GetBestAnswerRequest(
|
206
206
|
q=q,
|
207
207
|
portal_id=portal_id,
|
208
|
-
|
208
|
+
filter_user_profile_id=filter_user_profile_id,
|
209
209
|
language=language,
|
210
|
-
|
211
|
-
|
210
|
+
filter_tags=filter_tags,
|
211
|
+
filter_topic_ids=filter_topic_ids,
|
212
212
|
answers_request=models.AnswersRequest(
|
213
213
|
channel=utils.get_pydantic_model(
|
214
214
|
channel, Optional[models.AnswersRequestChannel]
|
egain_api_python/articlelists.py
CHANGED
@@ -228,7 +228,7 @@ class Articlelists(BaseSDK):
|
|
228
228
|
accept_language: models.AcceptLanguage,
|
229
229
|
portal_id: str,
|
230
230
|
list_id: str,
|
231
|
-
|
231
|
+
filter_topic_id: Optional[str] = None,
|
232
232
|
article_result_additional_attributes: Optional[
|
233
233
|
List[models.ArticleResultAdditionalAttributes]
|
234
234
|
] = None,
|
@@ -253,7 +253,7 @@ class Articlelists(BaseSDK):
|
|
253
253
|
:param accept_language: The Language locale accepted by the client (used for locale specific fields in resource representation and in error responses).
|
254
254
|
:param portal_id: The ID of the portal being accessed.<br><br>A portal ID is composed of a 2-4 letter prefix, followed by a dash and 4-15 digits.
|
255
255
|
:param list_id: The ID of the list to be returned.
|
256
|
-
:param
|
256
|
+
:param filter_topic_id: The ID of the topic. It is used to restrict to a specific topic.
|
257
257
|
:param article_result_additional_attributes: The attributes of an Article to be returned *in addition to* the default list of attributes, listed below. Multiple additional attributes can be specified using a comma-separated list. Passing 'all' will return all attributes. #### Default Attributes These Article attributes are always returned: | Name | Description | ---- | ----------- | id | The ID of the Article. | name | The name of the Article. | articleType | The Article Type and its attributes. | createdBy | The ID, first name, middle name and last name of the user that created the Article. | createdDate | The date that the Article was created. | hasAttachments | True: The Article has one or more attachments.<br>False: The Article does not have any attachments. | languageCode | The language code of the Article language. | modifiedBy | The ID, first name, middle name and last name of the user that last modified the Article. | modifiedDate | The date that the Article was last modified on. | link | The link object, used to retrieve the details of the Article. | versionId | The ID of the Article version that is returned.
|
258
258
|
:param language: The language that describes the details of a resource. Resources available in different languages may differ from each other.<li>If <code>lang</code> is not passed, then the portal's default language is used.</li>
|
259
259
|
:param retries: Override the default retry configuration for this method
|
@@ -275,7 +275,7 @@ class Articlelists(BaseSDK):
|
|
275
275
|
accept_language=accept_language,
|
276
276
|
portal_id=portal_id,
|
277
277
|
list_id=list_id,
|
278
|
-
|
278
|
+
filter_topic_id=filter_topic_id,
|
279
279
|
article_result_additional_attributes=article_result_additional_attributes,
|
280
280
|
language=language,
|
281
281
|
)
|
@@ -351,7 +351,7 @@ class Articlelists(BaseSDK):
|
|
351
351
|
accept_language: models.AcceptLanguage,
|
352
352
|
portal_id: str,
|
353
353
|
list_id: str,
|
354
|
-
|
354
|
+
filter_topic_id: Optional[str] = None,
|
355
355
|
article_result_additional_attributes: Optional[
|
356
356
|
List[models.ArticleResultAdditionalAttributes]
|
357
357
|
] = None,
|
@@ -376,7 +376,7 @@ class Articlelists(BaseSDK):
|
|
376
376
|
:param accept_language: The Language locale accepted by the client (used for locale specific fields in resource representation and in error responses).
|
377
377
|
:param portal_id: The ID of the portal being accessed.<br><br>A portal ID is composed of a 2-4 letter prefix, followed by a dash and 4-15 digits.
|
378
378
|
:param list_id: The ID of the list to be returned.
|
379
|
-
:param
|
379
|
+
:param filter_topic_id: The ID of the topic. It is used to restrict to a specific topic.
|
380
380
|
:param article_result_additional_attributes: The attributes of an Article to be returned *in addition to* the default list of attributes, listed below. Multiple additional attributes can be specified using a comma-separated list. Passing 'all' will return all attributes. #### Default Attributes These Article attributes are always returned: | Name | Description | ---- | ----------- | id | The ID of the Article. | name | The name of the Article. | articleType | The Article Type and its attributes. | createdBy | The ID, first name, middle name and last name of the user that created the Article. | createdDate | The date that the Article was created. | hasAttachments | True: The Article has one or more attachments.<br>False: The Article does not have any attachments. | languageCode | The language code of the Article language. | modifiedBy | The ID, first name, middle name and last name of the user that last modified the Article. | modifiedDate | The date that the Article was last modified on. | link | The link object, used to retrieve the details of the Article. | versionId | The ID of the Article version that is returned.
|
381
381
|
:param language: The language that describes the details of a resource. Resources available in different languages may differ from each other.<li>If <code>lang</code> is not passed, then the portal's default language is used.</li>
|
382
382
|
:param retries: Override the default retry configuration for this method
|
@@ -398,7 +398,7 @@ class Articlelists(BaseSDK):
|
|
398
398
|
accept_language=accept_language,
|
399
399
|
portal_id=portal_id,
|
400
400
|
list_id=list_id,
|
401
|
-
|
401
|
+
filter_topic_id=filter_topic_id,
|
402
402
|
article_result_additional_attributes=article_result_additional_attributes,
|
403
403
|
language=language,
|
404
404
|
)
|
@@ -2,44 +2,58 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from dataclasses import dataclass, field
|
5
|
-
from datetime import datetime
|
6
5
|
from egain_api_python.errors import EgainError
|
6
|
+
from egain_api_python.models import gethealthop as models_gethealthop
|
7
7
|
from egain_api_python.types import BaseModel
|
8
8
|
import httpx
|
9
|
-
from typing import Optional
|
9
|
+
from typing import Any, List, Optional
|
10
10
|
|
11
11
|
|
12
12
|
class ServiceUnavailableErrorData(BaseModel):
|
13
|
-
status: Optional[
|
13
|
+
status: Optional[models_gethealthop.ServiceUnavailableStatus] = None
|
14
14
|
r"""**Health Status**
|
15
15
|
|
16
|
-
The overall health status of the service.
|
17
|
-
- Service
|
18
|
-
-
|
19
|
-
-
|
20
|
-
-
|
16
|
+
The overall health status of the service. Possible values:
|
17
|
+
- **healthy**: Service is operating normally
|
18
|
+
- **degraded**: Service is functional but with performance issues
|
19
|
+
- **unhealthy**: Service is experiencing critical issues
|
20
|
+
- **maintenance**: Service is under planned maintenance
|
21
21
|
|
22
22
|
"""
|
23
23
|
|
24
|
-
timestamp: Optional[
|
24
|
+
timestamp: Optional[Any] = None
|
25
25
|
r"""**Health Check Timestamp**
|
26
26
|
|
27
|
-
The exact date and time when this health check was performed. This
|
28
|
-
-
|
29
|
-
-
|
30
|
-
-
|
31
|
-
- Historical
|
27
|
+
The exact date and time when this health check was performed. This is useful for:
|
28
|
+
- Tracking health check frequency
|
29
|
+
- Correlating with other system events
|
30
|
+
- Monitoring health check response times
|
31
|
+
- Historical health trend analysis
|
32
32
|
|
33
33
|
"""
|
34
34
|
|
35
35
|
version: Optional[str] = None
|
36
36
|
r"""**API Version**
|
37
37
|
|
38
|
-
The current version of the Import Content API. This
|
39
|
-
-
|
40
|
-
-
|
41
|
-
-
|
42
|
-
-
|
38
|
+
The current version of the Import Content API. This helps with:
|
39
|
+
- Version compatibility checking
|
40
|
+
- Feature availability verification
|
41
|
+
- Upgrade planning and coordination
|
42
|
+
- Support and troubleshooting
|
43
|
+
|
44
|
+
"""
|
45
|
+
|
46
|
+
issues: Optional[List[str]] = None
|
47
|
+
r"""**Issues**:
|
48
|
+
|
49
|
+
List of detected health problems
|
50
|
+
|
51
|
+
"""
|
52
|
+
|
53
|
+
components: Optional[models_gethealthop.Components] = None
|
54
|
+
r"""**Comonents**:
|
55
|
+
|
56
|
+
Health status of import service componenets
|
43
57
|
|
44
58
|
"""
|
45
59
|
|
egain_api_python/export.py
CHANGED
@@ -17,7 +17,7 @@ class Export(BaseSDK):
|
|
17
17
|
language: Union[
|
18
18
|
models.KnowledgeExportLanguage, models.KnowledgeExportLanguageTypedDict
|
19
19
|
],
|
20
|
-
resource_types: List[models.
|
20
|
+
resource_types: List[models.ResourceType],
|
21
21
|
data_destination: Union[
|
22
22
|
models.DataDestination, models.DataDestinationTypedDict
|
23
23
|
],
|
@@ -142,7 +142,7 @@ class Export(BaseSDK):
|
|
142
142
|
language: Union[
|
143
143
|
models.KnowledgeExportLanguage, models.KnowledgeExportLanguageTypedDict
|
144
144
|
],
|
145
|
-
resource_types: List[models.
|
145
|
+
resource_types: List[models.ResourceType],
|
146
146
|
data_destination: Union[
|
147
147
|
models.DataDestination, models.DataDestinationTypedDict
|
148
148
|
],
|
@@ -82,7 +82,6 @@ if TYPE_CHECKING:
|
|
82
82
|
ArticleAISearchResultLinkTypedDict,
|
83
83
|
ArticleAISearchResultSource,
|
84
84
|
ArticleAISearchResultType,
|
85
|
-
ArticleAISearchResultTypeName,
|
86
85
|
ArticleAISearchResultTypedDict,
|
87
86
|
ArticleTypeAttributes,
|
88
87
|
ArticleTypeAttributesTypedDict,
|
@@ -122,7 +121,7 @@ if TYPE_CHECKING:
|
|
122
121
|
)
|
123
122
|
from .articlesort import ArticleSort
|
124
123
|
from .articlesortorder import ArticleSortOrder
|
125
|
-
from .articletype import ArticleType,
|
124
|
+
from .articletype import ArticleType, ArticleTypeTypedDict, TypeName
|
126
125
|
from .articlewitheditions import ArticleWithEditions, ArticleWithEditionsTypedDict
|
127
126
|
from .attachment import Attachment, AttachmentTypedDict
|
128
127
|
from .attachmentadditionalattributes import AttachmentAdditionalAttributes
|
@@ -302,12 +301,12 @@ if TYPE_CHECKING:
|
|
302
301
|
from .exportcontentop import ExportContentResponse, ExportContentResponseTypedDict
|
303
302
|
from .exportstatus import (
|
304
303
|
ExportStatus,
|
304
|
+
ExportStatusProgress,
|
305
|
+
ExportStatusProgressTypedDict,
|
306
|
+
ExportStatusResults,
|
307
|
+
ExportStatusResultsTypedDict,
|
305
308
|
ExportStatusStatus,
|
306
309
|
ExportStatusTypedDict,
|
307
|
-
Progress,
|
308
|
-
ProgressTypedDict,
|
309
|
-
Results,
|
310
|
-
ResultsTypedDict,
|
311
310
|
)
|
312
311
|
from .exportstatusop import ExportStatusRequest, ExportStatusRequestTypedDict
|
313
312
|
from .feedbackarticleforsuggestion import (
|
@@ -410,9 +409,18 @@ if TYPE_CHECKING:
|
|
410
409
|
GetClusterByCasebaseReleaseIDRequestTypedDict,
|
411
410
|
)
|
412
411
|
from .gethealthop import (
|
412
|
+
Components,
|
413
|
+
ComponentsTypedDict,
|
414
|
+
Database,
|
415
|
+
ExternalServices,
|
416
|
+
FileSystem,
|
413
417
|
GET_HEALTH_OP_SERVERS,
|
414
418
|
GetHealthResponse,
|
415
419
|
GetHealthResponseTypedDict,
|
420
|
+
GetHealthStatus,
|
421
|
+
ProcessingEngine,
|
422
|
+
ServiceUnavailableStatus,
|
423
|
+
Storage,
|
416
424
|
)
|
417
425
|
from .getimportcontentop import (
|
418
426
|
GET_IMPORT_CONTENT_OP_SERVERS,
|
@@ -486,7 +494,16 @@ if TYPE_CHECKING:
|
|
486
494
|
ScheduleTime,
|
487
495
|
ScheduleTimeTypedDict,
|
488
496
|
)
|
489
|
-
from .importstatus import
|
497
|
+
from .importstatus import (
|
498
|
+
ImportStatus,
|
499
|
+
ImportStatusProgress,
|
500
|
+
ImportStatusProgressTypedDict,
|
501
|
+
ImportStatusResults,
|
502
|
+
ImportStatusResultsTypedDict,
|
503
|
+
ImportStatusStatus,
|
504
|
+
ImportStatusTypedDict,
|
505
|
+
JobType,
|
506
|
+
)
|
490
507
|
from .kblanguage import KbLanguage, KbLanguageCode1, KbLanguageTypedDict, Name
|
491
508
|
from .kblanguagecode import KbLanguageCode
|
492
509
|
from .kblanguages import KbLanguages, KbLanguagesTypedDict
|
@@ -501,8 +518,8 @@ if TYPE_CHECKING:
|
|
501
518
|
KnowledgeExportCredentialsTypedDict,
|
502
519
|
KnowledgeExportLanguage,
|
503
520
|
KnowledgeExportLanguageTypedDict,
|
504
|
-
KnowledgeExportResourceType,
|
505
521
|
KnowledgeExportTypedDict,
|
522
|
+
ResourceType,
|
506
523
|
)
|
507
524
|
from .l10nstring import L10NString, L10NStringTypedDict
|
508
525
|
from .languagecode import LanguageCode
|
@@ -571,8 +588,6 @@ if TYPE_CHECKING:
|
|
571
588
|
from .referenceresponse import (
|
572
589
|
ReferenceResponse,
|
573
590
|
ReferenceResponseDocType,
|
574
|
-
ReferenceResponseLink,
|
575
|
-
ReferenceResponseLinkTypedDict,
|
576
591
|
ReferenceResponseSource,
|
577
592
|
ReferenceResponseTypedDict,
|
578
593
|
)
|
@@ -581,7 +596,6 @@ if TYPE_CHECKING:
|
|
581
596
|
RejectGHSolutionRequestTypedDict,
|
582
597
|
)
|
583
598
|
from .relatedquestions import RelatedQuestions, RelatedQuestionsTypedDict
|
584
|
-
from .resourcetype_parameter import ResourceTypeParameter
|
585
599
|
from .restorequickpickop import (
|
586
600
|
RestoreQuickpickRequest,
|
587
601
|
RestoreQuickpickRequestTypedDict,
|
@@ -644,8 +658,6 @@ if TYPE_CHECKING:
|
|
644
658
|
from .searchresult import (
|
645
659
|
SearchResult,
|
646
660
|
SearchResultDocType,
|
647
|
-
SearchResultLink,
|
648
|
-
SearchResultLinkTypedDict,
|
649
661
|
SearchResultSource,
|
650
662
|
SearchResultTypedDict,
|
651
663
|
SnippetType,
|
@@ -733,7 +745,6 @@ if TYPE_CHECKING:
|
|
733
745
|
from .tags import Tags, TagsTypedDict
|
734
746
|
from .topic import Topic, TopicTypedDict
|
735
747
|
from .topicadditionalattributes import TopicAdditionalAttributes
|
736
|
-
from .topicaisearchresult import TopicAISearchResult, TopicAISearchResultTypedDict
|
737
748
|
from .topicbreadcrumb import TopicBreadcrumb, TopicBreadcrumbTypedDict
|
738
749
|
from .topicresult import TopicResult, TopicResultTypedDict
|
739
750
|
from .topicsummary import TopicSummary, TopicSummaryTypedDict
|
@@ -826,7 +837,6 @@ __all__ = [
|
|
826
837
|
"ArticleAISearchResultLinkTypedDict",
|
827
838
|
"ArticleAISearchResultSource",
|
828
839
|
"ArticleAISearchResultType",
|
829
|
-
"ArticleAISearchResultTypeName",
|
830
840
|
"ArticleAISearchResultTypedDict",
|
831
841
|
"ArticleActivityLink",
|
832
842
|
"ArticleActivityLinkCode",
|
@@ -866,7 +876,6 @@ __all__ = [
|
|
866
876
|
"ArticleType",
|
867
877
|
"ArticleTypeAttributes",
|
868
878
|
"ArticleTypeAttributesTypedDict",
|
869
|
-
"ArticleTypeTypeName",
|
870
879
|
"ArticleTypeTypedDict",
|
871
880
|
"ArticleTypedDict",
|
872
881
|
"ArticleWithEditions",
|
@@ -945,12 +954,14 @@ __all__ = [
|
|
945
954
|
"ComplianceForArticleTypedDict",
|
946
955
|
"ComplyArticleRequest",
|
947
956
|
"ComplyArticleRequestTypedDict",
|
957
|
+
"Components",
|
948
958
|
"ComponentsSchemasTag",
|
949
959
|
"ComponentsSchemasTagCategory",
|
950
960
|
"ComponentsSchemasTagCategoryTypedDict",
|
951
961
|
"ComponentsSchemasTagGroup",
|
952
962
|
"ComponentsSchemasTagGroupTypedDict",
|
953
963
|
"ComponentsSchemasTagTypedDict",
|
964
|
+
"ComponentsTypedDict",
|
954
965
|
"ConfigurableAttribute",
|
955
966
|
"ConfigurableAttributeTypedDict",
|
956
967
|
"ConfigurableAttributes",
|
@@ -1003,6 +1014,7 @@ __all__ = [
|
|
1003
1014
|
"CustomerTypedDict",
|
1004
1015
|
"DataDestination",
|
1005
1016
|
"DataDestinationTypedDict",
|
1017
|
+
"Database",
|
1006
1018
|
"DeleteSuggestionRequest",
|
1007
1019
|
"DeleteSuggestionRequestTypedDict",
|
1008
1020
|
"DeletebookmarkRequest",
|
@@ -1033,12 +1045,18 @@ __all__ = [
|
|
1033
1045
|
"ExportContentResponse",
|
1034
1046
|
"ExportContentResponseTypedDict",
|
1035
1047
|
"ExportStatus",
|
1048
|
+
"ExportStatusProgress",
|
1049
|
+
"ExportStatusProgressTypedDict",
|
1036
1050
|
"ExportStatusRequest",
|
1037
1051
|
"ExportStatusRequestTypedDict",
|
1052
|
+
"ExportStatusResults",
|
1053
|
+
"ExportStatusResultsTypedDict",
|
1038
1054
|
"ExportStatusStatus",
|
1039
1055
|
"ExportStatusTypedDict",
|
1056
|
+
"ExternalServices",
|
1040
1057
|
"FeedbackArticleForSuggestion",
|
1041
1058
|
"FeedbackArticleForSuggestionTypedDict",
|
1059
|
+
"FileSystem",
|
1042
1060
|
"FilterStatus",
|
1043
1061
|
"Filters",
|
1044
1062
|
"FiltersTypedDict",
|
@@ -1104,6 +1122,7 @@ __all__ = [
|
|
1104
1122
|
"GetClusterByCasebaseReleaseIDRequestTypedDict",
|
1105
1123
|
"GetHealthResponse",
|
1106
1124
|
"GetHealthResponseTypedDict",
|
1125
|
+
"GetHealthStatus",
|
1107
1126
|
"GetImportContentRequest",
|
1108
1127
|
"GetImportContentRequestTypedDict",
|
1109
1128
|
"GetMyPortalsRequest",
|
@@ -1154,8 +1173,13 @@ __all__ = [
|
|
1154
1173
|
"ImportContentType",
|
1155
1174
|
"ImportContentTypedDict",
|
1156
1175
|
"ImportStatus",
|
1176
|
+
"ImportStatusProgress",
|
1177
|
+
"ImportStatusProgressTypedDict",
|
1178
|
+
"ImportStatusResults",
|
1179
|
+
"ImportStatusResultsTypedDict",
|
1157
1180
|
"ImportStatusStatus",
|
1158
1181
|
"ImportStatusTypedDict",
|
1182
|
+
"JobType",
|
1159
1183
|
"KbLanguage",
|
1160
1184
|
"KbLanguageCode",
|
1161
1185
|
"KbLanguageCode1",
|
@@ -1168,7 +1192,6 @@ __all__ = [
|
|
1168
1192
|
"KnowledgeExportCredentialsTypedDict",
|
1169
1193
|
"KnowledgeExportLanguage",
|
1170
1194
|
"KnowledgeExportLanguageTypedDict",
|
1171
|
-
"KnowledgeExportResourceType",
|
1172
1195
|
"KnowledgeExportTypedDict",
|
1173
1196
|
"L10NString",
|
1174
1197
|
"L10NStringTypedDict",
|
@@ -1224,12 +1247,11 @@ __all__ = [
|
|
1224
1247
|
"PortalSettings",
|
1225
1248
|
"PortalSettingsTypedDict",
|
1226
1249
|
"PortalTypedDict",
|
1250
|
+
"ProcessingEngine",
|
1227
1251
|
"Profile",
|
1228
1252
|
"ProfileResult",
|
1229
1253
|
"ProfileResultTypedDict",
|
1230
1254
|
"ProfileTypedDict",
|
1231
|
-
"Progress",
|
1232
|
-
"ProgressTypedDict",
|
1233
1255
|
"PublishProfile",
|
1234
1256
|
"PublishProfileTypedDict",
|
1235
1257
|
"PublishView",
|
@@ -1255,8 +1277,6 @@ __all__ = [
|
|
1255
1277
|
"RateArticleRequestTypedDict",
|
1256
1278
|
"ReferenceResponse",
|
1257
1279
|
"ReferenceResponseDocType",
|
1258
|
-
"ReferenceResponseLink",
|
1259
|
-
"ReferenceResponseLinkTypedDict",
|
1260
1280
|
"ReferenceResponseSource",
|
1261
1281
|
"ReferenceResponseTypedDict",
|
1262
1282
|
"RejectGHSolutionRequest",
|
@@ -1265,12 +1285,10 @@ __all__ = [
|
|
1265
1285
|
"RelatedArticleForCreateUpdateDeleteSuggestionTypedDict",
|
1266
1286
|
"RelatedQuestions",
|
1267
1287
|
"RelatedQuestionsTypedDict",
|
1268
|
-
"
|
1288
|
+
"ResourceType",
|
1269
1289
|
"RestoreQuickpickRequest",
|
1270
1290
|
"RestoreQuickpickRequestTypedDict",
|
1271
1291
|
"ResultType",
|
1272
|
-
"Results",
|
1273
|
-
"ResultsTypedDict",
|
1274
1292
|
"RetrieveChunksRequest",
|
1275
1293
|
"RetrieveChunksRequestTypedDict",
|
1276
1294
|
"RetrieveRequest",
|
@@ -1316,8 +1334,6 @@ __all__ = [
|
|
1316
1334
|
"SearchPriorToEscalationRequestTypedDict",
|
1317
1335
|
"SearchResult",
|
1318
1336
|
"SearchResultDocType",
|
1319
|
-
"SearchResultLink",
|
1320
|
-
"SearchResultLinkTypedDict",
|
1321
1337
|
"SearchResultSource",
|
1322
1338
|
"SearchResultTypedDict",
|
1323
1339
|
"SearchResults",
|
@@ -1328,6 +1344,7 @@ __all__ = [
|
|
1328
1344
|
"SecurityTypedDict",
|
1329
1345
|
"SelectUserProfileRequest",
|
1330
1346
|
"SelectUserProfileRequestTypedDict",
|
1347
|
+
"ServiceUnavailableStatus",
|
1331
1348
|
"SessionContextVariable",
|
1332
1349
|
"SessionContextVariableTypedDict",
|
1333
1350
|
"ShortURL",
|
@@ -1355,6 +1372,7 @@ __all__ = [
|
|
1355
1372
|
"StartQuestionAndAnswerTypedDict",
|
1356
1373
|
"StepGHSearchRequest",
|
1357
1374
|
"StepGHSearchRequestTypedDict",
|
1375
|
+
"Storage",
|
1358
1376
|
"StringAttributeValue",
|
1359
1377
|
"StringAttributeValueTypedDict",
|
1360
1378
|
"StructuredAuthoringFields",
|
@@ -1387,8 +1405,6 @@ __all__ = [
|
|
1387
1405
|
"TagsTypedDict",
|
1388
1406
|
"ThresholdType",
|
1389
1407
|
"Topic",
|
1390
|
-
"TopicAISearchResult",
|
1391
|
-
"TopicAISearchResultTypedDict",
|
1392
1408
|
"TopicAdditionalAttributes",
|
1393
1409
|
"TopicBreadcrumb",
|
1394
1410
|
"TopicBreadcrumbTypedDict",
|
@@ -1401,6 +1417,7 @@ __all__ = [
|
|
1401
1417
|
"TopicTreeResult",
|
1402
1418
|
"TopicTreeResultTypedDict",
|
1403
1419
|
"TopicTypedDict",
|
1420
|
+
"TypeName",
|
1404
1421
|
"UnsubscribeArticleRequest",
|
1405
1422
|
"UnsubscribeArticleRequestTypedDict",
|
1406
1423
|
"UploadAttachmentRequest",
|
@@ -1502,7 +1519,6 @@ _dynamic_imports: dict[str, str] = {
|
|
1502
1519
|
"ArticleAISearchResultLinkTypedDict": ".articleaisearchresult",
|
1503
1520
|
"ArticleAISearchResultSource": ".articleaisearchresult",
|
1504
1521
|
"ArticleAISearchResultType": ".articleaisearchresult",
|
1505
|
-
"ArticleAISearchResultTypeName": ".articleaisearchresult",
|
1506
1522
|
"ArticleAISearchResultTypedDict": ".articleaisearchresult",
|
1507
1523
|
"ArticleTypeAttributes": ".articleaisearchresult",
|
1508
1524
|
"ArticleTypeAttributesTypedDict": ".articleaisearchresult",
|
@@ -1539,8 +1555,8 @@ _dynamic_imports: dict[str, str] = {
|
|
1539
1555
|
"ArticleSort": ".articlesort",
|
1540
1556
|
"ArticleSortOrder": ".articlesortorder",
|
1541
1557
|
"ArticleType": ".articletype",
|
1542
|
-
"ArticleTypeTypeName": ".articletype",
|
1543
1558
|
"ArticleTypeTypedDict": ".articletype",
|
1559
|
+
"TypeName": ".articletype",
|
1544
1560
|
"ArticleWithEditions": ".articlewitheditions",
|
1545
1561
|
"ArticleWithEditionsTypedDict": ".articlewitheditions",
|
1546
1562
|
"Attachment": ".attachment",
|
@@ -1700,12 +1716,12 @@ _dynamic_imports: dict[str, str] = {
|
|
1700
1716
|
"ExportContentResponse": ".exportcontentop",
|
1701
1717
|
"ExportContentResponseTypedDict": ".exportcontentop",
|
1702
1718
|
"ExportStatus": ".exportstatus",
|
1719
|
+
"ExportStatusProgress": ".exportstatus",
|
1720
|
+
"ExportStatusProgressTypedDict": ".exportstatus",
|
1721
|
+
"ExportStatusResults": ".exportstatus",
|
1722
|
+
"ExportStatusResultsTypedDict": ".exportstatus",
|
1703
1723
|
"ExportStatusStatus": ".exportstatus",
|
1704
1724
|
"ExportStatusTypedDict": ".exportstatus",
|
1705
|
-
"Progress": ".exportstatus",
|
1706
|
-
"ProgressTypedDict": ".exportstatus",
|
1707
|
-
"Results": ".exportstatus",
|
1708
|
-
"ResultsTypedDict": ".exportstatus",
|
1709
1725
|
"ExportStatusRequest": ".exportstatusop",
|
1710
1726
|
"ExportStatusRequestTypedDict": ".exportstatusop",
|
1711
1727
|
"FeedbackArticleForSuggestion": ".feedbackarticleforsuggestion",
|
@@ -1771,9 +1787,18 @@ _dynamic_imports: dict[str, str] = {
|
|
1771
1787
|
"GetchildtopicsRequestTypedDict": ".getchildtopicsop",
|
1772
1788
|
"GetClusterByCasebaseReleaseIDRequest": ".getclusterbycasebasereleaseidop",
|
1773
1789
|
"GetClusterByCasebaseReleaseIDRequestTypedDict": ".getclusterbycasebasereleaseidop",
|
1790
|
+
"Components": ".gethealthop",
|
1791
|
+
"ComponentsTypedDict": ".gethealthop",
|
1792
|
+
"Database": ".gethealthop",
|
1793
|
+
"ExternalServices": ".gethealthop",
|
1794
|
+
"FileSystem": ".gethealthop",
|
1774
1795
|
"GET_HEALTH_OP_SERVERS": ".gethealthop",
|
1775
1796
|
"GetHealthResponse": ".gethealthop",
|
1776
1797
|
"GetHealthResponseTypedDict": ".gethealthop",
|
1798
|
+
"GetHealthStatus": ".gethealthop",
|
1799
|
+
"ProcessingEngine": ".gethealthop",
|
1800
|
+
"ServiceUnavailableStatus": ".gethealthop",
|
1801
|
+
"Storage": ".gethealthop",
|
1777
1802
|
"GET_IMPORT_CONTENT_OP_SERVERS": ".getimportcontentop",
|
1778
1803
|
"GetImportContentRequest": ".getimportcontentop",
|
1779
1804
|
"GetImportContentRequestTypedDict": ".getimportcontentop",
|
@@ -1826,8 +1851,13 @@ _dynamic_imports: dict[str, str] = {
|
|
1826
1851
|
"ScheduleTime": ".importcontent",
|
1827
1852
|
"ScheduleTimeTypedDict": ".importcontent",
|
1828
1853
|
"ImportStatus": ".importstatus",
|
1854
|
+
"ImportStatusProgress": ".importstatus",
|
1855
|
+
"ImportStatusProgressTypedDict": ".importstatus",
|
1856
|
+
"ImportStatusResults": ".importstatus",
|
1857
|
+
"ImportStatusResultsTypedDict": ".importstatus",
|
1829
1858
|
"ImportStatusStatus": ".importstatus",
|
1830
1859
|
"ImportStatusTypedDict": ".importstatus",
|
1860
|
+
"JobType": ".importstatus",
|
1831
1861
|
"KbLanguage": ".kblanguage",
|
1832
1862
|
"KbLanguageCode1": ".kblanguage",
|
1833
1863
|
"KbLanguageTypedDict": ".kblanguage",
|
@@ -1845,8 +1875,8 @@ _dynamic_imports: dict[str, str] = {
|
|
1845
1875
|
"KnowledgeExportCredentialsTypedDict": ".knowledgeexport",
|
1846
1876
|
"KnowledgeExportLanguage": ".knowledgeexport",
|
1847
1877
|
"KnowledgeExportLanguageTypedDict": ".knowledgeexport",
|
1848
|
-
"KnowledgeExportResourceType": ".knowledgeexport",
|
1849
1878
|
"KnowledgeExportTypedDict": ".knowledgeexport",
|
1879
|
+
"ResourceType": ".knowledgeexport",
|
1850
1880
|
"L10NString": ".l10nstring",
|
1851
1881
|
"L10NStringTypedDict": ".l10nstring",
|
1852
1882
|
"LanguageCode": ".languagecode",
|
@@ -1925,15 +1955,12 @@ _dynamic_imports: dict[str, str] = {
|
|
1925
1955
|
"RateArticleRequestTypedDict": ".ratearticleop",
|
1926
1956
|
"ReferenceResponse": ".referenceresponse",
|
1927
1957
|
"ReferenceResponseDocType": ".referenceresponse",
|
1928
|
-
"ReferenceResponseLink": ".referenceresponse",
|
1929
|
-
"ReferenceResponseLinkTypedDict": ".referenceresponse",
|
1930
1958
|
"ReferenceResponseSource": ".referenceresponse",
|
1931
1959
|
"ReferenceResponseTypedDict": ".referenceresponse",
|
1932
1960
|
"RejectGHSolutionRequest": ".rejectghsolutionop",
|
1933
1961
|
"RejectGHSolutionRequestTypedDict": ".rejectghsolutionop",
|
1934
1962
|
"RelatedQuestions": ".relatedquestions",
|
1935
1963
|
"RelatedQuestionsTypedDict": ".relatedquestions",
|
1936
|
-
"ResourceTypeParameter": ".resourcetype_parameter",
|
1937
1964
|
"RestoreQuickpickRequest": ".restorequickpickop",
|
1938
1965
|
"RestoreQuickpickRequestTypedDict": ".restorequickpickop",
|
1939
1966
|
"RETRIEVE_CHUNKS_OP_SERVERS": ".retrievechunksop",
|
@@ -1984,8 +2011,6 @@ _dynamic_imports: dict[str, str] = {
|
|
1984
2011
|
"SearchPriorToEscalationRequestTypedDict": ".searchpriortoescalationop",
|
1985
2012
|
"SearchResult": ".searchresult",
|
1986
2013
|
"SearchResultDocType": ".searchresult",
|
1987
|
-
"SearchResultLink": ".searchresult",
|
1988
|
-
"SearchResultLinkTypedDict": ".searchresult",
|
1989
2014
|
"SearchResultSource": ".searchresult",
|
1990
2015
|
"SearchResultTypedDict": ".searchresult",
|
1991
2016
|
"SnippetType": ".searchresult",
|
@@ -2057,8 +2082,6 @@ _dynamic_imports: dict[str, str] = {
|
|
2057
2082
|
"Topic": ".topic",
|
2058
2083
|
"TopicTypedDict": ".topic",
|
2059
2084
|
"TopicAdditionalAttributes": ".topicadditionalattributes",
|
2060
|
-
"TopicAISearchResult": ".topicaisearchresult",
|
2061
|
-
"TopicAISearchResultTypedDict": ".topicaisearchresult",
|
2062
2085
|
"TopicBreadcrumb": ".topicbreadcrumb",
|
2063
2086
|
"TopicBreadcrumbTypedDict": ".topicbreadcrumb",
|
2064
2087
|
"TopicResult": ".topicresult",
|