graphlit-client 1.0.20251007001 → 1.0.20251007002

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.
@@ -1380,6 +1380,40 @@ export const GetContent = gql `
1380
1380
  type
1381
1381
  labels
1382
1382
  }
1383
+ message {
1384
+ identifier
1385
+ conversationIdentifier
1386
+ channelIdentifier
1387
+ channelName
1388
+ attachmentCount
1389
+ links
1390
+ author {
1391
+ name
1392
+ email
1393
+ givenName
1394
+ familyName
1395
+ }
1396
+ mentions {
1397
+ name
1398
+ email
1399
+ givenName
1400
+ familyName
1401
+ }
1402
+ }
1403
+ post {
1404
+ identifier
1405
+ title
1406
+ author {
1407
+ name
1408
+ email
1409
+ givenName
1410
+ familyName
1411
+ }
1412
+ upvotes
1413
+ downvotes
1414
+ commentCount
1415
+ links
1416
+ }
1383
1417
  package {
1384
1418
  fileCount
1385
1419
  folderCount
@@ -2112,6 +2146,40 @@ export const LookupContents = gql `
2112
2146
  type
2113
2147
  labels
2114
2148
  }
2149
+ message {
2150
+ identifier
2151
+ conversationIdentifier
2152
+ channelIdentifier
2153
+ channelName
2154
+ attachmentCount
2155
+ links
2156
+ author {
2157
+ name
2158
+ email
2159
+ givenName
2160
+ familyName
2161
+ }
2162
+ mentions {
2163
+ name
2164
+ email
2165
+ givenName
2166
+ familyName
2167
+ }
2168
+ }
2169
+ post {
2170
+ identifier
2171
+ title
2172
+ author {
2173
+ name
2174
+ email
2175
+ givenName
2176
+ familyName
2177
+ }
2178
+ upvotes
2179
+ downvotes
2180
+ commentCount
2181
+ links
2182
+ }
2115
2183
  package {
2116
2184
  fileCount
2117
2185
  folderCount
@@ -2677,6 +2745,40 @@ export const QueryContents = gql `
2677
2745
  type
2678
2746
  labels
2679
2747
  }
2748
+ message {
2749
+ identifier
2750
+ conversationIdentifier
2751
+ channelIdentifier
2752
+ channelName
2753
+ attachmentCount
2754
+ links
2755
+ author {
2756
+ name
2757
+ email
2758
+ givenName
2759
+ familyName
2760
+ }
2761
+ mentions {
2762
+ name
2763
+ email
2764
+ givenName
2765
+ familyName
2766
+ }
2767
+ }
2768
+ post {
2769
+ identifier
2770
+ title
2771
+ author {
2772
+ name
2773
+ email
2774
+ givenName
2775
+ familyName
2776
+ }
2777
+ upvotes
2778
+ downvotes
2779
+ commentCount
2780
+ links
2781
+ }
2680
2782
  package {
2681
2783
  fileCount
2682
2784
  folderCount
@@ -2982,6 +3084,40 @@ export const QueryContentsObservations = gql `
2982
3084
  type
2983
3085
  labels
2984
3086
  }
3087
+ message {
3088
+ identifier
3089
+ conversationIdentifier
3090
+ channelIdentifier
3091
+ channelName
3092
+ attachmentCount
3093
+ links
3094
+ author {
3095
+ name
3096
+ email
3097
+ givenName
3098
+ familyName
3099
+ }
3100
+ mentions {
3101
+ name
3102
+ email
3103
+ givenName
3104
+ familyName
3105
+ }
3106
+ }
3107
+ post {
3108
+ identifier
3109
+ title
3110
+ author {
3111
+ name
3112
+ email
3113
+ givenName
3114
+ familyName
3115
+ }
3116
+ upvotes
3117
+ downvotes
3118
+ commentCount
3119
+ links
3120
+ }
2985
3121
  package {
2986
3122
  fileCount
2987
3123
  folderCount
@@ -1927,6 +1927,8 @@ export type Content = {
1927
1927
  markdown?: Maybe<Scalars['String']['output']>;
1928
1928
  /** The master rendition URI of the content. This references a cached rendition of the source content. */
1929
1929
  masterUri?: Maybe<Scalars['URL']['output']>;
1930
+ /** The content message metadata. */
1931
+ message?: Maybe<MessageMetadata>;
1930
1932
  /** The metadata indexed from this content. */
1931
1933
  metadata?: Maybe<Array<Maybe<Metadata>>>;
1932
1934
  /**
@@ -1956,6 +1958,8 @@ export type Content = {
1956
1958
  path?: Maybe<Scalars['String']['output']>;
1957
1959
  /** The content point cloud metadata. */
1958
1960
  pointCloud?: Maybe<PointCloudMetadata>;
1961
+ /** The content post metadata. */
1962
+ post?: Maybe<PostMetadata>;
1959
1963
  /** The summarized content social media posts. */
1960
1964
  posts?: Maybe<Array<Scalars['String']['output']>>;
1961
1965
  /** The followup questions which can be asked about the content. */
@@ -2567,12 +2571,16 @@ export type ContentUpdateInput = {
2567
2571
  keywords?: InputMaybe<Array<Scalars['String']['input']>>;
2568
2572
  /** The content language metadata. */
2569
2573
  language?: InputMaybe<LanguageMetadataInput>;
2574
+ /** The content message metadata. */
2575
+ message?: InputMaybe<MessageMetadataInput>;
2570
2576
  /** The name of the content. */
2571
2577
  name?: InputMaybe<Scalars['String']['input']>;
2572
2578
  /** The content package metadata. */
2573
2579
  package?: InputMaybe<PackageMetadataInput>;
2574
2580
  /** The content point cloud metadata. */
2575
2581
  pointCloud?: InputMaybe<PointCloudMetadataInput>;
2582
+ /** The content post metadata. */
2583
+ post?: InputMaybe<PostMetadataInput>;
2576
2584
  /** The summarized content social media posts. */
2577
2585
  posts?: InputMaybe<Array<Scalars['String']['input']>>;
2578
2586
  /** The followup questions which can be asked about the content. */
@@ -8128,6 +8136,51 @@ export type MedicalTherapyUpdateInput = {
8128
8136
  /** The medicaltherapy URI. */
8129
8137
  uri?: InputMaybe<Scalars['URL']['input']>;
8130
8138
  };
8139
+ /** Represents message metadata. */
8140
+ export type MessageMetadata = {
8141
+ __typename?: 'MessageMetadata';
8142
+ /** The number of attachments. */
8143
+ attachmentCount?: Maybe<Scalars['Int']['output']>;
8144
+ /** The message author. */
8145
+ author?: Maybe<PersonReference>;
8146
+ /** The channel identifier. */
8147
+ channelIdentifier?: Maybe<Scalars['String']['output']>;
8148
+ /** The channel name. */
8149
+ channelName?: Maybe<Scalars['String']['output']>;
8150
+ /** The conversation identifier. */
8151
+ conversationIdentifier?: Maybe<Scalars['String']['output']>;
8152
+ /** The message identifier. */
8153
+ identifier?: Maybe<Scalars['String']['output']>;
8154
+ /** The message hyperlinks. */
8155
+ links?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
8156
+ /** The mentioned persons. */
8157
+ mentions?: Maybe<Array<Maybe<PersonReference>>>;
8158
+ };
8159
+ /** Represents message metadata. */
8160
+ export type MessageMetadataInput = {
8161
+ /** The number of attachments. */
8162
+ attachmentCount?: InputMaybe<Scalars['Int']['input']>;
8163
+ /** The message author. */
8164
+ author?: InputMaybe<PersonReferenceInput>;
8165
+ /** The channel identifier. */
8166
+ channelIdentifier?: InputMaybe<Scalars['String']['input']>;
8167
+ /** The channel name. */
8168
+ channelName?: InputMaybe<Scalars['String']['input']>;
8169
+ /** The conversation identifier. */
8170
+ conversationIdentifier?: InputMaybe<Scalars['String']['input']>;
8171
+ /** The metadata creation date. */
8172
+ creationDate?: InputMaybe<Scalars['DateTime']['input']>;
8173
+ /** The message identifier. */
8174
+ identifier?: InputMaybe<Scalars['String']['input']>;
8175
+ /** The message hyperlinks. */
8176
+ links?: InputMaybe<Array<InputMaybe<LinkReferenceInput>>>;
8177
+ /** The metadata geo-location. */
8178
+ location?: InputMaybe<PointInput>;
8179
+ /** The mentioned persons. */
8180
+ mentions?: InputMaybe<Array<InputMaybe<PersonReferenceInput>>>;
8181
+ /** The metadata modified date. */
8182
+ modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
8183
+ };
8131
8184
  /** Represents metadata. */
8132
8185
  export type Metadata = {
8133
8186
  __typename?: 'Metadata';
@@ -11288,6 +11341,17 @@ export type PersonReference = {
11288
11341
  /** The name of the person. */
11289
11342
  name?: Maybe<Scalars['String']['output']>;
11290
11343
  };
11344
+ /** Represents a person reference input. */
11345
+ export type PersonReferenceInput = {
11346
+ /** The email address of the person. */
11347
+ email?: InputMaybe<Scalars['String']['input']>;
11348
+ /** The family name of the person. */
11349
+ familyName?: InputMaybe<Scalars['String']['input']>;
11350
+ /** The given name of the person. */
11351
+ givenName?: InputMaybe<Scalars['String']['input']>;
11352
+ /** The name of the person. */
11353
+ name?: InputMaybe<Scalars['String']['input']>;
11354
+ };
11291
11355
  /** Represents person query results. */
11292
11356
  export type PersonResults = {
11293
11357
  __typename?: 'PersonResults';
@@ -11539,6 +11603,47 @@ export type PointInput = {
11539
11603
  /** The longitude. */
11540
11604
  longitude: Scalars['Float']['input'];
11541
11605
  };
11606
+ /** Represents post metadata. */
11607
+ export type PostMetadata = {
11608
+ __typename?: 'PostMetadata';
11609
+ /** The post author. */
11610
+ author?: Maybe<PersonReference>;
11611
+ /** The number of comments. */
11612
+ commentCount?: Maybe<Scalars['Int']['output']>;
11613
+ /** The number of downvotes. */
11614
+ downvotes?: Maybe<Scalars['Int']['output']>;
11615
+ /** The post identifier. */
11616
+ identifier?: Maybe<Scalars['String']['output']>;
11617
+ /** The post hyperlinks. */
11618
+ links?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
11619
+ /** The post title. */
11620
+ title?: Maybe<Scalars['String']['output']>;
11621
+ /** The number of upvotes. */
11622
+ upvotes?: Maybe<Scalars['Int']['output']>;
11623
+ };
11624
+ /** Represents post metadata. */
11625
+ export type PostMetadataInput = {
11626
+ /** The post author. */
11627
+ author?: InputMaybe<PersonReferenceInput>;
11628
+ /** The number of comments. */
11629
+ commentCount?: InputMaybe<Scalars['Int']['input']>;
11630
+ /** The metadata creation date. */
11631
+ creationDate?: InputMaybe<Scalars['DateTime']['input']>;
11632
+ /** The number of downvotes. */
11633
+ downvotes?: InputMaybe<Scalars['Int']['input']>;
11634
+ /** The post identifier. */
11635
+ identifier?: InputMaybe<Scalars['String']['input']>;
11636
+ /** The post hyperlinks. */
11637
+ links?: InputMaybe<Array<InputMaybe<LinkReferenceInput>>>;
11638
+ /** The metadata geo-location. */
11639
+ location?: InputMaybe<PointInput>;
11640
+ /** The metadata modified date. */
11641
+ modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
11642
+ /** The post title. */
11643
+ title?: InputMaybe<Scalars['String']['input']>;
11644
+ /** The number of upvotes. */
11645
+ upvotes?: InputMaybe<Scalars['Int']['input']>;
11646
+ };
11542
11647
  /** Represents a preparation workflow job. */
11543
11648
  export type PreparationWorkflowJob = {
11544
11649
  __typename?: 'PreparationWorkflowJob';
@@ -17160,6 +17265,45 @@ export type GetContentQuery = {
17160
17265
  type?: string | null;
17161
17266
  labels?: Array<string | null> | null;
17162
17267
  } | null;
17268
+ message?: {
17269
+ __typename?: 'MessageMetadata';
17270
+ identifier?: string | null;
17271
+ conversationIdentifier?: string | null;
17272
+ channelIdentifier?: string | null;
17273
+ channelName?: string | null;
17274
+ attachmentCount?: number | null;
17275
+ links?: Array<any | null> | null;
17276
+ author?: {
17277
+ __typename?: 'PersonReference';
17278
+ name?: string | null;
17279
+ email?: string | null;
17280
+ givenName?: string | null;
17281
+ familyName?: string | null;
17282
+ } | null;
17283
+ mentions?: Array<{
17284
+ __typename?: 'PersonReference';
17285
+ name?: string | null;
17286
+ email?: string | null;
17287
+ givenName?: string | null;
17288
+ familyName?: string | null;
17289
+ } | null> | null;
17290
+ } | null;
17291
+ post?: {
17292
+ __typename?: 'PostMetadata';
17293
+ identifier?: string | null;
17294
+ title?: string | null;
17295
+ upvotes?: number | null;
17296
+ downvotes?: number | null;
17297
+ commentCount?: number | null;
17298
+ links?: Array<any | null> | null;
17299
+ author?: {
17300
+ __typename?: 'PersonReference';
17301
+ name?: string | null;
17302
+ email?: string | null;
17303
+ givenName?: string | null;
17304
+ familyName?: string | null;
17305
+ } | null;
17306
+ } | null;
17163
17307
  package?: {
17164
17308
  __typename?: 'PackageMetadata';
17165
17309
  fileCount?: number | null;
@@ -17986,6 +18130,45 @@ export type LookupContentsQuery = {
17986
18130
  type?: string | null;
17987
18131
  labels?: Array<string | null> | null;
17988
18132
  } | null;
18133
+ message?: {
18134
+ __typename?: 'MessageMetadata';
18135
+ identifier?: string | null;
18136
+ conversationIdentifier?: string | null;
18137
+ channelIdentifier?: string | null;
18138
+ channelName?: string | null;
18139
+ attachmentCount?: number | null;
18140
+ links?: Array<any | null> | null;
18141
+ author?: {
18142
+ __typename?: 'PersonReference';
18143
+ name?: string | null;
18144
+ email?: string | null;
18145
+ givenName?: string | null;
18146
+ familyName?: string | null;
18147
+ } | null;
18148
+ mentions?: Array<{
18149
+ __typename?: 'PersonReference';
18150
+ name?: string | null;
18151
+ email?: string | null;
18152
+ givenName?: string | null;
18153
+ familyName?: string | null;
18154
+ } | null> | null;
18155
+ } | null;
18156
+ post?: {
18157
+ __typename?: 'PostMetadata';
18158
+ identifier?: string | null;
18159
+ title?: string | null;
18160
+ upvotes?: number | null;
18161
+ downvotes?: number | null;
18162
+ commentCount?: number | null;
18163
+ links?: Array<any | null> | null;
18164
+ author?: {
18165
+ __typename?: 'PersonReference';
18166
+ name?: string | null;
18167
+ email?: string | null;
18168
+ givenName?: string | null;
18169
+ familyName?: string | null;
18170
+ } | null;
18171
+ } | null;
17989
18172
  package?: {
17990
18173
  __typename?: 'PackageMetadata';
17991
18174
  fileCount?: number | null;
@@ -18608,6 +18791,45 @@ export type QueryContentsQuery = {
18608
18791
  type?: string | null;
18609
18792
  labels?: Array<string | null> | null;
18610
18793
  } | null;
18794
+ message?: {
18795
+ __typename?: 'MessageMetadata';
18796
+ identifier?: string | null;
18797
+ conversationIdentifier?: string | null;
18798
+ channelIdentifier?: string | null;
18799
+ channelName?: string | null;
18800
+ attachmentCount?: number | null;
18801
+ links?: Array<any | null> | null;
18802
+ author?: {
18803
+ __typename?: 'PersonReference';
18804
+ name?: string | null;
18805
+ email?: string | null;
18806
+ givenName?: string | null;
18807
+ familyName?: string | null;
18808
+ } | null;
18809
+ mentions?: Array<{
18810
+ __typename?: 'PersonReference';
18811
+ name?: string | null;
18812
+ email?: string | null;
18813
+ givenName?: string | null;
18814
+ familyName?: string | null;
18815
+ } | null> | null;
18816
+ } | null;
18817
+ post?: {
18818
+ __typename?: 'PostMetadata';
18819
+ identifier?: string | null;
18820
+ title?: string | null;
18821
+ upvotes?: number | null;
18822
+ downvotes?: number | null;
18823
+ commentCount?: number | null;
18824
+ links?: Array<any | null> | null;
18825
+ author?: {
18826
+ __typename?: 'PersonReference';
18827
+ name?: string | null;
18828
+ email?: string | null;
18829
+ givenName?: string | null;
18830
+ familyName?: string | null;
18831
+ } | null;
18832
+ } | null;
18611
18833
  package?: {
18612
18834
  __typename?: 'PackageMetadata';
18613
18835
  fileCount?: number | null;
@@ -18963,6 +19185,45 @@ export type QueryContentsObservationsQuery = {
18963
19185
  type?: string | null;
18964
19186
  labels?: Array<string | null> | null;
18965
19187
  } | null;
19188
+ message?: {
19189
+ __typename?: 'MessageMetadata';
19190
+ identifier?: string | null;
19191
+ conversationIdentifier?: string | null;
19192
+ channelIdentifier?: string | null;
19193
+ channelName?: string | null;
19194
+ attachmentCount?: number | null;
19195
+ links?: Array<any | null> | null;
19196
+ author?: {
19197
+ __typename?: 'PersonReference';
19198
+ name?: string | null;
19199
+ email?: string | null;
19200
+ givenName?: string | null;
19201
+ familyName?: string | null;
19202
+ } | null;
19203
+ mentions?: Array<{
19204
+ __typename?: 'PersonReference';
19205
+ name?: string | null;
19206
+ email?: string | null;
19207
+ givenName?: string | null;
19208
+ familyName?: string | null;
19209
+ } | null> | null;
19210
+ } | null;
19211
+ post?: {
19212
+ __typename?: 'PostMetadata';
19213
+ identifier?: string | null;
19214
+ title?: string | null;
19215
+ upvotes?: number | null;
19216
+ downvotes?: number | null;
19217
+ commentCount?: number | null;
19218
+ links?: Array<any | null> | null;
19219
+ author?: {
19220
+ __typename?: 'PersonReference';
19221
+ name?: string | null;
19222
+ email?: string | null;
19223
+ givenName?: string | null;
19224
+ familyName?: string | null;
19225
+ } | null;
19226
+ } | null;
18966
19227
  package?: {
18967
19228
  __typename?: 'PackageMetadata';
18968
19229
  fileCount?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251007001",
3
+ "version": "1.0.20251007002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",