graphlit-client 1.0.20240621001 → 1.0.20240704001

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.
@@ -581,6 +581,14 @@ exports.GetContent = (0, graphql_tag_1.default) `
581
581
  textUri
582
582
  audioUri
583
583
  transcriptUri
584
+ summary
585
+ customSummary
586
+ keywords
587
+ bullets
588
+ headlines
589
+ posts
590
+ chapters
591
+ questions
584
592
  video {
585
593
  width
586
594
  height
@@ -954,6 +962,14 @@ exports.QueryContents = (0, graphql_tag_1.default) `
954
962
  textUri
955
963
  audioUri
956
964
  transcriptUri
965
+ summary
966
+ customSummary
967
+ keywords
968
+ bullets
969
+ headlines
970
+ posts
971
+ chapters
972
+ questions
957
973
  video {
958
974
  width
959
975
  height
@@ -1184,6 +1200,14 @@ exports.QueryContentsFacets = (0, graphql_tag_1.default) `
1184
1200
  textUri
1185
1201
  audioUri
1186
1202
  transcriptUri
1203
+ summary
1204
+ customSummary
1205
+ keywords
1206
+ bullets
1207
+ headlines
1208
+ posts
1209
+ chapters
1210
+ questions
1187
1211
  video {
1188
1212
  width
1189
1213
  height
@@ -1553,6 +1577,14 @@ exports.GetConversation = (0, graphql_tag_1.default) `
1553
1577
  textUri
1554
1578
  audioUri
1555
1579
  transcriptUri
1580
+ summary
1581
+ customSummary
1582
+ keywords
1583
+ bullets
1584
+ headlines
1585
+ posts
1586
+ chapters
1587
+ questions
1556
1588
  video {
1557
1589
  width
1558
1590
  height
@@ -1741,6 +1773,14 @@ exports.PromptConversation = (0, graphql_tag_1.default) `
1741
1773
  textUri
1742
1774
  audioUri
1743
1775
  transcriptUri
1776
+ summary
1777
+ customSummary
1778
+ keywords
1779
+ bullets
1780
+ headlines
1781
+ posts
1782
+ chapters
1783
+ questions
1744
1784
  video {
1745
1785
  width
1746
1786
  height
@@ -1923,6 +1963,14 @@ exports.QueryConversations = (0, graphql_tag_1.default) `
1923
1963
  textUri
1924
1964
  audioUri
1925
1965
  transcriptUri
1966
+ summary
1967
+ customSummary
1968
+ keywords
1969
+ bullets
1970
+ headlines
1971
+ posts
1972
+ chapters
1973
+ questions
1926
1974
  video {
1927
1975
  width
1928
1976
  height
@@ -3271,8 +3319,14 @@ exports.QueryCredits = (0, graphql_tag_1.default) `
3271
3319
  }
3272
3320
  `;
3273
3321
  exports.QueryUsage = (0, graphql_tag_1.default) `
3274
- query QueryUsage($startDate: DateTime!, $duration: TimeSpan!) {
3275
- usage(startDate: $startDate, duration: $duration) {
3322
+ query QueryUsage($startDate: DateTime!, $duration: TimeSpan!, $names: [String!], $offset: Int, $limit: Int) {
3323
+ usage(
3324
+ startDate: $startDate
3325
+ duration: $duration
3326
+ names: $names
3327
+ offset: $offset
3328
+ limit: $limit
3329
+ ) {
3276
3330
  id
3277
3331
  correlationId
3278
3332
  date
@@ -3648,6 +3702,14 @@ exports.PromptSpecifications = (0, graphql_tag_1.default) `
3648
3702
  textUri
3649
3703
  audioUri
3650
3704
  transcriptUri
3705
+ summary
3706
+ customSummary
3707
+ keywords
3708
+ bullets
3709
+ headlines
3710
+ posts
3711
+ chapters
3712
+ questions
3651
3713
  video {
3652
3714
  width
3653
3715
  height
@@ -996,6 +996,8 @@ export type Content = {
996
996
  correlationId?: Maybe<Scalars['String']['output']>;
997
997
  /** The creation date of the content. */
998
998
  creationDate: Scalars['DateTime']['output'];
999
+ /** The custom content summary. */
1000
+ customSummary?: Maybe<Scalars['String']['output']>;
999
1001
  /** The content description. */
1000
1002
  description?: Maybe<Scalars['String']['output']>;
1001
1003
  /** The content file device type. */
@@ -1042,6 +1044,8 @@ export type Content = {
1042
1044
  imageUri?: Maybe<Scalars['URL']['output']>;
1043
1045
  /** The content issue metadata. */
1044
1046
  issue?: Maybe<IssueMetadata>;
1047
+ /** The summarized content keywords or key phrases. */
1048
+ keywords?: Maybe<Array<Scalars['String']['output']>>;
1045
1049
  /** The extracted hyperlinks. */
1046
1050
  links?: Maybe<Array<LinkReferenceType>>;
1047
1051
  /** The geo-location of the content. */
@@ -6741,8 +6745,8 @@ export type Query = {
6741
6745
  countSpecifications?: Maybe<CountResult>;
6742
6746
  /** Counts workflows based on the provided filter criteria. */
6743
6747
  countWorkflows?: Maybe<CountResult>;
6744
- /** Retrieves correlated project credits. */
6745
- credits?: Maybe<Array<Maybe<ProjectCredits>>>;
6748
+ /** Retrieves project credits. */
6749
+ credits?: Maybe<ProjectCredits>;
6746
6750
  /** Lookup an event given its ID. */
6747
6751
  event?: Maybe<Event>;
6748
6752
  /** Retrieves events based on the provided filter criteria. */
@@ -6803,6 +6807,8 @@ export type Query = {
6803
6807
  sharePointFolders?: Maybe<SharePointFolderResults>;
6804
6808
  /** Retrieves available SharePoint document libraries. */
6805
6809
  sharePointLibraries?: Maybe<SharePointLibraryResults>;
6810
+ /** Retrieves available Slack channels. */
6811
+ slackChannels?: Maybe<StringResults>;
6806
6812
  /** Lookup software given its ID. */
6807
6813
  software?: Maybe<Software>;
6808
6814
  /** Retrieves software based on the provided filter criteria. */
@@ -6927,8 +6933,6 @@ export type QueryCountWorkflowsArgs = {
6927
6933
  };
6928
6934
  export type QueryCreditsArgs = {
6929
6935
  duration: Scalars['TimeSpan']['input'];
6930
- limit?: InputMaybe<Scalars['Int']['input']>;
6931
- offset?: InputMaybe<Scalars['Int']['input']>;
6932
6936
  startDate: Scalars['DateTime']['input'];
6933
6937
  };
6934
6938
  export type QueryEventArgs = {
@@ -7053,6 +7057,9 @@ export type QuerySharePointFoldersArgs = {
7053
7057
  export type QuerySharePointLibrariesArgs = {
7054
7058
  properties: SharePointLibrariesInput;
7055
7059
  };
7060
+ export type QuerySlackChannelsArgs = {
7061
+ properties: SlackChannelsInput;
7062
+ };
7056
7063
  export type QuerySoftwareArgs = {
7057
7064
  correlationId?: InputMaybe<Scalars['String']['input']>;
7058
7065
  id: Scalars['ID']['input'];
@@ -7073,6 +7080,7 @@ export type QuerySpecificationsArgs = {
7073
7080
  export type QueryUsageArgs = {
7074
7081
  duration: Scalars['TimeSpan']['input'];
7075
7082
  limit?: InputMaybe<Scalars['Int']['input']>;
7083
+ names?: InputMaybe<Array<Scalars['String']['input']>>;
7076
7084
  offset?: InputMaybe<Scalars['Int']['input']>;
7077
7085
  startDate: Scalars['DateTime']['input'];
7078
7086
  };
@@ -7701,6 +7709,11 @@ export declare enum SiteTypes {
7701
7709
  /** Watch cloud storage site */
7702
7710
  Watch = "WATCH"
7703
7711
  }
7712
+ /** Represents Slack channels properties. */
7713
+ export type SlackChannelsInput = {
7714
+ /** Slack authentication token. */
7715
+ token: Scalars['String']['input'];
7716
+ };
7704
7717
  /** Represents Slack feed properties. */
7705
7718
  export type SlackFeedProperties = {
7706
7719
  __typename?: 'SlackFeedProperties';
@@ -8151,6 +8164,8 @@ export declare enum SummarizationTypes {
8151
8164
  Custom = "CUSTOM",
8152
8165
  /** Headlines */
8153
8166
  Headlines = "HEADLINES",
8167
+ /** Keywords */
8168
+ Keywords = "KEYWORDS",
8154
8169
  /** Social Media Posts */
8155
8170
  Posts = "POSTS",
8156
8171
  /** Questions */
@@ -9362,6 +9377,14 @@ export type GetContentQuery = {
9362
9377
  textUri?: any | null;
9363
9378
  audioUri?: any | null;
9364
9379
  transcriptUri?: any | null;
9380
+ summary?: string | null;
9381
+ customSummary?: string | null;
9382
+ keywords?: Array<string> | null;
9383
+ bullets?: Array<string> | null;
9384
+ headlines?: Array<string> | null;
9385
+ posts?: Array<string> | null;
9386
+ chapters?: Array<string> | null;
9387
+ questions?: Array<string> | null;
9365
9388
  error?: string | null;
9366
9389
  owner: {
9367
9390
  __typename?: 'Owner';
@@ -9780,6 +9803,14 @@ export type QueryContentsQuery = {
9780
9803
  textUri?: any | null;
9781
9804
  audioUri?: any | null;
9782
9805
  transcriptUri?: any | null;
9806
+ summary?: string | null;
9807
+ customSummary?: string | null;
9808
+ keywords?: Array<string> | null;
9809
+ bullets?: Array<string> | null;
9810
+ headlines?: Array<string> | null;
9811
+ posts?: Array<string> | null;
9812
+ chapters?: Array<string> | null;
9813
+ questions?: Array<string> | null;
9783
9814
  error?: string | null;
9784
9815
  owner: {
9785
9816
  __typename?: 'Owner';
@@ -10043,6 +10074,14 @@ export type QueryContentsFacetsQuery = {
10043
10074
  textUri?: any | null;
10044
10075
  audioUri?: any | null;
10045
10076
  transcriptUri?: any | null;
10077
+ summary?: string | null;
10078
+ customSummary?: string | null;
10079
+ keywords?: Array<string> | null;
10080
+ bullets?: Array<string> | null;
10081
+ headlines?: Array<string> | null;
10082
+ posts?: Array<string> | null;
10083
+ chapters?: Array<string> | null;
10084
+ questions?: Array<string> | null;
10046
10085
  error?: string | null;
10047
10086
  owner: {
10048
10087
  __typename?: 'Owner';
@@ -10513,6 +10552,14 @@ export type GetConversationQuery = {
10513
10552
  textUri?: any | null;
10514
10553
  audioUri?: any | null;
10515
10554
  transcriptUri?: any | null;
10555
+ summary?: string | null;
10556
+ customSummary?: string | null;
10557
+ keywords?: Array<string> | null;
10558
+ bullets?: Array<string> | null;
10559
+ headlines?: Array<string> | null;
10560
+ posts?: Array<string> | null;
10561
+ chapters?: Array<string> | null;
10562
+ questions?: Array<string> | null;
10516
10563
  video?: {
10517
10564
  __typename?: 'VideoMetadata';
10518
10565
  width?: number | null;
@@ -10737,6 +10784,14 @@ export type PromptConversationMutation = {
10737
10784
  textUri?: any | null;
10738
10785
  audioUri?: any | null;
10739
10786
  transcriptUri?: any | null;
10787
+ summary?: string | null;
10788
+ customSummary?: string | null;
10789
+ keywords?: Array<string> | null;
10790
+ bullets?: Array<string> | null;
10791
+ headlines?: Array<string> | null;
10792
+ posts?: Array<string> | null;
10793
+ chapters?: Array<string> | null;
10794
+ questions?: Array<string> | null;
10740
10795
  video?: {
10741
10796
  __typename?: 'VideoMetadata';
10742
10797
  width?: number | null;
@@ -10939,6 +10994,14 @@ export type QueryConversationsQuery = {
10939
10994
  textUri?: any | null;
10940
10995
  audioUri?: any | null;
10941
10996
  transcriptUri?: any | null;
10997
+ summary?: string | null;
10998
+ customSummary?: string | null;
10999
+ keywords?: Array<string> | null;
11000
+ bullets?: Array<string> | null;
11001
+ headlines?: Array<string> | null;
11002
+ posts?: Array<string> | null;
11003
+ chapters?: Array<string> | null;
11004
+ questions?: Array<string> | null;
10942
11005
  video?: {
10943
11006
  __typename?: 'VideoMetadata';
10944
11007
  width?: number | null;
@@ -12574,7 +12637,7 @@ export type QueryCreditsQueryVariables = Exact<{
12574
12637
  }>;
12575
12638
  export type QueryCreditsQuery = {
12576
12639
  __typename?: 'Query';
12577
- credits?: Array<{
12640
+ credits?: {
12578
12641
  __typename?: 'ProjectCredits';
12579
12642
  correlationId?: string | null;
12580
12643
  ownerId?: string | null;
@@ -12587,11 +12650,14 @@ export type QueryCreditsQuery = {
12587
12650
  publishingRatio?: any | null;
12588
12651
  searchRatio?: any | null;
12589
12652
  conversationRatio?: any | null;
12590
- } | null> | null;
12653
+ } | null;
12591
12654
  };
12592
12655
  export type QueryUsageQueryVariables = Exact<{
12593
12656
  startDate: Scalars['DateTime']['input'];
12594
12657
  duration: Scalars['TimeSpan']['input'];
12658
+ names?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
12659
+ offset?: InputMaybe<Scalars['Int']['input']>;
12660
+ limit?: InputMaybe<Scalars['Int']['input']>;
12595
12661
  }>;
12596
12662
  export type QueryUsageQuery = {
12597
12663
  __typename?: 'Query';
@@ -13074,6 +13140,14 @@ export type PromptSpecificationsMutation = {
13074
13140
  textUri?: any | null;
13075
13141
  audioUri?: any | null;
13076
13142
  transcriptUri?: any | null;
13143
+ summary?: string | null;
13144
+ customSummary?: string | null;
13145
+ keywords?: Array<string> | null;
13146
+ bullets?: Array<string> | null;
13147
+ headlines?: Array<string> | null;
13148
+ posts?: Array<string> | null;
13149
+ chapters?: Array<string> | null;
13150
+ questions?: Array<string> | null;
13077
13151
  video?: {
13078
13152
  __typename?: 'VideoMetadata';
13079
13153
  width?: number | null;
@@ -1178,6 +1178,8 @@ var SummarizationTypes;
1178
1178
  SummarizationTypes["Custom"] = "CUSTOM";
1179
1179
  /** Headlines */
1180
1180
  SummarizationTypes["Headlines"] = "HEADLINES";
1181
+ /** Keywords */
1182
+ SummarizationTypes["Keywords"] = "KEYWORDS";
1181
1183
  /** Social Media Posts */
1182
1184
  SummarizationTypes["Posts"] = "POSTS";
1183
1185
  /** Questions */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20240621001",
3
+ "version": "1.0.20240704001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",