graphlit-client 1.0.20251007001 → 1.0.20251008001
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.
package/dist/client.d.ts
CHANGED
|
@@ -119,6 +119,7 @@ declare class Graphlit {
|
|
|
119
119
|
searchWeb(text: string, service?: Types.SearchServiceTypes, limit?: number, correlationId?: string): Promise<Types.SearchWebQuery>;
|
|
120
120
|
createAlert(alert: Types.AlertInput, correlationId?: string): Promise<Types.CreateAlertMutation>;
|
|
121
121
|
updateAlert(alert: Types.AlertUpdateInput): Promise<Types.UpdateAlertMutation>;
|
|
122
|
+
upsertAlert(alert: Types.AlertInput): Promise<Types.UpsertAlertMutation>;
|
|
122
123
|
deleteAlert(id: string): Promise<Types.DeleteAlertMutation>;
|
|
123
124
|
deleteAlerts(ids: string[], isSynchronous?: boolean): Promise<Types.DeleteAlertsMutation>;
|
|
124
125
|
deleteAllAlerts(filter?: Types.AlertFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllAlertsMutation>;
|
package/dist/client.js
CHANGED
|
@@ -471,6 +471,9 @@ class Graphlit {
|
|
|
471
471
|
async updateAlert(alert) {
|
|
472
472
|
return this.mutateAndCheckError(Documents.UpdateAlert, { alert: alert });
|
|
473
473
|
}
|
|
474
|
+
async upsertAlert(alert) {
|
|
475
|
+
return this.mutateAndCheckError(Documents.UpsertAlert, { alert: alert });
|
|
476
|
+
}
|
|
474
477
|
async deleteAlert(id) {
|
|
475
478
|
return this.mutateAndCheckError(Documents.DeleteAlert, { id: id });
|
|
476
479
|
}
|
|
@@ -8,6 +8,7 @@ export declare const EnableAlert: import("graphql").DocumentNode;
|
|
|
8
8
|
export declare const GetAlert: import("graphql").DocumentNode;
|
|
9
9
|
export declare const QueryAlerts: import("graphql").DocumentNode;
|
|
10
10
|
export declare const UpdateAlert: import("graphql").DocumentNode;
|
|
11
|
+
export declare const UpsertAlert: import("graphql").DocumentNode;
|
|
11
12
|
export declare const CountCategories: import("graphql").DocumentNode;
|
|
12
13
|
export declare const CreateCategory: import("graphql").DocumentNode;
|
|
13
14
|
export declare const DeleteAllCategories: import("graphql").DocumentNode;
|
|
@@ -426,6 +426,16 @@ export const UpdateAlert = gql `
|
|
|
426
426
|
}
|
|
427
427
|
}
|
|
428
428
|
`;
|
|
429
|
+
export const UpsertAlert = gql `
|
|
430
|
+
mutation UpsertAlert($alert: AlertInput!) {
|
|
431
|
+
upsertAlert(alert: $alert) {
|
|
432
|
+
id
|
|
433
|
+
name
|
|
434
|
+
state
|
|
435
|
+
type
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
`;
|
|
429
439
|
export const CountCategories = gql `
|
|
430
440
|
query CountCategories($filter: CategoryFilter, $correlationId: String) {
|
|
431
441
|
countCategories(filter: $filter, correlationId: $correlationId) {
|
|
@@ -1380,6 +1390,40 @@ export const GetContent = gql `
|
|
|
1380
1390
|
type
|
|
1381
1391
|
labels
|
|
1382
1392
|
}
|
|
1393
|
+
message {
|
|
1394
|
+
identifier
|
|
1395
|
+
conversationIdentifier
|
|
1396
|
+
channelIdentifier
|
|
1397
|
+
channelName
|
|
1398
|
+
attachmentCount
|
|
1399
|
+
links
|
|
1400
|
+
author {
|
|
1401
|
+
name
|
|
1402
|
+
email
|
|
1403
|
+
givenName
|
|
1404
|
+
familyName
|
|
1405
|
+
}
|
|
1406
|
+
mentions {
|
|
1407
|
+
name
|
|
1408
|
+
email
|
|
1409
|
+
givenName
|
|
1410
|
+
familyName
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1413
|
+
post {
|
|
1414
|
+
identifier
|
|
1415
|
+
title
|
|
1416
|
+
author {
|
|
1417
|
+
name
|
|
1418
|
+
email
|
|
1419
|
+
givenName
|
|
1420
|
+
familyName
|
|
1421
|
+
}
|
|
1422
|
+
upvotes
|
|
1423
|
+
downvotes
|
|
1424
|
+
commentCount
|
|
1425
|
+
links
|
|
1426
|
+
}
|
|
1383
1427
|
package {
|
|
1384
1428
|
fileCount
|
|
1385
1429
|
folderCount
|
|
@@ -2112,6 +2156,40 @@ export const LookupContents = gql `
|
|
|
2112
2156
|
type
|
|
2113
2157
|
labels
|
|
2114
2158
|
}
|
|
2159
|
+
message {
|
|
2160
|
+
identifier
|
|
2161
|
+
conversationIdentifier
|
|
2162
|
+
channelIdentifier
|
|
2163
|
+
channelName
|
|
2164
|
+
attachmentCount
|
|
2165
|
+
links
|
|
2166
|
+
author {
|
|
2167
|
+
name
|
|
2168
|
+
email
|
|
2169
|
+
givenName
|
|
2170
|
+
familyName
|
|
2171
|
+
}
|
|
2172
|
+
mentions {
|
|
2173
|
+
name
|
|
2174
|
+
email
|
|
2175
|
+
givenName
|
|
2176
|
+
familyName
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
post {
|
|
2180
|
+
identifier
|
|
2181
|
+
title
|
|
2182
|
+
author {
|
|
2183
|
+
name
|
|
2184
|
+
email
|
|
2185
|
+
givenName
|
|
2186
|
+
familyName
|
|
2187
|
+
}
|
|
2188
|
+
upvotes
|
|
2189
|
+
downvotes
|
|
2190
|
+
commentCount
|
|
2191
|
+
links
|
|
2192
|
+
}
|
|
2115
2193
|
package {
|
|
2116
2194
|
fileCount
|
|
2117
2195
|
folderCount
|
|
@@ -2677,6 +2755,40 @@ export const QueryContents = gql `
|
|
|
2677
2755
|
type
|
|
2678
2756
|
labels
|
|
2679
2757
|
}
|
|
2758
|
+
message {
|
|
2759
|
+
identifier
|
|
2760
|
+
conversationIdentifier
|
|
2761
|
+
channelIdentifier
|
|
2762
|
+
channelName
|
|
2763
|
+
attachmentCount
|
|
2764
|
+
links
|
|
2765
|
+
author {
|
|
2766
|
+
name
|
|
2767
|
+
email
|
|
2768
|
+
givenName
|
|
2769
|
+
familyName
|
|
2770
|
+
}
|
|
2771
|
+
mentions {
|
|
2772
|
+
name
|
|
2773
|
+
email
|
|
2774
|
+
givenName
|
|
2775
|
+
familyName
|
|
2776
|
+
}
|
|
2777
|
+
}
|
|
2778
|
+
post {
|
|
2779
|
+
identifier
|
|
2780
|
+
title
|
|
2781
|
+
author {
|
|
2782
|
+
name
|
|
2783
|
+
email
|
|
2784
|
+
givenName
|
|
2785
|
+
familyName
|
|
2786
|
+
}
|
|
2787
|
+
upvotes
|
|
2788
|
+
downvotes
|
|
2789
|
+
commentCount
|
|
2790
|
+
links
|
|
2791
|
+
}
|
|
2680
2792
|
package {
|
|
2681
2793
|
fileCount
|
|
2682
2794
|
folderCount
|
|
@@ -2982,6 +3094,40 @@ export const QueryContentsObservations = gql `
|
|
|
2982
3094
|
type
|
|
2983
3095
|
labels
|
|
2984
3096
|
}
|
|
3097
|
+
message {
|
|
3098
|
+
identifier
|
|
3099
|
+
conversationIdentifier
|
|
3100
|
+
channelIdentifier
|
|
3101
|
+
channelName
|
|
3102
|
+
attachmentCount
|
|
3103
|
+
links
|
|
3104
|
+
author {
|
|
3105
|
+
name
|
|
3106
|
+
email
|
|
3107
|
+
givenName
|
|
3108
|
+
familyName
|
|
3109
|
+
}
|
|
3110
|
+
mentions {
|
|
3111
|
+
name
|
|
3112
|
+
email
|
|
3113
|
+
givenName
|
|
3114
|
+
familyName
|
|
3115
|
+
}
|
|
3116
|
+
}
|
|
3117
|
+
post {
|
|
3118
|
+
identifier
|
|
3119
|
+
title
|
|
3120
|
+
author {
|
|
3121
|
+
name
|
|
3122
|
+
email
|
|
3123
|
+
givenName
|
|
3124
|
+
familyName
|
|
3125
|
+
}
|
|
3126
|
+
upvotes
|
|
3127
|
+
downvotes
|
|
3128
|
+
commentCount
|
|
3129
|
+
links
|
|
3130
|
+
}
|
|
2985
3131
|
package {
|
|
2986
3132
|
fileCount
|
|
2987
3133
|
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. */
|
|
@@ -2419,7 +2423,7 @@ export type ContentPublishingConnectorUpdateInput = {
|
|
|
2419
2423
|
/** The specific properties for ElevenLabs Audio publishing. */
|
|
2420
2424
|
elevenLabs?: InputMaybe<ElevenLabsPublishingPropertiesInput>;
|
|
2421
2425
|
/** The content publishing format, i.e. MP3, Markdown. */
|
|
2422
|
-
format
|
|
2426
|
+
format: ContentPublishingFormats;
|
|
2423
2427
|
/** The specific properties for Google Image publishing. */
|
|
2424
2428
|
googleImage?: InputMaybe<GoogleImagePublishingPropertiesInput>;
|
|
2425
2429
|
/** The specific properties for OpenAI Image publishing. */
|
|
@@ -2427,7 +2431,7 @@ export type ContentPublishingConnectorUpdateInput = {
|
|
|
2427
2431
|
/** The specific properties for OpenAI Video publishing. */
|
|
2428
2432
|
openAIVideo?: InputMaybe<OpenAiVideoPublishingPropertiesInput>;
|
|
2429
2433
|
/** The content publishing service type. */
|
|
2430
|
-
type
|
|
2434
|
+
type: ContentPublishingServiceTypes;
|
|
2431
2435
|
};
|
|
2432
2436
|
export declare enum ContentPublishingFormats {
|
|
2433
2437
|
/** HTML */
|
|
@@ -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. */
|
|
@@ -5968,6 +5976,8 @@ export type IntegrationConnectorUpdateInput = {
|
|
|
5968
5976
|
email?: InputMaybe<EmailIntegrationPropertiesInput>;
|
|
5969
5977
|
/** MCP integration properties. */
|
|
5970
5978
|
mcp?: InputMaybe<McpIntegrationPropertiesInput>;
|
|
5979
|
+
/** Integration service type. */
|
|
5980
|
+
serviceType: IntegrationServiceTypes;
|
|
5971
5981
|
/** Slack integration properties. */
|
|
5972
5982
|
slack?: InputMaybe<SlackIntegrationPropertiesInput>;
|
|
5973
5983
|
/** Twitter integration properties. */
|
|
@@ -8128,6 +8138,51 @@ export type MedicalTherapyUpdateInput = {
|
|
|
8128
8138
|
/** The medicaltherapy URI. */
|
|
8129
8139
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
8130
8140
|
};
|
|
8141
|
+
/** Represents message metadata. */
|
|
8142
|
+
export type MessageMetadata = {
|
|
8143
|
+
__typename?: 'MessageMetadata';
|
|
8144
|
+
/** The number of attachments. */
|
|
8145
|
+
attachmentCount?: Maybe<Scalars['Int']['output']>;
|
|
8146
|
+
/** The message author. */
|
|
8147
|
+
author?: Maybe<PersonReference>;
|
|
8148
|
+
/** The channel identifier. */
|
|
8149
|
+
channelIdentifier?: Maybe<Scalars['String']['output']>;
|
|
8150
|
+
/** The channel name. */
|
|
8151
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
8152
|
+
/** The conversation identifier. */
|
|
8153
|
+
conversationIdentifier?: Maybe<Scalars['String']['output']>;
|
|
8154
|
+
/** The message identifier. */
|
|
8155
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
8156
|
+
/** The message hyperlinks. */
|
|
8157
|
+
links?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
|
|
8158
|
+
/** The mentioned persons. */
|
|
8159
|
+
mentions?: Maybe<Array<Maybe<PersonReference>>>;
|
|
8160
|
+
};
|
|
8161
|
+
/** Represents message metadata. */
|
|
8162
|
+
export type MessageMetadataInput = {
|
|
8163
|
+
/** The number of attachments. */
|
|
8164
|
+
attachmentCount?: InputMaybe<Scalars['Int']['input']>;
|
|
8165
|
+
/** The message author. */
|
|
8166
|
+
author?: InputMaybe<PersonReferenceInput>;
|
|
8167
|
+
/** The channel identifier. */
|
|
8168
|
+
channelIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
8169
|
+
/** The channel name. */
|
|
8170
|
+
channelName?: InputMaybe<Scalars['String']['input']>;
|
|
8171
|
+
/** The conversation identifier. */
|
|
8172
|
+
conversationIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
8173
|
+
/** The metadata creation date. */
|
|
8174
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8175
|
+
/** The message identifier. */
|
|
8176
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
8177
|
+
/** The message hyperlinks. */
|
|
8178
|
+
links?: InputMaybe<Array<InputMaybe<LinkReferenceInput>>>;
|
|
8179
|
+
/** The metadata geo-location. */
|
|
8180
|
+
location?: InputMaybe<PointInput>;
|
|
8181
|
+
/** The mentioned persons. */
|
|
8182
|
+
mentions?: InputMaybe<Array<InputMaybe<PersonReferenceInput>>>;
|
|
8183
|
+
/** The metadata modified date. */
|
|
8184
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8185
|
+
};
|
|
8131
8186
|
/** Represents metadata. */
|
|
8132
8187
|
export type Metadata = {
|
|
8133
8188
|
__typename?: 'Metadata';
|
|
@@ -9200,6 +9255,8 @@ export type Mutation = {
|
|
|
9200
9255
|
updateView?: Maybe<View>;
|
|
9201
9256
|
/** Updates an existing content workflow. */
|
|
9202
9257
|
updateWorkflow?: Maybe<Workflow>;
|
|
9258
|
+
/** Upserts a alert. */
|
|
9259
|
+
upsertAlert?: Maybe<Alert>;
|
|
9203
9260
|
/** Upserts a category. */
|
|
9204
9261
|
upsertCategory?: Maybe<Category>;
|
|
9205
9262
|
/** Upserts a label. */
|
|
@@ -10093,6 +10150,9 @@ export type MutationUpdateViewArgs = {
|
|
|
10093
10150
|
export type MutationUpdateWorkflowArgs = {
|
|
10094
10151
|
workflow: WorkflowUpdateInput;
|
|
10095
10152
|
};
|
|
10153
|
+
export type MutationUpsertAlertArgs = {
|
|
10154
|
+
alert: AlertInput;
|
|
10155
|
+
};
|
|
10096
10156
|
export type MutationUpsertCategoryArgs = {
|
|
10097
10157
|
category: CategoryInput;
|
|
10098
10158
|
};
|
|
@@ -11288,6 +11348,17 @@ export type PersonReference = {
|
|
|
11288
11348
|
/** The name of the person. */
|
|
11289
11349
|
name?: Maybe<Scalars['String']['output']>;
|
|
11290
11350
|
};
|
|
11351
|
+
/** Represents a person reference input. */
|
|
11352
|
+
export type PersonReferenceInput = {
|
|
11353
|
+
/** The email address of the person. */
|
|
11354
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
11355
|
+
/** The family name of the person. */
|
|
11356
|
+
familyName?: InputMaybe<Scalars['String']['input']>;
|
|
11357
|
+
/** The given name of the person. */
|
|
11358
|
+
givenName?: InputMaybe<Scalars['String']['input']>;
|
|
11359
|
+
/** The name of the person. */
|
|
11360
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
11361
|
+
};
|
|
11291
11362
|
/** Represents person query results. */
|
|
11292
11363
|
export type PersonResults = {
|
|
11293
11364
|
__typename?: 'PersonResults';
|
|
@@ -11539,6 +11610,47 @@ export type PointInput = {
|
|
|
11539
11610
|
/** The longitude. */
|
|
11540
11611
|
longitude: Scalars['Float']['input'];
|
|
11541
11612
|
};
|
|
11613
|
+
/** Represents post metadata. */
|
|
11614
|
+
export type PostMetadata = {
|
|
11615
|
+
__typename?: 'PostMetadata';
|
|
11616
|
+
/** The post author. */
|
|
11617
|
+
author?: Maybe<PersonReference>;
|
|
11618
|
+
/** The number of comments. */
|
|
11619
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
11620
|
+
/** The number of downvotes. */
|
|
11621
|
+
downvotes?: Maybe<Scalars['Int']['output']>;
|
|
11622
|
+
/** The post identifier. */
|
|
11623
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
11624
|
+
/** The post hyperlinks. */
|
|
11625
|
+
links?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
|
|
11626
|
+
/** The post title. */
|
|
11627
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
11628
|
+
/** The number of upvotes. */
|
|
11629
|
+
upvotes?: Maybe<Scalars['Int']['output']>;
|
|
11630
|
+
};
|
|
11631
|
+
/** Represents post metadata. */
|
|
11632
|
+
export type PostMetadataInput = {
|
|
11633
|
+
/** The post author. */
|
|
11634
|
+
author?: InputMaybe<PersonReferenceInput>;
|
|
11635
|
+
/** The number of comments. */
|
|
11636
|
+
commentCount?: InputMaybe<Scalars['Int']['input']>;
|
|
11637
|
+
/** The metadata creation date. */
|
|
11638
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11639
|
+
/** The number of downvotes. */
|
|
11640
|
+
downvotes?: InputMaybe<Scalars['Int']['input']>;
|
|
11641
|
+
/** The post identifier. */
|
|
11642
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
11643
|
+
/** The post hyperlinks. */
|
|
11644
|
+
links?: InputMaybe<Array<InputMaybe<LinkReferenceInput>>>;
|
|
11645
|
+
/** The metadata geo-location. */
|
|
11646
|
+
location?: InputMaybe<PointInput>;
|
|
11647
|
+
/** The metadata modified date. */
|
|
11648
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
11649
|
+
/** The post title. */
|
|
11650
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
11651
|
+
/** The number of upvotes. */
|
|
11652
|
+
upvotes?: InputMaybe<Scalars['Int']['input']>;
|
|
11653
|
+
};
|
|
11542
11654
|
/** Represents a preparation workflow job. */
|
|
11543
11655
|
export type PreparationWorkflowJob = {
|
|
11544
11656
|
__typename?: 'PreparationWorkflowJob';
|
|
@@ -16033,6 +16145,19 @@ export type UpdateAlertMutation = {
|
|
|
16033
16145
|
type: AlertTypes;
|
|
16034
16146
|
} | null;
|
|
16035
16147
|
};
|
|
16148
|
+
export type UpsertAlertMutationVariables = Exact<{
|
|
16149
|
+
alert: AlertInput;
|
|
16150
|
+
}>;
|
|
16151
|
+
export type UpsertAlertMutation = {
|
|
16152
|
+
__typename?: 'Mutation';
|
|
16153
|
+
upsertAlert?: {
|
|
16154
|
+
__typename?: 'Alert';
|
|
16155
|
+
id: string;
|
|
16156
|
+
name: string;
|
|
16157
|
+
state: EntityState;
|
|
16158
|
+
type: AlertTypes;
|
|
16159
|
+
} | null;
|
|
16160
|
+
};
|
|
16036
16161
|
export type CountCategoriesQueryVariables = Exact<{
|
|
16037
16162
|
filter?: InputMaybe<CategoryFilter>;
|
|
16038
16163
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17160,6 +17285,45 @@ export type GetContentQuery = {
|
|
|
17160
17285
|
type?: string | null;
|
|
17161
17286
|
labels?: Array<string | null> | null;
|
|
17162
17287
|
} | null;
|
|
17288
|
+
message?: {
|
|
17289
|
+
__typename?: 'MessageMetadata';
|
|
17290
|
+
identifier?: string | null;
|
|
17291
|
+
conversationIdentifier?: string | null;
|
|
17292
|
+
channelIdentifier?: string | null;
|
|
17293
|
+
channelName?: string | null;
|
|
17294
|
+
attachmentCount?: number | null;
|
|
17295
|
+
links?: Array<any | null> | null;
|
|
17296
|
+
author?: {
|
|
17297
|
+
__typename?: 'PersonReference';
|
|
17298
|
+
name?: string | null;
|
|
17299
|
+
email?: string | null;
|
|
17300
|
+
givenName?: string | null;
|
|
17301
|
+
familyName?: string | null;
|
|
17302
|
+
} | null;
|
|
17303
|
+
mentions?: Array<{
|
|
17304
|
+
__typename?: 'PersonReference';
|
|
17305
|
+
name?: string | null;
|
|
17306
|
+
email?: string | null;
|
|
17307
|
+
givenName?: string | null;
|
|
17308
|
+
familyName?: string | null;
|
|
17309
|
+
} | null> | null;
|
|
17310
|
+
} | null;
|
|
17311
|
+
post?: {
|
|
17312
|
+
__typename?: 'PostMetadata';
|
|
17313
|
+
identifier?: string | null;
|
|
17314
|
+
title?: string | null;
|
|
17315
|
+
upvotes?: number | null;
|
|
17316
|
+
downvotes?: number | null;
|
|
17317
|
+
commentCount?: number | null;
|
|
17318
|
+
links?: Array<any | null> | null;
|
|
17319
|
+
author?: {
|
|
17320
|
+
__typename?: 'PersonReference';
|
|
17321
|
+
name?: string | null;
|
|
17322
|
+
email?: string | null;
|
|
17323
|
+
givenName?: string | null;
|
|
17324
|
+
familyName?: string | null;
|
|
17325
|
+
} | null;
|
|
17326
|
+
} | null;
|
|
17163
17327
|
package?: {
|
|
17164
17328
|
__typename?: 'PackageMetadata';
|
|
17165
17329
|
fileCount?: number | null;
|
|
@@ -17986,6 +18150,45 @@ export type LookupContentsQuery = {
|
|
|
17986
18150
|
type?: string | null;
|
|
17987
18151
|
labels?: Array<string | null> | null;
|
|
17988
18152
|
} | null;
|
|
18153
|
+
message?: {
|
|
18154
|
+
__typename?: 'MessageMetadata';
|
|
18155
|
+
identifier?: string | null;
|
|
18156
|
+
conversationIdentifier?: string | null;
|
|
18157
|
+
channelIdentifier?: string | null;
|
|
18158
|
+
channelName?: string | null;
|
|
18159
|
+
attachmentCount?: number | null;
|
|
18160
|
+
links?: Array<any | null> | null;
|
|
18161
|
+
author?: {
|
|
18162
|
+
__typename?: 'PersonReference';
|
|
18163
|
+
name?: string | null;
|
|
18164
|
+
email?: string | null;
|
|
18165
|
+
givenName?: string | null;
|
|
18166
|
+
familyName?: string | null;
|
|
18167
|
+
} | null;
|
|
18168
|
+
mentions?: Array<{
|
|
18169
|
+
__typename?: 'PersonReference';
|
|
18170
|
+
name?: string | null;
|
|
18171
|
+
email?: string | null;
|
|
18172
|
+
givenName?: string | null;
|
|
18173
|
+
familyName?: string | null;
|
|
18174
|
+
} | null> | null;
|
|
18175
|
+
} | null;
|
|
18176
|
+
post?: {
|
|
18177
|
+
__typename?: 'PostMetadata';
|
|
18178
|
+
identifier?: string | null;
|
|
18179
|
+
title?: string | null;
|
|
18180
|
+
upvotes?: number | null;
|
|
18181
|
+
downvotes?: number | null;
|
|
18182
|
+
commentCount?: number | null;
|
|
18183
|
+
links?: Array<any | null> | null;
|
|
18184
|
+
author?: {
|
|
18185
|
+
__typename?: 'PersonReference';
|
|
18186
|
+
name?: string | null;
|
|
18187
|
+
email?: string | null;
|
|
18188
|
+
givenName?: string | null;
|
|
18189
|
+
familyName?: string | null;
|
|
18190
|
+
} | null;
|
|
18191
|
+
} | null;
|
|
17989
18192
|
package?: {
|
|
17990
18193
|
__typename?: 'PackageMetadata';
|
|
17991
18194
|
fileCount?: number | null;
|
|
@@ -18608,6 +18811,45 @@ export type QueryContentsQuery = {
|
|
|
18608
18811
|
type?: string | null;
|
|
18609
18812
|
labels?: Array<string | null> | null;
|
|
18610
18813
|
} | null;
|
|
18814
|
+
message?: {
|
|
18815
|
+
__typename?: 'MessageMetadata';
|
|
18816
|
+
identifier?: string | null;
|
|
18817
|
+
conversationIdentifier?: string | null;
|
|
18818
|
+
channelIdentifier?: string | null;
|
|
18819
|
+
channelName?: string | null;
|
|
18820
|
+
attachmentCount?: number | null;
|
|
18821
|
+
links?: Array<any | null> | null;
|
|
18822
|
+
author?: {
|
|
18823
|
+
__typename?: 'PersonReference';
|
|
18824
|
+
name?: string | null;
|
|
18825
|
+
email?: string | null;
|
|
18826
|
+
givenName?: string | null;
|
|
18827
|
+
familyName?: string | null;
|
|
18828
|
+
} | null;
|
|
18829
|
+
mentions?: Array<{
|
|
18830
|
+
__typename?: 'PersonReference';
|
|
18831
|
+
name?: string | null;
|
|
18832
|
+
email?: string | null;
|
|
18833
|
+
givenName?: string | null;
|
|
18834
|
+
familyName?: string | null;
|
|
18835
|
+
} | null> | null;
|
|
18836
|
+
} | null;
|
|
18837
|
+
post?: {
|
|
18838
|
+
__typename?: 'PostMetadata';
|
|
18839
|
+
identifier?: string | null;
|
|
18840
|
+
title?: string | null;
|
|
18841
|
+
upvotes?: number | null;
|
|
18842
|
+
downvotes?: number | null;
|
|
18843
|
+
commentCount?: number | null;
|
|
18844
|
+
links?: Array<any | null> | null;
|
|
18845
|
+
author?: {
|
|
18846
|
+
__typename?: 'PersonReference';
|
|
18847
|
+
name?: string | null;
|
|
18848
|
+
email?: string | null;
|
|
18849
|
+
givenName?: string | null;
|
|
18850
|
+
familyName?: string | null;
|
|
18851
|
+
} | null;
|
|
18852
|
+
} | null;
|
|
18611
18853
|
package?: {
|
|
18612
18854
|
__typename?: 'PackageMetadata';
|
|
18613
18855
|
fileCount?: number | null;
|
|
@@ -18963,6 +19205,45 @@ export type QueryContentsObservationsQuery = {
|
|
|
18963
19205
|
type?: string | null;
|
|
18964
19206
|
labels?: Array<string | null> | null;
|
|
18965
19207
|
} | null;
|
|
19208
|
+
message?: {
|
|
19209
|
+
__typename?: 'MessageMetadata';
|
|
19210
|
+
identifier?: string | null;
|
|
19211
|
+
conversationIdentifier?: string | null;
|
|
19212
|
+
channelIdentifier?: string | null;
|
|
19213
|
+
channelName?: string | null;
|
|
19214
|
+
attachmentCount?: number | null;
|
|
19215
|
+
links?: Array<any | null> | null;
|
|
19216
|
+
author?: {
|
|
19217
|
+
__typename?: 'PersonReference';
|
|
19218
|
+
name?: string | null;
|
|
19219
|
+
email?: string | null;
|
|
19220
|
+
givenName?: string | null;
|
|
19221
|
+
familyName?: string | null;
|
|
19222
|
+
} | null;
|
|
19223
|
+
mentions?: Array<{
|
|
19224
|
+
__typename?: 'PersonReference';
|
|
19225
|
+
name?: string | null;
|
|
19226
|
+
email?: string | null;
|
|
19227
|
+
givenName?: string | null;
|
|
19228
|
+
familyName?: string | null;
|
|
19229
|
+
} | null> | null;
|
|
19230
|
+
} | null;
|
|
19231
|
+
post?: {
|
|
19232
|
+
__typename?: 'PostMetadata';
|
|
19233
|
+
identifier?: string | null;
|
|
19234
|
+
title?: string | null;
|
|
19235
|
+
upvotes?: number | null;
|
|
19236
|
+
downvotes?: number | null;
|
|
19237
|
+
commentCount?: number | null;
|
|
19238
|
+
links?: Array<any | null> | null;
|
|
19239
|
+
author?: {
|
|
19240
|
+
__typename?: 'PersonReference';
|
|
19241
|
+
name?: string | null;
|
|
19242
|
+
email?: string | null;
|
|
19243
|
+
givenName?: string | null;
|
|
19244
|
+
familyName?: string | null;
|
|
19245
|
+
} | null;
|
|
19246
|
+
} | null;
|
|
18966
19247
|
package?: {
|
|
18967
19248
|
__typename?: 'PackageMetadata';
|
|
18968
19249
|
fileCount?: number | null;
|