graphlit-client 1.0.20250502001__py3-none-any.whl → 1.0.20250503001__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.
graphlit_api/__init__.py CHANGED
@@ -1771,18 +1771,24 @@ from .publish_contents import (
1771
1771
  from .publish_conversation import (
1772
1772
  PublishConversation,
1773
1773
  PublishConversationPublishConversation,
1774
- PublishConversationPublishConversationAudio,
1775
- PublishConversationPublishConversationDocument,
1776
- PublishConversationPublishConversationImage,
1777
- PublishConversationPublishConversationVideo,
1774
+ PublishConversationPublishConversationContents,
1775
+ PublishConversationPublishConversationContentsAudio,
1776
+ PublishConversationPublishConversationContentsDocument,
1777
+ PublishConversationPublishConversationContentsImage,
1778
+ PublishConversationPublishConversationContentsVideo,
1779
+ PublishConversationPublishConversationDetails,
1780
+ PublishConversationPublishConversationDetailsContents,
1778
1781
  )
1779
1782
  from .publish_text import (
1780
1783
  PublishText,
1781
1784
  PublishTextPublishText,
1782
- PublishTextPublishTextAudio,
1783
- PublishTextPublishTextDocument,
1784
- PublishTextPublishTextImage,
1785
- PublishTextPublishTextVideo,
1785
+ PublishTextPublishTextContents,
1786
+ PublishTextPublishTextContentsAudio,
1787
+ PublishTextPublishTextContentsDocument,
1788
+ PublishTextPublishTextContentsImage,
1789
+ PublishTextPublishTextContentsVideo,
1790
+ PublishTextPublishTextDetails,
1791
+ PublishTextPublishTextDetailsContents,
1786
1792
  )
1787
1793
  from .query_alerts import (
1788
1794
  QueryAlerts,
@@ -3983,16 +3989,22 @@ __all__ = [
3983
3989
  "PublishContentsPublishContentsDetailsContents",
3984
3990
  "PublishConversation",
3985
3991
  "PublishConversationPublishConversation",
3986
- "PublishConversationPublishConversationAudio",
3987
- "PublishConversationPublishConversationDocument",
3988
- "PublishConversationPublishConversationImage",
3989
- "PublishConversationPublishConversationVideo",
3992
+ "PublishConversationPublishConversationContents",
3993
+ "PublishConversationPublishConversationContentsAudio",
3994
+ "PublishConversationPublishConversationContentsDocument",
3995
+ "PublishConversationPublishConversationContentsImage",
3996
+ "PublishConversationPublishConversationContentsVideo",
3997
+ "PublishConversationPublishConversationDetails",
3998
+ "PublishConversationPublishConversationDetailsContents",
3990
3999
  "PublishText",
3991
4000
  "PublishTextPublishText",
3992
- "PublishTextPublishTextAudio",
3993
- "PublishTextPublishTextDocument",
3994
- "PublishTextPublishTextImage",
3995
- "PublishTextPublishTextVideo",
4001
+ "PublishTextPublishTextContents",
4002
+ "PublishTextPublishTextContentsAudio",
4003
+ "PublishTextPublishTextContentsDocument",
4004
+ "PublishTextPublishTextContentsImage",
4005
+ "PublishTextPublishTextContentsVideo",
4006
+ "PublishTextPublishTextDetails",
4007
+ "PublishTextPublishTextDetailsContents",
3996
4008
  "QUERY_ALERTS_GQL",
3997
4009
  "QUERY_CATEGORIES_GQL",
3998
4010
  "QUERY_COLLECTIONS_GQL",
@@ -15,7 +15,7 @@ class GraphQLClientHttpError(GraphQLClientError):
15
15
  self.response = response
16
16
 
17
17
  def __str__(self) -> str:
18
- return f"HTTP status code: {self.status_code}"
18
+ return f"HTTP status code: {self.status_code}\n{self.response.text}"
19
19
 
20
20
 
21
21
  class GraphQLClientInvalidResponseError(GraphQLClientError):
@@ -1979,101 +1979,115 @@ mutation PublishText($text: String!, $textType: TextTypes, $connector: ContentPu
1979
1979
  name: $name
1980
1980
  workflow: $workflow
1981
1981
  ) {
1982
- id
1983
- name
1984
- state
1985
- originalDate
1986
- identifier
1987
- markdown
1988
- uri
1989
- type
1990
- fileType
1991
- mimeType
1992
- format
1993
- formatName
1994
- fileExtension
1995
- fileName
1996
- fileSize
1997
- masterUri
1998
- imageUri
1999
- textUri
2000
- audioUri
2001
- transcriptUri
2002
- summary
2003
- customSummary
2004
- keywords
2005
- bullets
2006
- headlines
2007
- posts
2008
- chapters
2009
- questions
2010
- video {
2011
- width
2012
- height
2013
- duration
2014
- make
2015
- model
2016
- software
2017
- title
2018
- description
2019
- keywords
2020
- author
2021
- }
2022
- audio {
2023
- keywords
2024
- author
2025
- series
2026
- episode
2027
- episodeType
2028
- season
2029
- publisher
2030
- copyright
2031
- genre
2032
- title
2033
- description
2034
- bitrate
2035
- channels
2036
- sampleRate
2037
- bitsPerSample
2038
- duration
2039
- }
2040
- image {
2041
- width
2042
- height
2043
- resolutionX
2044
- resolutionY
2045
- bitsPerComponent
2046
- components
2047
- projectionType
2048
- orientation
2049
- description
2050
- make
2051
- model
2052
- software
2053
- lens
2054
- focalLength
2055
- exposureTime
2056
- fNumber
2057
- iso
2058
- heading
2059
- pitch
2060
- }
2061
- document {
2062
- title
2063
- subject
1982
+ contents {
1983
+ id
1984
+ name
1985
+ state
1986
+ originalDate
1987
+ identifier
1988
+ markdown
1989
+ uri
1990
+ type
1991
+ fileType
1992
+ mimeType
1993
+ format
1994
+ formatName
1995
+ fileExtension
1996
+ fileName
1997
+ fileSize
1998
+ masterUri
1999
+ imageUri
2000
+ textUri
2001
+ audioUri
2002
+ transcriptUri
2064
2003
  summary
2065
- author
2066
- publisher
2067
- description
2004
+ customSummary
2068
2005
  keywords
2069
- pageCount
2070
- worksheetCount
2071
- slideCount
2072
- wordCount
2073
- lineCount
2074
- paragraphCount
2075
- isEncrypted
2076
- hasDigitalSignature
2006
+ bullets
2007
+ headlines
2008
+ posts
2009
+ chapters
2010
+ questions
2011
+ video {
2012
+ width
2013
+ height
2014
+ duration
2015
+ make
2016
+ model
2017
+ software
2018
+ title
2019
+ description
2020
+ keywords
2021
+ author
2022
+ }
2023
+ audio {
2024
+ keywords
2025
+ author
2026
+ series
2027
+ episode
2028
+ episodeType
2029
+ season
2030
+ publisher
2031
+ copyright
2032
+ genre
2033
+ title
2034
+ description
2035
+ bitrate
2036
+ channels
2037
+ sampleRate
2038
+ bitsPerSample
2039
+ duration
2040
+ }
2041
+ image {
2042
+ width
2043
+ height
2044
+ resolutionX
2045
+ resolutionY
2046
+ bitsPerComponent
2047
+ components
2048
+ projectionType
2049
+ orientation
2050
+ description
2051
+ make
2052
+ model
2053
+ software
2054
+ lens
2055
+ focalLength
2056
+ exposureTime
2057
+ fNumber
2058
+ iso
2059
+ heading
2060
+ pitch
2061
+ }
2062
+ document {
2063
+ title
2064
+ subject
2065
+ summary
2066
+ author
2067
+ publisher
2068
+ description
2069
+ keywords
2070
+ pageCount
2071
+ worksheetCount
2072
+ slideCount
2073
+ wordCount
2074
+ lineCount
2075
+ paragraphCount
2076
+ isEncrypted
2077
+ hasDigitalSignature
2078
+ }
2079
+ }
2080
+ details {
2081
+ contents {
2082
+ id
2083
+ }
2084
+ summaries
2085
+ text
2086
+ textType
2087
+ summarySpecification
2088
+ publishSpecification
2089
+ summaryTime
2090
+ publishTime
2077
2091
  }
2078
2092
  }
2079
2093
  }
@@ -4461,101 +4475,115 @@ mutation PublishConversation($id: ID!, $connector: ContentPublishingConnectorInp
4461
4475
  workflow: $workflow
4462
4476
  correlationId: $correlationId
4463
4477
  ) {
4464
- id
4465
- name
4466
- state
4467
- originalDate
4468
- identifier
4469
- markdown
4470
- uri
4471
- type
4472
- fileType
4473
- mimeType
4474
- format
4475
- formatName
4476
- fileExtension
4477
- fileName
4478
- fileSize
4479
- masterUri
4480
- imageUri
4481
- textUri
4482
- audioUri
4483
- transcriptUri
4484
- summary
4485
- customSummary
4486
- keywords
4487
- bullets
4488
- headlines
4489
- posts
4490
- chapters
4491
- questions
4492
- video {
4493
- width
4494
- height
4495
- duration
4496
- make
4497
- model
4498
- software
4499
- title
4500
- description
4501
- keywords
4502
- author
4503
- }
4504
- audio {
4505
- keywords
4506
- author
4507
- series
4508
- episode
4509
- episodeType
4510
- season
4511
- publisher
4512
- copyright
4513
- genre
4514
- title
4515
- description
4516
- bitrate
4517
- channels
4518
- sampleRate
4519
- bitsPerSample
4520
- duration
4521
- }
4522
- image {
4523
- width
4524
- height
4525
- resolutionX
4526
- resolutionY
4527
- bitsPerComponent
4528
- components
4529
- projectionType
4530
- orientation
4531
- description
4532
- make
4533
- model
4534
- software
4535
- lens
4536
- focalLength
4537
- exposureTime
4538
- fNumber
4539
- iso
4540
- heading
4541
- pitch
4542
- }
4543
- document {
4544
- title
4545
- subject
4478
+ contents {
4479
+ id
4480
+ name
4481
+ state
4482
+ originalDate
4483
+ identifier
4484
+ markdown
4485
+ uri
4486
+ type
4487
+ fileType
4488
+ mimeType
4489
+ format
4490
+ formatName
4491
+ fileExtension
4492
+ fileName
4493
+ fileSize
4494
+ masterUri
4495
+ imageUri
4496
+ textUri
4497
+ audioUri
4498
+ transcriptUri
4546
4499
  summary
4547
- author
4548
- publisher
4549
- description
4500
+ customSummary
4550
4501
  keywords
4551
- pageCount
4552
- worksheetCount
4553
- slideCount
4554
- wordCount
4555
- lineCount
4556
- paragraphCount
4557
- isEncrypted
4558
- hasDigitalSignature
4502
+ bullets
4503
+ headlines
4504
+ posts
4505
+ chapters
4506
+ questions
4507
+ video {
4508
+ width
4509
+ height
4510
+ duration
4511
+ make
4512
+ model
4513
+ software
4514
+ title
4515
+ description
4516
+ keywords
4517
+ author
4518
+ }
4519
+ audio {
4520
+ keywords
4521
+ author
4522
+ series
4523
+ episode
4524
+ episodeType
4525
+ season
4526
+ publisher
4527
+ copyright
4528
+ genre
4529
+ title
4530
+ description
4531
+ bitrate
4532
+ channels
4533
+ sampleRate
4534
+ bitsPerSample
4535
+ duration
4536
+ }
4537
+ image {
4538
+ width
4539
+ height
4540
+ resolutionX
4541
+ resolutionY
4542
+ bitsPerComponent
4543
+ components
4544
+ projectionType
4545
+ orientation
4546
+ description
4547
+ make
4548
+ model
4549
+ software
4550
+ lens
4551
+ focalLength
4552
+ exposureTime
4553
+ fNumber
4554
+ iso
4555
+ heading
4556
+ pitch
4557
+ }
4558
+ document {
4559
+ title
4560
+ subject
4561
+ summary
4562
+ author
4563
+ publisher
4564
+ description
4565
+ keywords
4566
+ pageCount
4567
+ worksheetCount
4568
+ slideCount
4569
+ wordCount
4570
+ lineCount
4571
+ paragraphCount
4572
+ isEncrypted
4573
+ hasDigitalSignature
4574
+ }
4575
+ }
4576
+ details {
4577
+ contents {
4578
+ id
4579
+ }
4580
+ summaries
4581
+ text
4582
+ textType
4583
+ summarySpecification
4584
+ publishSpecification
4585
+ summaryTime
4586
+ publishTime
4559
4587
  }
4560
4588
  }
4561
4589
  }
@@ -12,6 +12,7 @@ from .enums import (
12
12
  FileTypes,
13
13
  ImageProjectionTypes,
14
14
  OrientationTypes,
15
+ TextTypes,
15
16
  )
16
17
 
17
18
 
@@ -22,6 +23,11 @@ class PublishConversation(BaseModel):
22
23
 
23
24
 
24
25
  class PublishConversationPublishConversation(BaseModel):
26
+ contents: Optional[List[Optional["PublishConversationPublishConversationContents"]]]
27
+ details: Optional["PublishConversationPublishConversationDetails"]
28
+
29
+
30
+ class PublishConversationPublishConversationContents(BaseModel):
25
31
  id: str
26
32
  name: str
27
33
  state: EntityState
@@ -50,13 +56,13 @@ class PublishConversationPublishConversation(BaseModel):
50
56
  posts: Optional[List[str]]
51
57
  chapters: Optional[List[str]]
52
58
  questions: Optional[List[str]]
53
- video: Optional["PublishConversationPublishConversationVideo"]
54
- audio: Optional["PublishConversationPublishConversationAudio"]
55
- image: Optional["PublishConversationPublishConversationImage"]
56
- document: Optional["PublishConversationPublishConversationDocument"]
59
+ video: Optional["PublishConversationPublishConversationContentsVideo"]
60
+ audio: Optional["PublishConversationPublishConversationContentsAudio"]
61
+ image: Optional["PublishConversationPublishConversationContentsImage"]
62
+ document: Optional["PublishConversationPublishConversationContentsDocument"]
57
63
 
58
64
 
59
- class PublishConversationPublishConversationVideo(BaseModel):
65
+ class PublishConversationPublishConversationContentsVideo(BaseModel):
60
66
  width: Optional[int]
61
67
  height: Optional[int]
62
68
  duration: Optional[Any]
@@ -69,7 +75,7 @@ class PublishConversationPublishConversationVideo(BaseModel):
69
75
  author: Optional[str]
70
76
 
71
77
 
72
- class PublishConversationPublishConversationAudio(BaseModel):
78
+ class PublishConversationPublishConversationContentsAudio(BaseModel):
73
79
  keywords: Optional[List[Optional[str]]]
74
80
  author: Optional[str]
75
81
  series: Optional[str]
@@ -88,7 +94,7 @@ class PublishConversationPublishConversationAudio(BaseModel):
88
94
  duration: Optional[Any]
89
95
 
90
96
 
91
- class PublishConversationPublishConversationImage(BaseModel):
97
+ class PublishConversationPublishConversationContentsImage(BaseModel):
92
98
  width: Optional[int]
93
99
  height: Optional[int]
94
100
  resolution_x: Optional[int] = Field(alias="resolutionX")
@@ -110,7 +116,7 @@ class PublishConversationPublishConversationImage(BaseModel):
110
116
  pitch: Optional[float]
111
117
 
112
118
 
113
- class PublishConversationPublishConversationDocument(BaseModel):
119
+ class PublishConversationPublishConversationContentsDocument(BaseModel):
114
120
  title: Optional[str]
115
121
  subject: Optional[str]
116
122
  summary: Optional[str]
@@ -128,5 +134,22 @@ class PublishConversationPublishConversationDocument(BaseModel):
128
134
  has_digital_signature: Optional[bool] = Field(alias="hasDigitalSignature")
129
135
 
130
136
 
137
+ class PublishConversationPublishConversationDetails(BaseModel):
138
+ contents: Optional[List["PublishConversationPublishConversationDetailsContents"]]
139
+ summaries: Optional[List[str]]
140
+ text: Optional[str]
141
+ text_type: Optional[TextTypes] = Field(alias="textType")
142
+ summary_specification: Optional[str] = Field(alias="summarySpecification")
143
+ publish_specification: Optional[str] = Field(alias="publishSpecification")
144
+ summary_time: Optional[Any] = Field(alias="summaryTime")
145
+ publish_time: Optional[Any] = Field(alias="publishTime")
146
+
147
+
148
+ class PublishConversationPublishConversationDetailsContents(BaseModel):
149
+ id: str
150
+
151
+
131
152
  PublishConversation.model_rebuild()
132
153
  PublishConversationPublishConversation.model_rebuild()
154
+ PublishConversationPublishConversationContents.model_rebuild()
155
+ PublishConversationPublishConversationDetails.model_rebuild()
@@ -12,6 +12,7 @@ from .enums import (
12
12
  FileTypes,
13
13
  ImageProjectionTypes,
14
14
  OrientationTypes,
15
+ TextTypes,
15
16
  )
16
17
 
17
18
 
@@ -20,6 +21,11 @@ class PublishText(BaseModel):
20
21
 
21
22
 
22
23
  class PublishTextPublishText(BaseModel):
24
+ contents: Optional[List[Optional["PublishTextPublishTextContents"]]]
25
+ details: Optional["PublishTextPublishTextDetails"]
26
+
27
+
28
+ class PublishTextPublishTextContents(BaseModel):
23
29
  id: str
24
30
  name: str
25
31
  state: EntityState
@@ -48,13 +54,13 @@ class PublishTextPublishText(BaseModel):
48
54
  posts: Optional[List[str]]
49
55
  chapters: Optional[List[str]]
50
56
  questions: Optional[List[str]]
51
- video: Optional["PublishTextPublishTextVideo"]
52
- audio: Optional["PublishTextPublishTextAudio"]
53
- image: Optional["PublishTextPublishTextImage"]
54
- document: Optional["PublishTextPublishTextDocument"]
57
+ video: Optional["PublishTextPublishTextContentsVideo"]
58
+ audio: Optional["PublishTextPublishTextContentsAudio"]
59
+ image: Optional["PublishTextPublishTextContentsImage"]
60
+ document: Optional["PublishTextPublishTextContentsDocument"]
55
61
 
56
62
 
57
- class PublishTextPublishTextVideo(BaseModel):
63
+ class PublishTextPublishTextContentsVideo(BaseModel):
58
64
  width: Optional[int]
59
65
  height: Optional[int]
60
66
  duration: Optional[Any]
@@ -67,7 +73,7 @@ class PublishTextPublishTextVideo(BaseModel):
67
73
  author: Optional[str]
68
74
 
69
75
 
70
- class PublishTextPublishTextAudio(BaseModel):
76
+ class PublishTextPublishTextContentsAudio(BaseModel):
71
77
  keywords: Optional[List[Optional[str]]]
72
78
  author: Optional[str]
73
79
  series: Optional[str]
@@ -86,7 +92,7 @@ class PublishTextPublishTextAudio(BaseModel):
86
92
  duration: Optional[Any]
87
93
 
88
94
 
89
- class PublishTextPublishTextImage(BaseModel):
95
+ class PublishTextPublishTextContentsImage(BaseModel):
90
96
  width: Optional[int]
91
97
  height: Optional[int]
92
98
  resolution_x: Optional[int] = Field(alias="resolutionX")
@@ -108,7 +114,7 @@ class PublishTextPublishTextImage(BaseModel):
108
114
  pitch: Optional[float]
109
115
 
110
116
 
111
- class PublishTextPublishTextDocument(BaseModel):
117
+ class PublishTextPublishTextContentsDocument(BaseModel):
112
118
  title: Optional[str]
113
119
  subject: Optional[str]
114
120
  summary: Optional[str]
@@ -126,5 +132,22 @@ class PublishTextPublishTextDocument(BaseModel):
126
132
  has_digital_signature: Optional[bool] = Field(alias="hasDigitalSignature")
127
133
 
128
134
 
135
+ class PublishTextPublishTextDetails(BaseModel):
136
+ contents: Optional[List["PublishTextPublishTextDetailsContents"]]
137
+ summaries: Optional[List[str]]
138
+ text: Optional[str]
139
+ text_type: Optional[TextTypes] = Field(alias="textType")
140
+ summary_specification: Optional[str] = Field(alias="summarySpecification")
141
+ publish_specification: Optional[str] = Field(alias="publishSpecification")
142
+ summary_time: Optional[Any] = Field(alias="summaryTime")
143
+ publish_time: Optional[Any] = Field(alias="publishTime")
144
+
145
+
146
+ class PublishTextPublishTextDetailsContents(BaseModel):
147
+ id: str
148
+
149
+
129
150
  PublishText.model_rebuild()
130
151
  PublishTextPublishText.model_rebuild()
152
+ PublishTextPublishTextContents.model_rebuild()
153
+ PublishTextPublishTextDetails.model_rebuild()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphlit-client
3
- Version: 1.0.20250502001
3
+ Version: 1.0.20250503001
4
4
  Summary: Graphlit API Python Client
5
5
  Home-page: https://github.com/graphlit/graphlit-client-python
6
6
  Author: Unstruk Data Inc.
@@ -1,6 +1,6 @@
1
1
  graphlit/__init__.py,sha256=4AyigTlFQWP40lnaaQ1H1iRT_B1hIXW9bgPanbwmTvs,32
2
2
  graphlit/graphlit.py,sha256=56G5Am72og5QHIjEh9cy4vkfos7YVpGvzRuIPhPbCEU,1949
3
- graphlit_api/__init__.py,sha256=II-O7jVkjjjOOOtmgh2sIB8iECeV8jPF0aunLzgFYwI,189714
3
+ graphlit_api/__init__.py,sha256=WZMl_K7W0l7oEqaQuL6PREXpykqzQiZCztcSHmNSdrA,190406
4
4
  graphlit_api/add_contents_to_collections.py,sha256=K7tNpLn8-lRVaVT39iKr-VtCKRWVONyL_h6cC0L606Y,888
5
5
  graphlit_api/ask_graphlit.py,sha256=F-mgXMfUqGYCOP4WFQXmZDp5RgK7Cej-nA1RkmRvp7o,6301
6
6
  graphlit_api/async_base_client.py,sha256=v0KUVwe2_RIQa8Mn7l_yD5McUe7B03vhclJ9SP4XGgw,12578
@@ -158,7 +158,7 @@ graphlit_api/enable_alert.py,sha256=KctjIbnyZDoDynbuD6IR2fHuNHKAtM07VVgKzTL479g,
158
158
  graphlit_api/enable_feed.py,sha256=BhtLlEGV9p8ICodywdN9-sASWSX3w_4c3zYtf-bdaGE,390
159
159
  graphlit_api/enable_user.py,sha256=_0rQnpwVYhBrRcnpfqrKTOiANgOMe-ibUAHmS-XC0qo,390
160
160
  graphlit_api/enums.py,sha256=-NaXt2ArbkKKYdvZgxfJuI5OySbwliY7zKllqppjE54,27562
161
- graphlit_api/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
161
+ graphlit_api/exceptions.py,sha256=s0ECCqA83fhlv5GqIpT-fNFIZ7sRABG23Wj7DcEl4X0,2433
162
162
  graphlit_api/extract_contents.py,sha256=qsSy8UOJuqsUnCcuduaNPyaK2mZk_1noECT0Jgx3zRA,961
163
163
  graphlit_api/extract_text.py,sha256=jfkL6ep5wzXeoelZ5nRwNRT0t7oDCUt1xrigqkMj-7M,887
164
164
  graphlit_api/feed_exists.py,sha256=NlvWhqVaV-coIV_orR-XsaXhG0Gll3bPVS3tPF0zEt0,351
@@ -205,13 +205,13 @@ graphlit_api/is_feed_done.py,sha256=-FQS2vtDMnNW75K_9jR6IUutvpwLmtoS5yY8wD17CaM,
205
205
  graphlit_api/lookup_credits.py,sha256=WsV7fGbg29WWOjPRIaL2bnhISGsb0SqUlQxL7rBfNTo,1464
206
206
  graphlit_api/lookup_usage.py,sha256=D_cbO0KmXDqRYqQIhNwWXNFGjwNLEy2_5aVa-SYgRzw,1711
207
207
  graphlit_api/map_web.py,sha256=2rp4jFD1vDqcQ98mCVTeC0RzPqQxmmcRvHNRl8HJfFA,346
208
- graphlit_api/operations.py,sha256=UwRJPQEOR7WebOJCj0KFwUl_vhbRtwVHF70j4vEzwmk,186614
208
+ graphlit_api/operations.py,sha256=WiKBSmMZL7_qzgjLgtuHonfHBnNGMRxc_Dpt0eToRjY,187416
209
209
  graphlit_api/prompt.py,sha256=4A0P-8hk98sNFNfRovzDBXXCHAGXOs2zThsXY07Q5KI,6015
210
210
  graphlit_api/prompt_conversation.py,sha256=zdVzHhZdF2CFL87_8EUcugWYzSFSWc0nCv4JFjhN7lI,16082
211
211
  graphlit_api/prompt_specifications.py,sha256=z8JQpfCUfgPeiuolLEGY83Pr32VaI2Ng1Wq0pG-gv2w,6902
212
212
  graphlit_api/publish_contents.py,sha256=C1F6g_sSvhW33B3pc2YwFH9KHs_MgQb7nfu7jr5u6XE,5558
213
- graphlit_api/publish_conversation.py,sha256=KdJr0QD9pG6cpvZG7Ej5getOsGy1icLAxPv0d2ZkV10,4657
214
- graphlit_api/publish_text.py,sha256=DSKPRiEgrqkdJ2E_E9GPeEpnlj60lGconC1TlgCaUCQ,4435
213
+ graphlit_api/publish_conversation.py,sha256=efLRrjWKsGKzwP2S5otD_6BbSZzQOQnQYrLo9eq0d2U,5726
214
+ graphlit_api/publish_text.py,sha256=U1O4U7Mg75kK2u26O_uyxd1G3DEmTAMFRnLgubSGVw0,5376
215
215
  graphlit_api/query_alerts.py,sha256=AisS4rRrkkhjoTSw79_t7feCM60w6dXDr0piKW6gW74,8275
216
216
  graphlit_api/query_categories.py,sha256=5AiZlgWRycLmr7-ID-EIoI2Q8ss6C5vGttr_ECKIG-w,636
217
217
  graphlit_api/query_collections.py,sha256=lQoUD4-ZiQYWa2ZeyOqVXokEA9IbkqJhrG56O0p8QVU,1075
@@ -303,8 +303,8 @@ graphlit_api/upsert_label.py,sha256=_bVWrISvyt4G4IcjAKqu8c5P6FDgaODdIGtSToJfNOY,
303
303
  graphlit_api/upsert_specification.py,sha256=23eLTL8OLAYE-j_nhjT5NgaCrSUs9Q40rGW_VhDrDoM,643
304
304
  graphlit_api/upsert_workflow.py,sha256=QL5Gi8jqF4wG9_qReoW8E5X7VsSIsLzgxIY1aAK0ebo,15692
305
305
  graphlit_api/workflow_exists.py,sha256=1XVcqCW_KZ3BwUFx08lwqQdf1ZpJ6Vmi8jBqcrMqYRI,397
306
- graphlit_client-1.0.20250502001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
307
- graphlit_client-1.0.20250502001.dist-info/METADATA,sha256=ItMGRTiNwzaW75OeMJcNv0lxx3XMUDA4I7P5QFCFU64,3408
308
- graphlit_client-1.0.20250502001.dist-info/WHEEL,sha256=7ciDxtlje1X8OhobNuGgi1t-ACdFSelPnSmDPrtlobY,91
309
- graphlit_client-1.0.20250502001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
310
- graphlit_client-1.0.20250502001.dist-info/RECORD,,
306
+ graphlit_client-1.0.20250503001.dist-info/licenses/LICENSE,sha256=ivF8XnUYrNZFQ1wZFMrxWshDb1h7TdSK6Qk8_3WPkhM,1095
307
+ graphlit_client-1.0.20250503001.dist-info/METADATA,sha256=MgTXaNwTatxMsKWo5n3JcmNnwyE456E2r8-pBDYvzOc,3408
308
+ graphlit_client-1.0.20250503001.dist-info/WHEEL,sha256=GHB6lJx2juba1wDgXDNlMTyM13ckjBMKf-OnwgKOCtA,91
309
+ graphlit_client-1.0.20250503001.dist-info/top_level.txt,sha256=HUVfNzJrxWuHS-4M5I7XjLa8-mxYQwfx01A4YKJZSYM,22
310
+ graphlit_client-1.0.20250503001.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.2.0)
2
+ Generator: setuptools (80.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5