egain-api-python 0.1.3__py3-none-any.whl → 0.1.5__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 +8 -20
- egain_api_python/articlelists.py +4 -4
- egain_api_python/connectorssearchevents.py +4 -4
- egain_api_python/escalation.py +8 -8
- egain_api_python/export.py +4 -4
- egain_api_python/federatedsearchevent.py +2 -2
- egain_api_python/general.py +8 -8
- egain_api_python/guidedhelp.py +26 -26
- egain_api_python/health.py +2 -8
- egain_api_python/import_.py +56 -74
- egain_api_python/models/__init__.py +41 -53
- egain_api_python/models/answersrequest.py +0 -31
- egain_api_python/models/answersresponse.py +9 -11
- egain_api_python/models/articleaisearchresult.py +2 -24
- egain_api_python/models/{getimportcontentop.py → cancelimportop.py} +4 -4
- egain_api_python/models/{createimportop.py → createimportjobop.py} +4 -4
- egain_api_python/models/{createimportvalidationop.py → createimportvalidationjobop.py} +4 -4
- egain_api_python/models/getbestanswerop.py +1 -1
- egain_api_python/models/gethealthop.py +1 -1
- egain_api_python/models/{patchimportcontentvalidationop.py → getimportstatusop.py} +4 -4
- egain_api_python/models/retrievechunksop.py +1 -1
- egain_api_python/models/retrieveresponse.py +10 -12
- egain_api_python/populararticles.py +2 -2
- egain_api_python/portal_article.py +40 -40
- egain_api_python/portal_attachment.py +4 -4
- egain_api_python/portal_bookmark.py +6 -6
- egain_api_python/portal_suggestion.py +18 -18
- egain_api_python/portal_topic.py +8 -8
- egain_api_python/portal_userdetails.py +2 -2
- egain_api_python/portal_userprofile.py +4 -4
- egain_api_python/retrieve.py +4 -10
- egain_api_python/sdk.py +24 -24
- egain_api_python/sdkconfiguration.py +4 -5
- egain_api_python/search.py +6 -4
- egain_api_python/usermilestones.py +2 -2
- {egain_api_python-0.1.3.dist-info → egain_api_python-0.1.5.dist-info}/METADATA +34 -72
- {egain_api_python-0.1.3.dist-info → egain_api_python-0.1.5.dist-info}/RECORD +41 -41
- {egain_api_python-0.1.3.dist-info → egain_api_python-0.1.5.dist-info}/WHEEL +0 -0
- {egain_api_python-0.1.3.dist-info → egain_api_python-0.1.5.dist-info}/licenses/LICENSE +0 -0
- {egain_api_python-0.1.3.dist-info → egain_api_python-0.1.5.dist-info}/top_level.txt +0 -0
@@ -54,20 +54,6 @@ class ArticleAISearchResultCustomAttribute(BaseModel):
|
|
54
54
|
r"""The custom attribute's type."""
|
55
55
|
|
56
56
|
|
57
|
-
class OpensearchHighlightingRawTypedDict(TypedDict):
|
58
|
-
r"""Article content used for highlighting a keyword search result"""
|
59
|
-
|
60
|
-
article_content: NotRequired[List[str]]
|
61
|
-
|
62
|
-
|
63
|
-
class OpensearchHighlightingRaw(BaseModel):
|
64
|
-
r"""Article content used for highlighting a keyword search result"""
|
65
|
-
|
66
|
-
article_content: Annotated[
|
67
|
-
Optional[List[str]], pydantic.Field(alias="articleContent")
|
68
|
-
] = None
|
69
|
-
|
70
|
-
|
71
57
|
class ArticleTypeAttributesTypedDict(TypedDict):
|
72
58
|
r"""The type of the Article and its attributes."""
|
73
59
|
|
@@ -120,7 +106,7 @@ class ArticleAISearchResultTypedDict(TypedDict):
|
|
120
106
|
source: ArticleAISearchResultSource
|
121
107
|
r"""The source type."""
|
122
108
|
snippet: str
|
123
|
-
r"""A snippet of the article content."""
|
109
|
+
r"""A semantic snippet of the article content."""
|
124
110
|
topic_breadcrumb: List[TopicBreadcrumbTypedDict]
|
125
111
|
r"""A list of topics from the root topic to this Article. There may be multiple paths."""
|
126
112
|
relevance_score: float
|
@@ -135,8 +121,6 @@ class ArticleAISearchResultTypedDict(TypedDict):
|
|
135
121
|
r"""An array of snippets belonging to the same article."""
|
136
122
|
additional_snippet_count: NotRequired[int]
|
137
123
|
r"""Number of additional snippets."""
|
138
|
-
opensearch_highlighting_raw: NotRequired[OpensearchHighlightingRawTypedDict]
|
139
|
-
r"""Article content used for highlighting a keyword search result"""
|
140
124
|
contextual_summary: NotRequired[str]
|
141
125
|
r"""Contextual Summary generated as part of metadata for embedding."""
|
142
126
|
description: NotRequired[str]
|
@@ -172,7 +156,7 @@ class ArticleAISearchResult(BaseModel):
|
|
172
156
|
r"""The source type."""
|
173
157
|
|
174
158
|
snippet: str
|
175
|
-
r"""A snippet of the article content."""
|
159
|
+
r"""A semantic snippet of the article content."""
|
176
160
|
|
177
161
|
topic_breadcrumb: Annotated[
|
178
162
|
List[TopicBreadcrumb], pydantic.Field(alias="topicBreadcrumb")
|
@@ -206,12 +190,6 @@ class ArticleAISearchResult(BaseModel):
|
|
206
190
|
] = None
|
207
191
|
r"""Number of additional snippets."""
|
208
192
|
|
209
|
-
opensearch_highlighting_raw: Annotated[
|
210
|
-
Optional[OpensearchHighlightingRaw],
|
211
|
-
pydantic.Field(alias="opensearchHighlightingRaw"),
|
212
|
-
] = None
|
213
|
-
r"""Article content used for highlighting a keyword search result"""
|
214
|
-
|
215
193
|
contextual_summary: Annotated[
|
216
194
|
Optional[str], pydantic.Field(alias="contextualSummary")
|
217
195
|
] = None
|
@@ -6,13 +6,13 @@ from egain_api_python.utils import FieldMetadata, PathParamMetadata
|
|
6
6
|
from typing_extensions import Annotated, TypedDict
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
CANCEL_IMPORT_OP_SERVERS = [
|
10
10
|
# Production Server
|
11
|
-
"https
|
11
|
+
"https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
|
12
12
|
]
|
13
13
|
|
14
14
|
|
15
|
-
class
|
15
|
+
class CancelImportRequestTypedDict(TypedDict):
|
16
16
|
job_id: str
|
17
17
|
r"""**Job ID Parameter**
|
18
18
|
|
@@ -28,7 +28,7 @@ class GetImportContentRequestTypedDict(TypedDict):
|
|
28
28
|
"""
|
29
29
|
|
30
30
|
|
31
|
-
class
|
31
|
+
class CancelImportRequest(BaseModel):
|
32
32
|
job_id: Annotated[
|
33
33
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
34
34
|
]
|
@@ -6,15 +6,15 @@ from typing import Dict, List
|
|
6
6
|
from typing_extensions import TypedDict
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
CREATE_IMPORT_JOB_OP_SERVERS = [
|
10
10
|
# Production Server
|
11
|
-
"https
|
11
|
+
"https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
|
12
12
|
]
|
13
13
|
|
14
14
|
|
15
|
-
class
|
15
|
+
class CreateImportJobResponseTypedDict(TypedDict):
|
16
16
|
headers: Dict[str, List[str]]
|
17
17
|
|
18
18
|
|
19
|
-
class
|
19
|
+
class CreateImportJobResponse(BaseModel):
|
20
20
|
headers: Dict[str, List[str]]
|
@@ -6,15 +6,15 @@ from typing import Dict, List
|
|
6
6
|
from typing_extensions import TypedDict
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
CREATE_IMPORT_VALIDATION_JOB_OP_SERVERS = [
|
10
10
|
# Production Server
|
11
|
-
"https
|
11
|
+
"https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
|
12
12
|
]
|
13
13
|
|
14
14
|
|
15
|
-
class
|
15
|
+
class CreateImportValidationJobResponseTypedDict(TypedDict):
|
16
16
|
headers: Dict[str, List[str]]
|
17
17
|
|
18
18
|
|
19
|
-
class
|
19
|
+
class CreateImportValidationJobResponse(BaseModel):
|
20
20
|
headers: Dict[str, List[str]]
|
@@ -6,13 +6,13 @@ from egain_api_python.utils import FieldMetadata, PathParamMetadata
|
|
6
6
|
from typing_extensions import Annotated, TypedDict
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
GET_IMPORT_STATUS_OP_SERVERS = [
|
10
10
|
# Production Server
|
11
|
-
"https
|
11
|
+
"https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
|
12
12
|
]
|
13
13
|
|
14
14
|
|
15
|
-
class
|
15
|
+
class GetImportStatusRequestTypedDict(TypedDict):
|
16
16
|
job_id: str
|
17
17
|
r"""**Job ID Parameter**
|
18
18
|
|
@@ -28,7 +28,7 @@ class PatchImportContentValidationRequestTypedDict(TypedDict):
|
|
28
28
|
"""
|
29
29
|
|
30
30
|
|
31
|
-
class
|
31
|
+
class GetImportStatusRequest(BaseModel):
|
32
32
|
job_id: Annotated[
|
33
33
|
str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
|
34
34
|
]
|
@@ -67,30 +67,28 @@ class RetrieveResponseChannel(BaseModel):
|
|
67
67
|
|
68
68
|
|
69
69
|
class RetrieveResponseTypedDict(TypedDict):
|
70
|
+
search_results: List[SearchResultTypedDict]
|
71
|
+
r"""Top search results with relevance scores and metadata."""
|
72
|
+
session_id: str
|
73
|
+
r"""ID that ties multiple API calls to the same user session. Will be used as part of to tie events back to a session."""
|
70
74
|
answer: NotRequired[RetrieveResponseAnswerTypedDict]
|
71
75
|
r"""If a certified answer is given. The answer object will be present. <br><br> This will be shown only if certified answers are configured and the certified answer meets the configured threshold."""
|
72
|
-
search_results: NotRequired[List[SearchResultTypedDict]]
|
73
|
-
r"""Top search results with relevance scores and metadata."""
|
74
76
|
channel: NotRequired[RetrieveResponseChannelTypedDict]
|
75
77
|
event_id: NotRequired[str]
|
76
78
|
r"""Unique ID for this specific API call or event."""
|
77
|
-
session_id: NotRequired[str]
|
78
|
-
r"""ID that ties multiple API calls to the same user session. Will be used as part of to tie events back to a session."""
|
79
79
|
|
80
80
|
|
81
81
|
class RetrieveResponse(BaseModel):
|
82
|
+
search_results: Annotated[List[SearchResult], pydantic.Field(alias="searchResults")]
|
83
|
+
r"""Top search results with relevance scores and metadata."""
|
84
|
+
|
85
|
+
session_id: Annotated[str, pydantic.Field(alias="sessionId")]
|
86
|
+
r"""ID that ties multiple API calls to the same user session. Will be used as part of to tie events back to a session."""
|
87
|
+
|
82
88
|
answer: Optional[RetrieveResponseAnswer] = None
|
83
89
|
r"""If a certified answer is given. The answer object will be present. <br><br> This will be shown only if certified answers are configured and the certified answer meets the configured threshold."""
|
84
90
|
|
85
|
-
search_results: Annotated[
|
86
|
-
Optional[List[SearchResult]], pydantic.Field(alias="searchResults")
|
87
|
-
] = None
|
88
|
-
r"""Top search results with relevance scores and metadata."""
|
89
|
-
|
90
91
|
channel: Optional[RetrieveResponseChannel] = None
|
91
92
|
|
92
93
|
event_id: Annotated[Optional[str], pydantic.Field(alias="eventId")] = None
|
93
94
|
r"""Unique ID for this specific API call or event."""
|
94
|
-
|
95
|
-
session_id: Annotated[Optional[str], pydantic.Field(alias="sessionId")] = None
|
96
|
-
r"""ID that ties multiple API calls to the same user session. Will be used as part of to tie events back to a session."""
|
@@ -112,7 +112,7 @@ class Populararticles(BaseSDK):
|
|
112
112
|
config=self.sdk_configuration,
|
113
113
|
base_url=base_url or "",
|
114
114
|
operation_id="getpopulararticles",
|
115
|
-
oauth2_scopes=
|
115
|
+
oauth2_scopes=None,
|
116
116
|
security_source=get_security_from_env(
|
117
117
|
self.sdk_configuration.security, models.Security
|
118
118
|
),
|
@@ -250,7 +250,7 @@ class Populararticles(BaseSDK):
|
|
250
250
|
config=self.sdk_configuration,
|
251
251
|
base_url=base_url or "",
|
252
252
|
operation_id="getpopulararticles",
|
253
|
-
oauth2_scopes=
|
253
|
+
oauth2_scopes=None,
|
254
254
|
security_source=get_security_from_env(
|
255
255
|
self.sdk_configuration.security, models.Security
|
256
256
|
),
|
@@ -120,7 +120,7 @@ class PortalArticle(BaseSDK):
|
|
120
120
|
config=self.sdk_configuration,
|
121
121
|
base_url=base_url or "",
|
122
122
|
operation_id="getArticleById",
|
123
|
-
oauth2_scopes=
|
123
|
+
oauth2_scopes=None,
|
124
124
|
security_source=get_security_from_env(
|
125
125
|
self.sdk_configuration.security, models.Security
|
126
126
|
),
|
@@ -266,7 +266,7 @@ class PortalArticle(BaseSDK):
|
|
266
266
|
config=self.sdk_configuration,
|
267
267
|
base_url=base_url or "",
|
268
268
|
operation_id="getArticleById",
|
269
|
-
oauth2_scopes=
|
269
|
+
oauth2_scopes=None,
|
270
270
|
security_source=get_security_from_env(
|
271
271
|
self.sdk_configuration.security, models.Security
|
272
272
|
),
|
@@ -373,7 +373,7 @@ class PortalArticle(BaseSDK):
|
|
373
373
|
config=self.sdk_configuration,
|
374
374
|
base_url=base_url or "",
|
375
375
|
operation_id="getArticleByIdWithEditions",
|
376
|
-
oauth2_scopes=
|
376
|
+
oauth2_scopes=None,
|
377
377
|
security_source=get_security_from_env(
|
378
378
|
self.sdk_configuration.security, models.Security
|
379
379
|
),
|
@@ -478,7 +478,7 @@ class PortalArticle(BaseSDK):
|
|
478
478
|
config=self.sdk_configuration,
|
479
479
|
base_url=base_url or "",
|
480
480
|
operation_id="getArticleByIdWithEditions",
|
481
|
-
oauth2_scopes=
|
481
|
+
oauth2_scopes=None,
|
482
482
|
security_source=get_security_from_env(
|
483
483
|
self.sdk_configuration.security, models.Security
|
484
484
|
),
|
@@ -585,7 +585,7 @@ class PortalArticle(BaseSDK):
|
|
585
585
|
config=self.sdk_configuration,
|
586
586
|
base_url=base_url or "",
|
587
587
|
operation_id="getArticleEditionDetails",
|
588
|
-
oauth2_scopes=
|
588
|
+
oauth2_scopes=None,
|
589
589
|
security_source=get_security_from_env(
|
590
590
|
self.sdk_configuration.security, models.Security
|
591
591
|
),
|
@@ -692,7 +692,7 @@ class PortalArticle(BaseSDK):
|
|
692
692
|
config=self.sdk_configuration,
|
693
693
|
base_url=base_url or "",
|
694
694
|
operation_id="getArticleEditionDetails",
|
695
|
-
oauth2_scopes=
|
695
|
+
oauth2_scopes=None,
|
696
696
|
security_source=get_security_from_env(
|
697
697
|
self.sdk_configuration.security, models.Security
|
698
698
|
),
|
@@ -824,7 +824,7 @@ class PortalArticle(BaseSDK):
|
|
824
824
|
config=self.sdk_configuration,
|
825
825
|
base_url=base_url or "",
|
826
826
|
operation_id="AddToReply",
|
827
|
-
oauth2_scopes=
|
827
|
+
oauth2_scopes=None,
|
828
828
|
security_source=get_security_from_env(
|
829
829
|
self.sdk_configuration.security, models.Security
|
830
830
|
),
|
@@ -966,7 +966,7 @@ class PortalArticle(BaseSDK):
|
|
966
966
|
config=self.sdk_configuration,
|
967
967
|
base_url=base_url or "",
|
968
968
|
operation_id="AddToReply",
|
969
|
-
oauth2_scopes=
|
969
|
+
oauth2_scopes=None,
|
970
970
|
security_source=get_security_from_env(
|
971
971
|
self.sdk_configuration.security, models.Security
|
972
972
|
),
|
@@ -1108,7 +1108,7 @@ class PortalArticle(BaseSDK):
|
|
1108
1108
|
config=self.sdk_configuration,
|
1109
1109
|
base_url=base_url or "",
|
1110
1110
|
operation_id="AddAsReference",
|
1111
|
-
oauth2_scopes=
|
1111
|
+
oauth2_scopes=None,
|
1112
1112
|
security_source=get_security_from_env(
|
1113
1113
|
self.sdk_configuration.security, models.Security
|
1114
1114
|
),
|
@@ -1250,7 +1250,7 @@ class PortalArticle(BaseSDK):
|
|
1250
1250
|
config=self.sdk_configuration,
|
1251
1251
|
base_url=base_url or "",
|
1252
1252
|
operation_id="AddAsReference",
|
1253
|
-
oauth2_scopes=
|
1253
|
+
oauth2_scopes=None,
|
1254
1254
|
security_source=get_security_from_env(
|
1255
1255
|
self.sdk_configuration.security, models.Security
|
1256
1256
|
),
|
@@ -1411,7 +1411,7 @@ class PortalArticle(BaseSDK):
|
|
1411
1411
|
config=self.sdk_configuration,
|
1412
1412
|
base_url=base_url or "",
|
1413
1413
|
operation_id="getArticlesInTopic",
|
1414
|
-
oauth2_scopes=
|
1414
|
+
oauth2_scopes=None,
|
1415
1415
|
security_source=get_security_from_env(
|
1416
1416
|
self.sdk_configuration.security, models.Security
|
1417
1417
|
),
|
@@ -1564,7 +1564,7 @@ class PortalArticle(BaseSDK):
|
|
1564
1564
|
config=self.sdk_configuration,
|
1565
1565
|
base_url=base_url or "",
|
1566
1566
|
operation_id="getArticlesInTopic",
|
1567
|
-
oauth2_scopes=
|
1567
|
+
oauth2_scopes=None,
|
1568
1568
|
security_source=get_security_from_env(
|
1569
1569
|
self.sdk_configuration.security, models.Security
|
1570
1570
|
),
|
@@ -1667,7 +1667,7 @@ class PortalArticle(BaseSDK):
|
|
1667
1667
|
config=self.sdk_configuration,
|
1668
1668
|
base_url=base_url or "",
|
1669
1669
|
operation_id="getArticleAttachmentById",
|
1670
|
-
oauth2_scopes=
|
1670
|
+
oauth2_scopes=None,
|
1671
1671
|
security_source=get_security_from_env(
|
1672
1672
|
self.sdk_configuration.security, models.Security
|
1673
1673
|
),
|
@@ -1768,7 +1768,7 @@ class PortalArticle(BaseSDK):
|
|
1768
1768
|
config=self.sdk_configuration,
|
1769
1769
|
base_url=base_url or "",
|
1770
1770
|
operation_id="getArticleAttachmentById",
|
1771
|
-
oauth2_scopes=
|
1771
|
+
oauth2_scopes=None,
|
1772
1772
|
security_source=get_security_from_env(
|
1773
1773
|
self.sdk_configuration.security, models.Security
|
1774
1774
|
),
|
@@ -1875,7 +1875,7 @@ class PortalArticle(BaseSDK):
|
|
1875
1875
|
config=self.sdk_configuration,
|
1876
1876
|
base_url=base_url or "",
|
1877
1877
|
operation_id="getAttachmentByIdInPortal",
|
1878
|
-
oauth2_scopes=
|
1878
|
+
oauth2_scopes=None,
|
1879
1879
|
security_source=get_security_from_env(
|
1880
1880
|
self.sdk_configuration.security, models.Security
|
1881
1881
|
),
|
@@ -1984,7 +1984,7 @@ class PortalArticle(BaseSDK):
|
|
1984
1984
|
config=self.sdk_configuration,
|
1985
1985
|
base_url=base_url or "",
|
1986
1986
|
operation_id="getAttachmentByIdInPortal",
|
1987
|
-
oauth2_scopes=
|
1987
|
+
oauth2_scopes=None,
|
1988
1988
|
security_source=get_security_from_env(
|
1989
1989
|
self.sdk_configuration.security, models.Security
|
1990
1990
|
),
|
@@ -2128,7 +2128,7 @@ class PortalArticle(BaseSDK):
|
|
2128
2128
|
config=self.sdk_configuration,
|
2129
2129
|
base_url=base_url or "",
|
2130
2130
|
operation_id="getRelatedArticles",
|
2131
|
-
oauth2_scopes=
|
2131
|
+
oauth2_scopes=None,
|
2132
2132
|
security_source=get_security_from_env(
|
2133
2133
|
self.sdk_configuration.security, models.Security
|
2134
2134
|
),
|
@@ -2272,7 +2272,7 @@ class PortalArticle(BaseSDK):
|
|
2272
2272
|
config=self.sdk_configuration,
|
2273
2273
|
base_url=base_url or "",
|
2274
2274
|
operation_id="getRelatedArticles",
|
2275
|
-
oauth2_scopes=
|
2275
|
+
oauth2_scopes=None,
|
2276
2276
|
security_source=get_security_from_env(
|
2277
2277
|
self.sdk_configuration.security, models.Security
|
2278
2278
|
),
|
@@ -2414,7 +2414,7 @@ class PortalArticle(BaseSDK):
|
|
2414
2414
|
config=self.sdk_configuration,
|
2415
2415
|
base_url=base_url or "",
|
2416
2416
|
operation_id="getAnnouncementArticles",
|
2417
|
-
oauth2_scopes=
|
2417
|
+
oauth2_scopes=None,
|
2418
2418
|
security_source=get_security_from_env(
|
2419
2419
|
self.sdk_configuration.security, models.Security
|
2420
2420
|
),
|
@@ -2556,7 +2556,7 @@ class PortalArticle(BaseSDK):
|
|
2556
2556
|
config=self.sdk_configuration,
|
2557
2557
|
base_url=base_url or "",
|
2558
2558
|
operation_id="getAnnouncementArticles",
|
2559
|
-
oauth2_scopes=
|
2559
|
+
oauth2_scopes=None,
|
2560
2560
|
security_source=get_security_from_env(
|
2561
2561
|
self.sdk_configuration.security, models.Security
|
2562
2562
|
),
|
@@ -2671,7 +2671,7 @@ class PortalArticle(BaseSDK):
|
|
2671
2671
|
config=self.sdk_configuration,
|
2672
2672
|
base_url=base_url or "",
|
2673
2673
|
operation_id="getArticleRatings",
|
2674
|
-
oauth2_scopes=
|
2674
|
+
oauth2_scopes=None,
|
2675
2675
|
security_source=get_security_from_env(
|
2676
2676
|
self.sdk_configuration.security, models.Security
|
2677
2677
|
),
|
@@ -2786,7 +2786,7 @@ class PortalArticle(BaseSDK):
|
|
2786
2786
|
config=self.sdk_configuration,
|
2787
2787
|
base_url=base_url or "",
|
2788
2788
|
operation_id="getArticleRatings",
|
2789
|
-
oauth2_scopes=
|
2789
|
+
oauth2_scopes=None,
|
2790
2790
|
security_source=get_security_from_env(
|
2791
2791
|
self.sdk_configuration.security, models.Security
|
2792
2792
|
),
|
@@ -2901,7 +2901,7 @@ class PortalArticle(BaseSDK):
|
|
2901
2901
|
config=self.sdk_configuration,
|
2902
2902
|
base_url=base_url or "",
|
2903
2903
|
operation_id="rateArticle",
|
2904
|
-
oauth2_scopes=
|
2904
|
+
oauth2_scopes=None,
|
2905
2905
|
security_source=get_security_from_env(
|
2906
2906
|
self.sdk_configuration.security, models.Security
|
2907
2907
|
),
|
@@ -3024,7 +3024,7 @@ class PortalArticle(BaseSDK):
|
|
3024
3024
|
config=self.sdk_configuration,
|
3025
3025
|
base_url=base_url or "",
|
3026
3026
|
operation_id="rateArticle",
|
3027
|
-
oauth2_scopes=
|
3027
|
+
oauth2_scopes=None,
|
3028
3028
|
security_source=get_security_from_env(
|
3029
3029
|
self.sdk_configuration.security, models.Security
|
3030
3030
|
),
|
@@ -3154,7 +3154,7 @@ class PortalArticle(BaseSDK):
|
|
3154
3154
|
config=self.sdk_configuration,
|
3155
3155
|
base_url=base_url or "",
|
3156
3156
|
operation_id="getPendingComplianceArticles",
|
3157
|
-
oauth2_scopes=
|
3157
|
+
oauth2_scopes=None,
|
3158
3158
|
security_source=get_security_from_env(
|
3159
3159
|
self.sdk_configuration.security, models.Security
|
3160
3160
|
),
|
@@ -3276,7 +3276,7 @@ class PortalArticle(BaseSDK):
|
|
3276
3276
|
config=self.sdk_configuration,
|
3277
3277
|
base_url=base_url or "",
|
3278
3278
|
operation_id="getPendingComplianceArticles",
|
3279
|
-
oauth2_scopes=
|
3279
|
+
oauth2_scopes=None,
|
3280
3280
|
security_source=get_security_from_env(
|
3281
3281
|
self.sdk_configuration.security, models.Security
|
3282
3282
|
),
|
@@ -3401,7 +3401,7 @@ class PortalArticle(BaseSDK):
|
|
3401
3401
|
config=self.sdk_configuration,
|
3402
3402
|
base_url=base_url or "",
|
3403
3403
|
operation_id="getAcknowledgedComplianceArticles",
|
3404
|
-
oauth2_scopes=
|
3404
|
+
oauth2_scopes=None,
|
3405
3405
|
security_source=get_security_from_env(
|
3406
3406
|
self.sdk_configuration.security, models.Security
|
3407
3407
|
),
|
@@ -3526,7 +3526,7 @@ class PortalArticle(BaseSDK):
|
|
3526
3526
|
config=self.sdk_configuration,
|
3527
3527
|
base_url=base_url or "",
|
3528
3528
|
operation_id="getAcknowledgedComplianceArticles",
|
3529
|
-
oauth2_scopes=
|
3529
|
+
oauth2_scopes=None,
|
3530
3530
|
security_source=get_security_from_env(
|
3531
3531
|
self.sdk_configuration.security, models.Security
|
3532
3532
|
),
|
@@ -3640,7 +3640,7 @@ class PortalArticle(BaseSDK):
|
|
3640
3640
|
config=self.sdk_configuration,
|
3641
3641
|
base_url=base_url or "",
|
3642
3642
|
operation_id="complyArticle",
|
3643
|
-
oauth2_scopes=
|
3643
|
+
oauth2_scopes=None,
|
3644
3644
|
security_source=get_security_from_env(
|
3645
3645
|
self.sdk_configuration.security, models.Security
|
3646
3646
|
),
|
@@ -3752,7 +3752,7 @@ class PortalArticle(BaseSDK):
|
|
3752
3752
|
config=self.sdk_configuration,
|
3753
3753
|
base_url=base_url or "",
|
3754
3754
|
operation_id="complyArticle",
|
3755
|
-
oauth2_scopes=
|
3755
|
+
oauth2_scopes=None,
|
3756
3756
|
security_source=get_security_from_env(
|
3757
3757
|
self.sdk_configuration.security, models.Security
|
3758
3758
|
),
|
@@ -3867,7 +3867,7 @@ class PortalArticle(BaseSDK):
|
|
3867
3867
|
config=self.sdk_configuration,
|
3868
3868
|
base_url=base_url or "",
|
3869
3869
|
operation_id="getMySubscription",
|
3870
|
-
oauth2_scopes=
|
3870
|
+
oauth2_scopes=None,
|
3871
3871
|
security_source=get_security_from_env(
|
3872
3872
|
self.sdk_configuration.security, models.Security
|
3873
3873
|
),
|
@@ -3984,7 +3984,7 @@ class PortalArticle(BaseSDK):
|
|
3984
3984
|
config=self.sdk_configuration,
|
3985
3985
|
base_url=base_url or "",
|
3986
3986
|
operation_id="getMySubscription",
|
3987
|
-
oauth2_scopes=
|
3987
|
+
oauth2_scopes=None,
|
3988
3988
|
security_source=get_security_from_env(
|
3989
3989
|
self.sdk_configuration.security, models.Security
|
3990
3990
|
),
|
@@ -4116,7 +4116,7 @@ class PortalArticle(BaseSDK):
|
|
4116
4116
|
config=self.sdk_configuration,
|
4117
4117
|
base_url=base_url or "",
|
4118
4118
|
operation_id="subscribeArticle",
|
4119
|
-
oauth2_scopes=
|
4119
|
+
oauth2_scopes=None,
|
4120
4120
|
security_source=get_security_from_env(
|
4121
4121
|
self.sdk_configuration.security, models.Security
|
4122
4122
|
),
|
@@ -4246,7 +4246,7 @@ class PortalArticle(BaseSDK):
|
|
4246
4246
|
config=self.sdk_configuration,
|
4247
4247
|
base_url=base_url or "",
|
4248
4248
|
operation_id="subscribeArticle",
|
4249
|
-
oauth2_scopes=
|
4249
|
+
oauth2_scopes=None,
|
4250
4250
|
security_source=get_security_from_env(
|
4251
4251
|
self.sdk_configuration.security, models.Security
|
4252
4252
|
),
|
@@ -4353,7 +4353,7 @@ class PortalArticle(BaseSDK):
|
|
4353
4353
|
config=self.sdk_configuration,
|
4354
4354
|
base_url=base_url or "",
|
4355
4355
|
operation_id="unsubscribeArticle",
|
4356
|
-
oauth2_scopes=
|
4356
|
+
oauth2_scopes=None,
|
4357
4357
|
security_source=get_security_from_env(
|
4358
4358
|
self.sdk_configuration.security, models.Security
|
4359
4359
|
),
|
@@ -4460,7 +4460,7 @@ class PortalArticle(BaseSDK):
|
|
4460
4460
|
config=self.sdk_configuration,
|
4461
4461
|
base_url=base_url or "",
|
4462
4462
|
operation_id="unsubscribeArticle",
|
4463
|
-
oauth2_scopes=
|
4463
|
+
oauth2_scopes=None,
|
4464
4464
|
security_source=get_security_from_env(
|
4465
4465
|
self.sdk_configuration.security, models.Security
|
4466
4466
|
),
|
@@ -4564,7 +4564,7 @@ class PortalArticle(BaseSDK):
|
|
4564
4564
|
config=self.sdk_configuration,
|
4565
4565
|
base_url=base_url or "",
|
4566
4566
|
operation_id="getArticlePermissionsById",
|
4567
|
-
oauth2_scopes=
|
4567
|
+
oauth2_scopes=None,
|
4568
4568
|
security_source=get_security_from_env(
|
4569
4569
|
self.sdk_configuration.security, models.Security
|
4570
4570
|
),
|
@@ -4670,7 +4670,7 @@ class PortalArticle(BaseSDK):
|
|
4670
4670
|
config=self.sdk_configuration,
|
4671
4671
|
base_url=base_url or "",
|
4672
4672
|
operation_id="getArticlePermissionsById",
|
4673
|
-
oauth2_scopes=
|
4673
|
+
oauth2_scopes=None,
|
4674
4674
|
security_source=get_security_from_env(
|
4675
4675
|
self.sdk_configuration.security, models.Security
|
4676
4676
|
),
|
@@ -4784,7 +4784,7 @@ class PortalArticle(BaseSDK):
|
|
4784
4784
|
config=self.sdk_configuration,
|
4785
4785
|
base_url=base_url or "",
|
4786
4786
|
operation_id="getArticlePersonalization",
|
4787
|
-
oauth2_scopes=
|
4787
|
+
oauth2_scopes=None,
|
4788
4788
|
security_source=get_security_from_env(
|
4789
4789
|
self.sdk_configuration.security, models.Security
|
4790
4790
|
),
|
@@ -4898,7 +4898,7 @@ class PortalArticle(BaseSDK):
|
|
4898
4898
|
config=self.sdk_configuration,
|
4899
4899
|
base_url=base_url or "",
|
4900
4900
|
operation_id="getArticlePersonalization",
|
4901
|
-
oauth2_scopes=
|
4901
|
+
oauth2_scopes=None,
|
4902
4902
|
security_source=get_security_from_env(
|
4903
4903
|
self.sdk_configuration.security, models.Security
|
4904
4904
|
),
|
@@ -86,7 +86,7 @@ class PortalAttachment(BaseSDK):
|
|
86
86
|
config=self.sdk_configuration,
|
87
87
|
base_url=base_url or "",
|
88
88
|
operation_id="createSignedURL",
|
89
|
-
oauth2_scopes=
|
89
|
+
oauth2_scopes=None,
|
90
90
|
security_source=get_security_from_env(
|
91
91
|
self.sdk_configuration.security, models.Security
|
92
92
|
),
|
@@ -205,7 +205,7 @@ class PortalAttachment(BaseSDK):
|
|
205
205
|
config=self.sdk_configuration,
|
206
206
|
base_url=base_url or "",
|
207
207
|
operation_id="createSignedURL",
|
208
|
-
oauth2_scopes=
|
208
|
+
oauth2_scopes=None,
|
209
209
|
security_source=get_security_from_env(
|
210
210
|
self.sdk_configuration.security, models.Security
|
211
211
|
),
|
@@ -327,7 +327,7 @@ class PortalAttachment(BaseSDK):
|
|
327
327
|
config=self.sdk_configuration,
|
328
328
|
base_url=base_url or "",
|
329
329
|
operation_id="uploadAttachment",
|
330
|
-
oauth2_scopes=
|
330
|
+
oauth2_scopes=None,
|
331
331
|
security_source=get_security_from_env(
|
332
332
|
self.sdk_configuration.security, models.Security
|
333
333
|
),
|
@@ -449,7 +449,7 @@ class PortalAttachment(BaseSDK):
|
|
449
449
|
config=self.sdk_configuration,
|
450
450
|
base_url=base_url or "",
|
451
451
|
operation_id="uploadAttachment",
|
452
|
-
oauth2_scopes=
|
452
|
+
oauth2_scopes=None,
|
453
453
|
security_source=get_security_from_env(
|
454
454
|
self.sdk_configuration.security, models.Security
|
455
455
|
),
|