egain-api-python 0.1.4__py3-none-any.whl → 0.1.6__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.
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "egain-api-python"
6
- __version__: str = "0.1.4"
6
+ __version__: str = "0.1.6"
7
7
  __openapi_doc_version__: str = "4.0.0"
8
- __gen_version__: str = "2.723.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.1.4 2.723.2 4.0.0 egain-api-python"
8
+ __gen_version__: str = "2.723.8"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.1.6 2.723.8 4.0.0 egain-api-python"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -22,12 +22,12 @@ class AdditionalSnippetsTypedDict(TypedDict):
22
22
  r"""The name of the Article or source content."""
23
23
  doc_type: AdditionalSnippetsDocType
24
24
  r"""Format of the source document (HTML, Doc, or PDF)."""
25
- doc_name: str
26
- r"""Name of the attachment, if an attachment was used as the source content."""
27
25
  snippet: str
28
26
  r"""A snippet of the article content."""
29
27
  relevance_score: float
30
28
  r"""Generated confidence score (0.0-1.0) for the snippet's relevance to the query."""
29
+ doc_name: NotRequired[str]
30
+ r"""Name of the attachment, if an attachment was used as the source content."""
31
31
  keyword_snippet: NotRequired[str]
32
32
  r"""A keyword snippet of the article content."""
33
33
 
@@ -42,15 +42,15 @@ class AdditionalSnippets(BaseModel):
42
42
  doc_type: Annotated[AdditionalSnippetsDocType, pydantic.Field(alias="docType")]
43
43
  r"""Format of the source document (HTML, Doc, or PDF)."""
44
44
 
45
- doc_name: Annotated[str, pydantic.Field(alias="docName")]
46
- r"""Name of the attachment, if an attachment was used as the source content."""
47
-
48
45
  snippet: str
49
46
  r"""A snippet of the article content."""
50
47
 
51
48
  relevance_score: Annotated[float, pydantic.Field(alias="relevanceScore")]
52
49
  r"""Generated confidence score (0.0-1.0) for the snippet's relevance to the query."""
53
50
 
51
+ doc_name: Annotated[Optional[str], pydantic.Field(alias="docName")] = None
52
+ r"""Name of the attachment, if an attachment was used as the source content."""
53
+
54
54
  keyword_snippet: Annotated[
55
55
  Optional[str], pydantic.Field(alias="keywordSnippet")
56
56
  ] = None
@@ -8,7 +8,7 @@ from typing_extensions import Annotated, TypedDict
8
8
 
9
9
  CANCEL_IMPORT_OP_SERVERS = [
10
10
  # Production Server
11
- "https://${API_DOMAIN}/knowledge/contentmgr/v4",
11
+ "https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
12
12
  ]
13
13
 
14
14
 
@@ -8,7 +8,7 @@ from typing_extensions import TypedDict
8
8
 
9
9
  CREATE_IMPORT_JOB_OP_SERVERS = [
10
10
  # Production Server
11
- "https://${API_DOMAIN}/knowledge/contentmgr/v4",
11
+ "https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
12
12
  ]
13
13
 
14
14
 
@@ -8,7 +8,7 @@ from typing_extensions import TypedDict
8
8
 
9
9
  CREATE_IMPORT_VALIDATION_JOB_OP_SERVERS = [
10
10
  # Production Server
11
- "https://${API_DOMAIN}/knowledge/contentmgr/v4",
11
+ "https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
12
12
  ]
13
13
 
14
14
 
@@ -17,7 +17,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
17
17
 
18
18
  GET_BEST_ANSWER_OP_SERVERS = [
19
19
  # aiservices
20
- "https://${API_DOMAIN}/core/aiservices/v4",
20
+ "https://api.aidev.egain.cloud/core/aiservices/v4",
21
21
  ]
22
22
 
23
23
 
@@ -9,7 +9,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
9
9
 
10
10
  GET_HEALTH_OP_SERVERS = [
11
11
  # Production Server
12
- "https://${API_DOMAIN}/knowledge/contentmgr/v4",
12
+ "https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
13
13
  ]
14
14
 
15
15
 
@@ -8,7 +8,7 @@ from typing_extensions import Annotated, TypedDict
8
8
 
9
9
  GET_IMPORT_STATUS_OP_SERVERS = [
10
10
  # Production Server
11
- "https://${API_DOMAIN}/knowledge/contentmgr/v4",
11
+ "https://api.aidev.egain.cloud/knowledge/contentmgr/v4",
12
12
  ]
13
13
 
14
14
 
@@ -36,7 +36,7 @@ class ReferenceResponseTypedDict(TypedDict):
36
36
  r"""Source Type"""
37
37
  doc_name: NotRequired[str]
38
38
  r"""Name of the attachment, if an attachment was used as the source content."""
39
- topic_bread_crumb: NotRequired[TopicBreadcrumbTypedDict]
39
+ topic_breadcrumb: NotRequired[TopicBreadcrumbTypedDict]
40
40
  r"""This schema contains one or more TopicSummary instances."""
41
41
 
42
42
 
@@ -58,7 +58,7 @@ class ReferenceResponse(BaseModel):
58
58
  doc_name: Annotated[Optional[str], pydantic.Field(alias="docName")] = None
59
59
  r"""Name of the attachment, if an attachment was used as the source content."""
60
60
 
61
- topic_bread_crumb: Annotated[
62
- Optional[TopicBreadcrumb], pydantic.Field(alias="topicBreadCrumb")
61
+ topic_breadcrumb: Annotated[
62
+ Optional[TopicBreadcrumb], pydantic.Field(alias="topicBreadcrumb")
63
63
  ] = None
64
64
  r"""This schema contains one or more TopicSummary instances."""
@@ -17,7 +17,7 @@ from typing_extensions import Annotated, NotRequired, TypedDict
17
17
 
18
18
  RETRIEVE_CHUNKS_OP_SERVERS = [
19
19
  # aiservices
20
- "https://${API_DOMAIN}/core/aiservices/v4",
20
+ "https://api.aidev.egain.cloud/core/aiservices/v4",
21
21
  ]
22
22
 
23
23
 
@@ -47,7 +47,7 @@ class SearchResultTypedDict(TypedDict):
47
47
  doc_name: NotRequired[str]
48
48
  r"""Name of the attachment, if an attachment was used as the source content."""
49
49
  snippet_type: NotRequired[SnippetType]
50
- topic_bread_crumb: NotRequired[TopicBreadcrumbTypedDict]
50
+ topic_breadcrumb: NotRequired[TopicBreadcrumbTypedDict]
51
51
  r"""This schema contains one or more TopicSummary instances."""
52
52
 
53
53
 
@@ -79,7 +79,7 @@ class SearchResult(BaseModel):
79
79
  Optional[SnippetType], pydantic.Field(alias="snippetType")
80
80
  ] = None
81
81
 
82
- topic_bread_crumb: Annotated[
83
- Optional[TopicBreadcrumb], pydantic.Field(alias="topicBreadCrumb")
82
+ topic_breadcrumb: Annotated[
83
+ Optional[TopicBreadcrumb], pydantic.Field(alias="topicBreadcrumb")
84
84
  ] = None
85
85
  r"""This schema contains one or more TopicSummary instances."""
@@ -31,7 +31,14 @@ class Retrieve(BaseSDK):
31
31
  ) -> models.RetrieveResponse:
32
32
  r"""Retrieve Chunks
33
33
 
34
- The Retrieve API enables enterprises to directly access relevant content chunks from their organizational knowledge sources. It is designed for scenarios where developers want granular control over retrieved information, such as powering custom search, analytics, or retrieval-augmented generation (RAG) pipelines. <br><br> In addition to raw chunk retrieval, the API can return **Certified Answers** if it meets the 'Certified Answer' threshold score. Responses include relevance scores, metadata, and references to maintain transparency and flexibility. By leveraging the Retrieve API, organizations can build tailored experiences while retaining confidence in the source material. <br>**This endpoint is only available for Self Service environments.**
34
+ The Retrieve API enables enterprises to directly access relevant content chunks from their organizational knowledge sources. It is designed for scenarios where developers want granular control over retrieved information, such as powering custom search, analytics, or retrieval-augmented generation (RAG) pipelines.
35
+
36
+ The Retrieve API operates through two main pipelines:
37
+ - **Certified Answers**: provide verified, high-confidence answers.
38
+ - **Chunk Retrieval**: retrieves fine-grained, contextually relevant content snippets.
39
+
40
+ Responses for both chunks and certified answers include relevance scores and metadata. By leveraging the Retrieve API, organizations can build tailored experiences while retaining confidence in the source material.
41
+
35
42
 
36
43
  :param q: The search query string. The string must be escaped as required by the URL syntax rules.
37
44
  :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.
@@ -155,7 +162,14 @@ class Retrieve(BaseSDK):
155
162
  ) -> models.RetrieveResponse:
156
163
  r"""Retrieve Chunks
157
164
 
158
- The Retrieve API enables enterprises to directly access relevant content chunks from their organizational knowledge sources. It is designed for scenarios where developers want granular control over retrieved information, such as powering custom search, analytics, or retrieval-augmented generation (RAG) pipelines. <br><br> In addition to raw chunk retrieval, the API can return **Certified Answers** if it meets the 'Certified Answer' threshold score. Responses include relevance scores, metadata, and references to maintain transparency and flexibility. By leveraging the Retrieve API, organizations can build tailored experiences while retaining confidence in the source material. <br>**This endpoint is only available for Self Service environments.**
165
+ The Retrieve API enables enterprises to directly access relevant content chunks from their organizational knowledge sources. It is designed for scenarios where developers want granular control over retrieved information, such as powering custom search, analytics, or retrieval-augmented generation (RAG) pipelines.
166
+
167
+ The Retrieve API operates through two main pipelines:
168
+ - **Certified Answers**: provide verified, high-confidence answers.
169
+ - **Chunk Retrieval**: retrieves fine-grained, contextually relevant content snippets.
170
+
171
+ Responses for both chunks and certified answers include relevance scores and metadata. By leveraging the Retrieve API, organizations can build tailored experiences while retaining confidence in the source material.
172
+
159
173
 
160
174
  :param q: The search query string. The string must be escaped as required by the URL syntax rules.
161
175
  :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.
@@ -16,7 +16,7 @@ from typing import Callable, Dict, Optional, Tuple, Union
16
16
 
17
17
 
18
18
  SERVERS = [
19
- "https://${API_DOMAIN}/knowledge/portalmgr/v4",
19
+ "https://api.aidev.egain.cloud/knowledge/portalmgr/v4",
20
20
  # Production Server
21
21
  ]
22
22
  """Contains the list of servers available to the SDK"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: egain-api-python
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -25,7 +25,8 @@ Developer-friendly & type-safe Python SDK specifically catered to leverage *egai
25
25
  <!-- Start Summary [summary] -->
26
26
  ## Summary
27
27
 
28
- Knowledge Portal Manager APIs: ### License
28
+ Knowledge Portal Manager APIs:
29
+ ### License
29
30
  The following licenses are required to use the Knowledge Access APIs:
30
31
  * If the user is an agent, then the *Knowledge + AI* license is required.
31
32
  * If the user is a customer, the *Self-Service* and *Advanced Self-Service* licenses must be available.
@@ -598,7 +599,7 @@ import os
598
599
 
599
600
 
600
601
  with Egain(
601
- server_url="https://${API_DOMAIN}/knowledge/portalmgr/v4",
602
+ server_url="https://api.aidev.egain.cloud/knowledge/portalmgr/v4",
602
603
  access_token=os.getenv("EGAIN_ACCESS_TOKEN", ""),
603
604
  ) as egain:
604
605
 
@@ -641,7 +642,7 @@ with Egain(
641
642
  ],
642
643
  }, channel={
643
644
  "name": "Eight Bank Website",
644
- }, server_url="https://${API_DOMAIN}/core/aiservices/v4")
645
+ }, server_url="https://api.aidev.egain.cloud/core/aiservices/v4")
645
646
 
646
647
  # Handle response
647
648
  print(res)
@@ -1,5 +1,5 @@
1
1
  egain_api_python/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
2
- egain_api_python/_version.py,sha256=lKeih1xGI8Bndv_DX1G13yk5WvvLoSCWaAtuPU3pjts,474
2
+ egain_api_python/_version.py,sha256=zAkqg0Tfih-_65oF12ZHWFRktseWO-9nNyoYfTUkzF8,474
3
3
  egain_api_python/aiservices.py,sha256=vFG7gOYnOknIMJvxgzD2dUFFqtlsD2WZoLrrb-YpbKM,787
4
4
  egain_api_python/answers.py,sha256=SjgG4GQNR3cZLXae0CXEp23FgKun0XrLFO-ZYl0wtAc,12769
5
5
  egain_api_python/articlelists.py,sha256=j29Fvkfjuq9OZbmMnlZm1WPkdz2eu2zkdvxd8JULzz8,23630
@@ -24,9 +24,9 @@ egain_api_python/portal_topic.py,sha256=qAWWdS-8QIjk0eZz8H41NrhLDh2zBqRaktCGSWRF
24
24
  egain_api_python/portal_userdetails.py,sha256=2GX9Rcx3lsLCnKzJhcnLTblXucmpnDXsN1hQRBg9MBA,8727
25
25
  egain_api_python/portal_userprofile.py,sha256=Besu9eXLochrHKQDIvecDKPCkZzKK6Ks-4J2Kl8disM,18895
26
26
  egain_api_python/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
27
- egain_api_python/retrieve.py,sha256=Z9YN7G-H0-i6JKHVyz1jH0_GRWo62-8rmlCHRucHJqM,12916
27
+ egain_api_python/retrieve.py,sha256=LSGK3MUl3Mrm4EM5DRy-vBqFMC_Q3D7yAu59sxJbEyg,12954
28
28
  egain_api_python/sdk.py,sha256=UdGlQRaLy66ujS2hKtLxwFs4j9chPvkv5dBzjNf4Eg0,8747
29
- egain_api_python/sdkconfiguration.py,sha256=gWqy7D89kM3duqNEA_K3FWgd0AtI1JOQJxh2chvwugk,1627
29
+ egain_api_python/sdkconfiguration.py,sha256=nFhpX1-i5QKAweb124Yd1YYRXh9dU671gDMm0ra6iUo,1635
30
30
  egain_api_python/search.py,sha256=rwdpqvim6S5Z0HNGxe3ln4LHk1KqomTm8qNEWGFBnGE,11881
31
31
  egain_api_python/usermilestones.py,sha256=44zrX8cpDipRS9nl3bF4YIt-o85yYzUBNGlj2dEd1fc,9762
32
32
  egain_api_python/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
@@ -49,7 +49,7 @@ egain_api_python/models/action.py,sha256=hauC8RWqyEO2S93V6znUBWBufstlX0LCzPRdWwr
49
49
  egain_api_python/models/actionsearch.py,sha256=xqidx2iPiD70RgcKPWQtaQHZnDM7ZuC4D-1uk8i0dXo,3267
50
50
  egain_api_python/models/addasreferenceop.py,sha256=wI6rSFt4a2HZeHiuhk2B4L2it07b_fT9WR_LThte7R4,2175
51
51
  egain_api_python/models/addbookmarkop.py,sha256=LKKQcTe_qJh2Y0PRJhqMLgvt6z_xV7V-6bp4aQE8FQ4,1692
52
- egain_api_python/models/additionalsnippets.py,sha256=Vd98HJCxGPKlYMwp5n3oPoouZaLrUD7FSOxowwONClg,2070
52
+ egain_api_python/models/additionalsnippets.py,sha256=npkbv_ra0_BMqKTFvXp0LANLq69vGSc5BOcNOHk8pk8,2100
53
53
  egain_api_python/models/addtoreplyop.py,sha256=WLak-A5Q7_y9uLQmdqvmdfj6HZFDuqbWXC-E8kOIngo,2167
54
54
  egain_api_python/models/aisearchop.py,sha256=FZ8RGf-igHBNJ8s7GLu4s_S7CD4XW-0NdxLkalvrfzQ,4697
55
55
  egain_api_python/models/aisearchresponse.py,sha256=a_HVDEbWjiiXGz5wqAtJJ77Y5bWaxzhFUx5XtrIuApE,2069
@@ -92,7 +92,7 @@ egain_api_python/models/avertcustomerescalationop.py,sha256=6wMjY5ahT1IqLJwmUyUx
92
92
  egain_api_python/models/bookmark.py,sha256=Y-HaRiAvo7kQb5yT_qCyyKk-9VXueqtjHImZljD_OIc,2749
93
93
  egain_api_python/models/bookmarkresult.py,sha256=HHVUdPU013NCLemAIbNj1qhUtLspr6kt8_2RFU5Vzkk,834
94
94
  egain_api_python/models/bookmarkstatus.py,sha256=wvfFVZoY6DQpYwjwRvnYZCzQaUvebK7xfvkrPHy4ymE,1260
95
- egain_api_python/models/cancelimportop.py,sha256=PcT7AniLXeSVSUEe75WLN5d6q4OTuLvizBp2itiB_t0,1316
95
+ egain_api_python/models/cancelimportop.py,sha256=0-HzRqCaJmFDBTJ9kahk1HLKQqBtyHK5QNr_pndu0oU,1324
96
96
  egain_api_python/models/case.py,sha256=Azg1zioJmjt5LLFJjKJRqAgDmkr0vYSS4oMVD0zFBVQ,5624
97
97
  egain_api_python/models/caseadditionalattributes.py,sha256=4_wjPgiGUUqSO_XLT2REXDQpSOWrUzL7zC_-2Tug-ZE,223
98
98
  egain_api_python/models/caseanswer.py,sha256=I7ZB3s1qMpX1eN2RQqP2mZJCACl_nrGNl8jJu5NzRag,534
@@ -126,8 +126,8 @@ egain_api_python/models/createbookmark.py,sha256=U686RXibEGsX8cYqQYUZdvMYkwC1QPI
126
126
  egain_api_python/models/createdby.py,sha256=6F-kVbJpfYb6vu9DVGjFBvC5OHV1I5JChhJWthsThaA,1329
127
127
  egain_api_python/models/createfederatedsearchevent.py,sha256=-t_nM6ozW5TDexX7jPd0pOP8FSDfLkpt1NLr4SLCtyA,2312
128
128
  egain_api_python/models/createfederatedsearchresulteventop.py,sha256=DSzNOhWkbuVLROqQoQ2cd6jPwykx1CrBeH2XTLgyokQ,1835
129
- egain_api_python/models/createimportjobop.py,sha256=XEVg8FdUInA4VTUq-YehQl5LJFs3NlXztYRZJ8fKqz4,502
130
- egain_api_python/models/createimportvalidationjobop.py,sha256=mV3Zm7y2VPozF0RB8PKq4lfOByH5So0TcuH9jZ7W7EA,533
129
+ egain_api_python/models/createimportjobop.py,sha256=xJGxNyUsAcm2rZeZWdKoBsQ7Fr9cvrRebNHU1QWZa2Y,510
130
+ egain_api_python/models/createimportvalidationjobop.py,sha256=tIGfjLKitdNJR5IakH15lPVW1ahNFTV0HUVqoUAY_WU,541
131
131
  egain_api_python/models/createquickpick.py,sha256=ttgZ8BEiXAxUp-DvG2EujSW7Fnmm8ToUVn06s_S7n3Q,1118
132
132
  egain_api_python/models/createquickpickop.py,sha256=_Gpuk2tfaOV91WrVRs-574ah0WllvnPLZGAR2c_7rOU,2528
133
133
  egain_api_python/models/createsearchresulteventforconnectors.py,sha256=jdMjSQ9kvIIGnG0dTPURjPhnj48YJLD1JqqE6HmwwYo,2045
@@ -174,14 +174,14 @@ egain_api_python/models/getarticlepersonalizationop.py,sha256=mNirdQnZoFVZpxpmaW
174
174
  egain_api_python/models/getarticleratingsop.py,sha256=O6rF8pKPFK08ToL3Ib3Qx4zzw4huHRFw0kBhAN7T4Ds,3587
175
175
  egain_api_python/models/getarticlesintopicop.py,sha256=u3fcw9Y8LLkUulVzJPWL-jhMP4k6ND7OfpFEEaCw4Cs,8949
176
176
  egain_api_python/models/getattachmentbyidinportalop.py,sha256=OUzIdSanWoDzNGwdGPcjRSKlOvTccE4zZGJfce-xxEk,2728
177
- egain_api_python/models/getbestanswerop.py,sha256=TDDTRYVjc5y7mGxPVHq4qCrZ8gNhqUcIw01-HK1nW98,3627
177
+ egain_api_python/models/getbestanswerop.py,sha256=2qA0hk473drr6ndO6s_FLNIETG0P0tVGnFYr5guhNsI,3635
178
178
  egain_api_python/models/getbookmarkop.py,sha256=GBAVyKHZqqJDgazWDhhsmZ71JQX-leW9mqRpXv7KpKE,1399
179
179
  egain_api_python/models/getcasebasereleasebyidop.py,sha256=CT3ukkOsJF_TZkr6qbtTxotzGMXnEbmezuRAAUYottY,2923
180
180
  egain_api_python/models/getcasebyidop.py,sha256=_FqZFbM1lke2943ovzJ62aTUZ8d2PJknFKRoOqYrGb8,3452
181
181
  egain_api_python/models/getchildtopicsop.py,sha256=F4COc4NpeluAtB0HpxhVn3VT5hpxMYY1ZOmbv8dBD10,7248
182
182
  egain_api_python/models/getclusterbycasebasereleaseidop.py,sha256=iExPuVv2xkJG__naVhY3OPZ8PpYWzJVaQixYiU-iFm4,3561
183
- egain_api_python/models/gethealthop.py,sha256=uLa_vSrYIUcrdPpWlg1Iua-owOqIVPA2PoGjqVkY6_I,6880
184
- egain_api_python/models/getimportstatusop.py,sha256=0ChgRps6kziXGDnPTxhEjscvjgC2eUzudLfr7d0Z490,1326
183
+ egain_api_python/models/gethealthop.py,sha256=_zP30MDfax3hpkxQSxYMX8-m6ip3gMXiHOJwRECa8aw,6888
184
+ egain_api_python/models/getimportstatusop.py,sha256=Nx479ICJTFROJpZysl6OIxbzHX1aUFcmbw6IN8kfkSs,1334
185
185
  egain_api_python/models/getmyportalsop.py,sha256=FBvOKn5otDldltDwKy_zxjqLpeFOrRcSkYX56Qn9rMo,4535
186
186
  egain_api_python/models/getmysubscriptionop.py,sha256=_WddJ5lnn6K4jETDHm7JkmpHEDGYaOv2LEBJJwq0Iwk,6280
187
187
  egain_api_python/models/getpendingcompliancearticlesop.py,sha256=4A28Guv0_Y1yPnMBtfktca8HZTpEdizU112QMGyMSj4,6165
@@ -240,11 +240,11 @@ egain_api_python/models/quickpickrating.py,sha256=OwZU3xsJzPYLAtcJJuvHMkZCO8NQF0
240
240
  egain_api_python/models/quickpickresult.py,sha256=YH0Ml5gq3yJvWOoDBFAW1XNPEomyHJXTuPLkv40tb-I,1037
241
241
  egain_api_python/models/quickpickresults.py,sha256=kUHHWZjFgmwsNEox9ehGsgU5wcapm3qD4uz0kAlWeio,865
242
242
  egain_api_python/models/ratearticleop.py,sha256=QQiRo2K35ctT4kjBS3ri6ImepxhIVagCanaREYP1zWg,3224
243
- egain_api_python/models/referenceresponse.py,sha256=I2x3FZtu6uLDJgpdT9HlFppsq5lG1UF1hPnSLpr_UIo,2149
243
+ egain_api_python/models/referenceresponse.py,sha256=G06WC9VVURzgw9QVS15E7r0B7ykjtB4ZMiPu_U-TGt8,2147
244
244
  egain_api_python/models/rejectghsolutionop.py,sha256=e24KKMYYRRKUeXmfQmuaVL0VqLEW0k6ntjdGoV5ZTXE,2040
245
245
  egain_api_python/models/relatedquestions.py,sha256=-mrpY6GvMaywlW5xejN3L7CT36hGLsxfy6jqIsxtNH0,879
246
246
  egain_api_python/models/restorequickpickop.py,sha256=N9fl3zebetUpOa3JEbzLnRcArqjXtTx_QPANUYXsgSU,2791
247
- egain_api_python/models/retrievechunksop.py,sha256=T6QDYHccK8FxdSC8MIwBJi7CDDsD6OlnODMxvJYZkoc,3636
247
+ egain_api_python/models/retrievechunksop.py,sha256=EnQ-Cr_EAGMGKqTlMrer3Ub8L7wdPkslIMysSsdu8mA,3644
248
248
  egain_api_python/models/retrieverequest.py,sha256=A9mhXNdX6_tp4LndHhlIaINBJz9HQSye37DepjJSw0o,1894
249
249
  egain_api_python/models/retrieveresponse.py,sha256=HikIPFPE7tqmlTPhMRHi4j70xDdawogszzXduAFJg6Y,4190
250
250
  egain_api_python/models/role.py,sha256=aEQXpao0y3T5WbKAY04XXtbUIrNOtDsiCeRdQ9lsDbA,597
@@ -259,7 +259,7 @@ egain_api_python/models/schemas_tags.py,sha256=Z1ZAiHqxbDpbxh_p7Jh-6mYPEir9riBpT
259
259
  egain_api_python/models/schemas_wserrorcommon.py,sha256=R9OG3XOhiyet3uibAoDNGZPeq2rnPcHL0Nl0Y4OA8R0,424
260
260
  egain_api_python/models/searchfilterattribute.py,sha256=Ih4EgldWKl-QPE9VRPspiDoaMcGuuzgqMgTC44ekp4Y,2512
261
261
  egain_api_python/models/searchpriortoescalationop.py,sha256=sAiAszG3ywEqQ23Xm5US4OKSlSDraisRlUWNSS_vOyA,4807
262
- egain_api_python/models/searchresult.py,sha256=dzzwpooqj2MvAmxpdx8oguIs4DsEU-BhtP2YyXkQ_ng,3333
262
+ egain_api_python/models/searchresult.py,sha256=y-sysMGzKwzC3TR0wMeFqtJ5nryc15ebtzYvxqc1yRs,3331
263
263
  egain_api_python/models/searchsuggestionop.py,sha256=4tluMg5_fDxMXyNH1Oi4UKo5p3u4kcv2LpP-SA4iK-w,3792
264
264
  egain_api_python/models/security.py,sha256=UqCkttTO29yuwhatMKhQEeEjjbD1FtXL_SAQTrDGsao,710
265
265
  egain_api_python/models/selectuserprofileop.py,sha256=iQjtJlat8byVpk7YsE4fTfgLShwbNYaVov4p4JtV2wE,1703
@@ -323,8 +323,8 @@ egain_api_python/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7
323
323
  egain_api_python/utils/unmarshal_json_response.py,sha256=nZEaLmlsWi3z3q8Qp7ZM2jgxizRcfOBA7l8GPJuv1SY,592
324
324
  egain_api_python/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
325
325
  egain_api_python/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
326
- egain_api_python-0.1.4.dist-info/licenses/LICENSE,sha256=ICtvDBOvFUvPgUEGtnyxAarCTU0IASpQZdnv8QMnHlI,1062
327
- egain_api_python-0.1.4.dist-info/METADATA,sha256=w7sEB6YbfobEjCv8K-J1K9mkelLeD9P5z0udz1wDzF0,33231
328
- egain_api_python-0.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
329
- egain_api_python-0.1.4.dist-info/top_level.txt,sha256=SjFjGp6Ocutn5yM4tqZHMJwpuZxFzT6qiIcELk251PA,17
330
- egain_api_python-0.1.4.dist-info/RECORD,,
326
+ egain_api_python-0.1.6.dist-info/licenses/LICENSE,sha256=ICtvDBOvFUvPgUEGtnyxAarCTU0IASpQZdnv8QMnHlI,1062
327
+ egain_api_python-0.1.6.dist-info/METADATA,sha256=JAFp9FjXt9myVNpLimY4bKkr0uBbJI3nU1NumQSSYVM,33248
328
+ egain_api_python-0.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
329
+ egain_api_python-0.1.6.dist-info/top_level.txt,sha256=SjFjGp6Ocutn5yM4tqZHMJwpuZxFzT6qiIcELk251PA,17
330
+ egain_api_python-0.1.6.dist-info/RECORD,,