graphlit-client 1.0.20251103005 → 1.0.20251112001
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/LICENSE +1 -1
- package/dist/client.d.ts +11 -0
- package/dist/client.js +52 -0
- package/dist/generated/graphql-documents.d.ts +18 -0
- package/dist/generated/graphql-documents.js +289 -0
- package/dist/generated/graphql-types.d.ts +1167 -18
- package/dist/generated/graphql-types.js +76 -0
- package/package.json +1 -1
|
@@ -557,6 +557,69 @@ export type AtlassianJiraFeedPropertiesUpdateInput = {
|
|
|
557
557
|
/** Atlassian Jira URI. */
|
|
558
558
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
559
559
|
};
|
|
560
|
+
export declare enum AttioAuthenticationTypes {
|
|
561
|
+
ApiKey = "API_KEY"
|
|
562
|
+
}
|
|
563
|
+
/** Represents Attio CRM feed properties. */
|
|
564
|
+
export type AttioCrmFeedProperties = {
|
|
565
|
+
__typename?: 'AttioCRMFeedProperties';
|
|
566
|
+
/** Attio API key. */
|
|
567
|
+
apiKey?: Maybe<Scalars['String']['output']>;
|
|
568
|
+
/** Attio authentication type. */
|
|
569
|
+
authenticationType?: Maybe<AttioAuthenticationTypes>;
|
|
570
|
+
};
|
|
571
|
+
/** Represents Attio CRM feed properties. */
|
|
572
|
+
export type AttioCrmFeedPropertiesInput = {
|
|
573
|
+
/** Attio API key. */
|
|
574
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
575
|
+
/** Attio authentication type, defaults to ApiKey. */
|
|
576
|
+
authenticationType?: InputMaybe<AttioAuthenticationTypes>;
|
|
577
|
+
};
|
|
578
|
+
/** Represents Attio CRM feed properties. */
|
|
579
|
+
export type AttioCrmFeedPropertiesUpdateInput = {
|
|
580
|
+
/** Attio API key. */
|
|
581
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
582
|
+
/** Attio authentication type, defaults to ApiKey. */
|
|
583
|
+
authenticationType?: InputMaybe<AttioAuthenticationTypes>;
|
|
584
|
+
};
|
|
585
|
+
/** Represents Attio feed properties. */
|
|
586
|
+
export type AttioFeedProperties = {
|
|
587
|
+
__typename?: 'AttioFeedProperties';
|
|
588
|
+
/** Attio API key. */
|
|
589
|
+
apiKey: Scalars['String']['output'];
|
|
590
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
591
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
|
592
|
+
};
|
|
593
|
+
/** Represents Attio feed properties. */
|
|
594
|
+
export type AttioFeedPropertiesInput = {
|
|
595
|
+
/** Attio API key. */
|
|
596
|
+
apiKey: Scalars['String']['input'];
|
|
597
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
598
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
599
|
+
};
|
|
600
|
+
/** Represents Attio feed properties. */
|
|
601
|
+
export type AttioFeedPropertiesUpdateInput = {
|
|
602
|
+
/** Attio API key. */
|
|
603
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
604
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
605
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
606
|
+
};
|
|
607
|
+
/** Represents Attio Tasks feed properties. */
|
|
608
|
+
export type AttioTasksFeedProperties = {
|
|
609
|
+
__typename?: 'AttioTasksFeedProperties';
|
|
610
|
+
/** Attio API key. */
|
|
611
|
+
apiKey: Scalars['String']['output'];
|
|
612
|
+
};
|
|
613
|
+
/** Represents Attio Tasks feed properties. */
|
|
614
|
+
export type AttioTasksFeedPropertiesInput = {
|
|
615
|
+
/** Attio API key. */
|
|
616
|
+
apiKey: Scalars['String']['input'];
|
|
617
|
+
};
|
|
618
|
+
/** Represents Attio Tasks feed properties. */
|
|
619
|
+
export type AttioTasksFeedPropertiesUpdateInput = {
|
|
620
|
+
/** Attio API key. */
|
|
621
|
+
apiKey: Scalars['String']['input'];
|
|
622
|
+
};
|
|
560
623
|
/** Represents audio metadata. */
|
|
561
624
|
export type AudioMetadata = {
|
|
562
625
|
__typename?: 'AudioMetadata';
|
|
@@ -1184,6 +1247,34 @@ export type BoxFoldersInput = {
|
|
|
1184
1247
|
/** Box refresh token. */
|
|
1185
1248
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
1186
1249
|
};
|
|
1250
|
+
/** Represents CRM feed properties. */
|
|
1251
|
+
export type CrmFeedProperties = {
|
|
1252
|
+
__typename?: 'CRMFeedProperties';
|
|
1253
|
+
/** Attio CRM properties. */
|
|
1254
|
+
attio?: Maybe<AttioCrmFeedProperties>;
|
|
1255
|
+
/** Feed connector type. */
|
|
1256
|
+
connectorType: FeedConnectorTypes;
|
|
1257
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
1258
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
|
1259
|
+
/** Feed service type. */
|
|
1260
|
+
type: FeedServiceTypes;
|
|
1261
|
+
};
|
|
1262
|
+
/** Represents entity feed properties. */
|
|
1263
|
+
export type CrmFeedPropertiesInput = {
|
|
1264
|
+
/** Attio CRM properties. */
|
|
1265
|
+
attio?: InputMaybe<AttioCrmFeedPropertiesInput>;
|
|
1266
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
1267
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
1268
|
+
/** Feed service type. */
|
|
1269
|
+
type: FeedServiceTypes;
|
|
1270
|
+
};
|
|
1271
|
+
/** Represents entity feed properties. */
|
|
1272
|
+
export type CrmFeedPropertiesUpdateInput = {
|
|
1273
|
+
/** Attio CRM properties. */
|
|
1274
|
+
attio?: InputMaybe<AttioCrmFeedPropertiesUpdateInput>;
|
|
1275
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
1276
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
1277
|
+
};
|
|
1187
1278
|
/** Represents a calendar event attendee. */
|
|
1188
1279
|
export type CalendarAttendee = {
|
|
1189
1280
|
__typename?: 'CalendarAttendee';
|
|
@@ -1967,6 +2058,8 @@ export type Content = {
|
|
|
1967
2058
|
fileCreationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1968
2059
|
/** The content file extension. */
|
|
1969
2060
|
fileExtension?: Maybe<Scalars['String']['output']>;
|
|
2061
|
+
/** The raw metadata from the source file system (blob metadata, file attributes, etc.) in JSON format. */
|
|
2062
|
+
fileMetadata?: Maybe<Scalars['String']['output']>;
|
|
1970
2063
|
/** The date when the file was last modified. */
|
|
1971
2064
|
fileModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1972
2065
|
/** The content file name. */
|
|
@@ -2500,6 +2593,8 @@ export type ContentPublishingConnector = {
|
|
|
2500
2593
|
openAIImage?: Maybe<OpenAiImagePublishingProperties>;
|
|
2501
2594
|
/** The specific properties for OpenAI Video publishing. */
|
|
2502
2595
|
openAIVideo?: Maybe<OpenAiVideoPublishingProperties>;
|
|
2596
|
+
/** The specific properties for Parallel research publishing. */
|
|
2597
|
+
parallel?: Maybe<ParallelPublishingProperties>;
|
|
2503
2598
|
/** The content publishing service type. */
|
|
2504
2599
|
type: ContentPublishingServiceTypes;
|
|
2505
2600
|
};
|
|
@@ -2515,6 +2610,8 @@ export type ContentPublishingConnectorInput = {
|
|
|
2515
2610
|
openAIImage?: InputMaybe<OpenAiImagePublishingPropertiesInput>;
|
|
2516
2611
|
/** The specific properties for OpenAI Video publishing. */
|
|
2517
2612
|
openAIVideo?: InputMaybe<OpenAiVideoPublishingPropertiesInput>;
|
|
2613
|
+
/** The specific properties for Parallel research publishing. */
|
|
2614
|
+
parallel?: InputMaybe<ParallelPublishingPropertiesInput>;
|
|
2518
2615
|
/** The content publishing service type. */
|
|
2519
2616
|
type: ContentPublishingServiceTypes;
|
|
2520
2617
|
};
|
|
@@ -2530,6 +2627,8 @@ export type ContentPublishingConnectorUpdateInput = {
|
|
|
2530
2627
|
openAIImage?: InputMaybe<OpenAiImagePublishingPropertiesInput>;
|
|
2531
2628
|
/** The specific properties for OpenAI Video publishing. */
|
|
2532
2629
|
openAIVideo?: InputMaybe<OpenAiVideoPublishingPropertiesInput>;
|
|
2630
|
+
/** The specific properties for Parallel research publishing. */
|
|
2631
|
+
parallel?: InputMaybe<ParallelPublishingPropertiesInput>;
|
|
2533
2632
|
/** The content publishing service type. */
|
|
2534
2633
|
type: ContentPublishingServiceTypes;
|
|
2535
2634
|
};
|
|
@@ -2561,6 +2660,8 @@ export declare enum ContentPublishingServiceTypes {
|
|
|
2561
2660
|
OpenAiImage = "OPEN_AI_IMAGE",
|
|
2562
2661
|
/** OpenAI Video publishing */
|
|
2563
2662
|
OpenAiVideo = "OPEN_AI_VIDEO",
|
|
2663
|
+
/** Parallel research publishing */
|
|
2664
|
+
ParallelResearch = "PARALLEL_RESEARCH",
|
|
2564
2665
|
/** Text publishing */
|
|
2565
2666
|
Text = "TEXT"
|
|
2566
2667
|
}
|
|
@@ -3830,6 +3931,8 @@ export declare enum EntityEnrichmentServiceTypes {
|
|
|
3830
3931
|
Diffbot = "DIFFBOT",
|
|
3831
3932
|
/** FHIR */
|
|
3832
3933
|
Fhir = "FHIR",
|
|
3934
|
+
/** Parallel */
|
|
3935
|
+
Parallel = "PARALLEL",
|
|
3833
3936
|
/** Wikipedia */
|
|
3834
3937
|
Wikipedia = "WIKIPEDIA"
|
|
3835
3938
|
}
|
|
@@ -3894,6 +3997,40 @@ export declare enum EntityExtractionServiceTypes {
|
|
|
3894
3997
|
*/
|
|
3895
3998
|
OpenAiImage = "OPEN_AI_IMAGE"
|
|
3896
3999
|
}
|
|
4000
|
+
/** Represents entity discovery feed properties. */
|
|
4001
|
+
export type EntityFeedProperties = {
|
|
4002
|
+
__typename?: 'EntityFeedProperties';
|
|
4003
|
+
/** Feed connector type. */
|
|
4004
|
+
connectorType: FeedConnectorTypes;
|
|
4005
|
+
/** Parallel entity discovery properties. */
|
|
4006
|
+
parallel?: Maybe<ParallelEntityFeedProperties>;
|
|
4007
|
+
/** Natural language search query for entity discovery. */
|
|
4008
|
+
query: Scalars['String']['output'];
|
|
4009
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
4010
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
|
4011
|
+
/** Feed service type. */
|
|
4012
|
+
type: FeedServiceTypes;
|
|
4013
|
+
};
|
|
4014
|
+
/** Represents entity discovery feed properties. */
|
|
4015
|
+
export type EntityFeedPropertiesInput = {
|
|
4016
|
+
/** Parallel-specific properties. */
|
|
4017
|
+
parallel?: InputMaybe<ParallelEntityFeedPropertiesInput>;
|
|
4018
|
+
/** Natural language search query for entity discovery. */
|
|
4019
|
+
query: Scalars['String']['input'];
|
|
4020
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
4021
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
4022
|
+
/** Feed service type. */
|
|
4023
|
+
type: FeedServiceTypes;
|
|
4024
|
+
};
|
|
4025
|
+
/** Represents entity discovery feed properties. */
|
|
4026
|
+
export type EntityFeedPropertiesUpdateInput = {
|
|
4027
|
+
/** Parallel-specific properties. */
|
|
4028
|
+
parallel?: InputMaybe<ParallelEntityFeedPropertiesUpdateInput>;
|
|
4029
|
+
/** Natural language search query for entity discovery. */
|
|
4030
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4031
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
4032
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
4033
|
+
};
|
|
3897
4034
|
/** Represents an entity reference. */
|
|
3898
4035
|
export type EntityReference = {
|
|
3899
4036
|
__typename?: 'EntityReference';
|
|
@@ -3985,6 +4122,10 @@ export declare enum EntityTypes {
|
|
|
3985
4122
|
Event = "EVENT",
|
|
3986
4123
|
/** Feed */
|
|
3987
4124
|
Feed = "FEED",
|
|
4125
|
+
/** Investment */
|
|
4126
|
+
Investment = "INVESTMENT",
|
|
4127
|
+
/** Investment fund */
|
|
4128
|
+
InvestmentFund = "INVESTMENT_FUND",
|
|
3988
4129
|
/** Job */
|
|
3989
4130
|
Job = "JOB",
|
|
3990
4131
|
/** Label */
|
|
@@ -4144,7 +4285,7 @@ export type EventFilter = {
|
|
|
4144
4285
|
/** Filter by event availability start date range. */
|
|
4145
4286
|
availabilityStartDateRange?: InputMaybe<DateRangeFilter>;
|
|
4146
4287
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
4147
|
-
boundaries?: InputMaybe<Array<
|
|
4288
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4148
4289
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return event(s) created in the last 24 hours. */
|
|
4149
4290
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
4150
4291
|
/** Filter event(s) by their creation date range. */
|
|
@@ -4153,6 +4294,8 @@ export type EventFilter = {
|
|
|
4153
4294
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
4154
4295
|
/** Filter by event end date range. */
|
|
4155
4296
|
endDateRange?: InputMaybe<DateRangeFilter>;
|
|
4297
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
4298
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
4156
4299
|
/** Filter by observable H3 index. */
|
|
4157
4300
|
h3?: InputMaybe<H3Filter>;
|
|
4158
4301
|
/** Filter event(s) by their unique ID. */
|
|
@@ -4434,6 +4577,8 @@ export declare enum FacetValueTypes {
|
|
|
4434
4577
|
/** Represents a feed. */
|
|
4435
4578
|
export type Feed = {
|
|
4436
4579
|
__typename?: 'Feed';
|
|
4580
|
+
/** The Attio feed properties. */
|
|
4581
|
+
attio?: Maybe<AttioFeedProperties>;
|
|
4437
4582
|
/** The calendar feed properties. */
|
|
4438
4583
|
calendar?: Maybe<CalendarFeedProperties>;
|
|
4439
4584
|
/** The commit feed properties. */
|
|
@@ -4444,12 +4589,16 @@ export type Feed = {
|
|
|
4444
4589
|
correlationId?: Maybe<Scalars['String']['output']>;
|
|
4445
4590
|
/** The creation date of the feed. */
|
|
4446
4591
|
creationDate: Scalars['DateTime']['output'];
|
|
4592
|
+
/** The CRM feed properties. */
|
|
4593
|
+
crm?: Maybe<CrmFeedProperties>;
|
|
4447
4594
|
/** The feed description. */
|
|
4448
4595
|
description?: Maybe<Scalars['String']['output']>;
|
|
4449
4596
|
/** The Discord feed properties. */
|
|
4450
4597
|
discord?: Maybe<DiscordFeedProperties>;
|
|
4451
4598
|
/** The email feed properties. */
|
|
4452
4599
|
email?: Maybe<EmailFeedProperties>;
|
|
4600
|
+
/** The Entity discovery feed properties. */
|
|
4601
|
+
entity?: Maybe<EntityFeedProperties>;
|
|
4453
4602
|
/** If feed failed, the error message. */
|
|
4454
4603
|
error?: Maybe<Scalars['String']['output']>;
|
|
4455
4604
|
/** The ID of the feed. */
|
|
@@ -4480,6 +4629,8 @@ export type Feed = {
|
|
|
4480
4629
|
reddit?: Maybe<RedditFeedProperties>;
|
|
4481
4630
|
/** The relevance score of the feed. */
|
|
4482
4631
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
4632
|
+
/** The Research feed properties. */
|
|
4633
|
+
research?: Maybe<ResearchFeedProperties>;
|
|
4483
4634
|
/** The RSS feed properties. */
|
|
4484
4635
|
rss?: Maybe<RssFeedProperties>;
|
|
4485
4636
|
/** The feed schedule policy. */
|
|
@@ -4512,6 +4663,8 @@ export declare enum FeedConnectorTypes {
|
|
|
4512
4663
|
Amazon = "AMAZON",
|
|
4513
4664
|
/** Atlassian feed connector */
|
|
4514
4665
|
Atlassian = "ATLASSIAN",
|
|
4666
|
+
/** Attio feed connector */
|
|
4667
|
+
Attio = "ATTIO",
|
|
4515
4668
|
/** Microsoft Azure feed connector */
|
|
4516
4669
|
Azure = "AZURE",
|
|
4517
4670
|
/** Box feed connector */
|
|
@@ -4538,6 +4691,8 @@ export declare enum FeedConnectorTypes {
|
|
|
4538
4691
|
MicrosoftEmail = "MICROSOFT_EMAIL",
|
|
4539
4692
|
/** Microsoft OneDrive feed connector */
|
|
4540
4693
|
OneDrive = "ONE_DRIVE",
|
|
4694
|
+
/** Parallel feed connector */
|
|
4695
|
+
Parallel = "PARALLEL",
|
|
4541
4696
|
/** Microsoft SharePoint feed connector */
|
|
4542
4697
|
SharePoint = "SHARE_POINT",
|
|
4543
4698
|
/** Zendesk feed connector */
|
|
@@ -4574,16 +4729,22 @@ export type FeedFilter = {
|
|
|
4574
4729
|
};
|
|
4575
4730
|
/** Represents a feed. */
|
|
4576
4731
|
export type FeedInput = {
|
|
4732
|
+
/** The Attio feed properties. */
|
|
4733
|
+
attio?: InputMaybe<AttioFeedPropertiesInput>;
|
|
4577
4734
|
/** The calendar feed properties. */
|
|
4578
4735
|
calendar?: InputMaybe<CalendarFeedPropertiesInput>;
|
|
4579
4736
|
/** The commit feed properties. */
|
|
4580
4737
|
commit?: InputMaybe<CommitFeedPropertiesInput>;
|
|
4738
|
+
/** The CRM feed properties. */
|
|
4739
|
+
crm?: InputMaybe<CrmFeedPropertiesInput>;
|
|
4581
4740
|
/** The feed description. */
|
|
4582
4741
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4583
4742
|
/** The Discord feed properties. */
|
|
4584
4743
|
discord?: InputMaybe<DiscordFeedPropertiesInput>;
|
|
4585
4744
|
/** The email feed properties. */
|
|
4586
4745
|
email?: InputMaybe<EmailFeedPropertiesInput>;
|
|
4746
|
+
/** The Entity discovery feed properties. */
|
|
4747
|
+
entity?: InputMaybe<EntityFeedPropertiesInput>;
|
|
4587
4748
|
/** The Intercom feed properties. */
|
|
4588
4749
|
intercom?: InputMaybe<IntercomFeedPropertiesInput>;
|
|
4589
4750
|
/** The issue feed properties. */
|
|
@@ -4598,6 +4759,8 @@ export type FeedInput = {
|
|
|
4598
4759
|
pullRequest?: InputMaybe<PullRequestFeedPropertiesInput>;
|
|
4599
4760
|
/** The Reddit feed properties. */
|
|
4600
4761
|
reddit?: InputMaybe<RedditFeedPropertiesInput>;
|
|
4762
|
+
/** The Research feed properties. */
|
|
4763
|
+
research?: InputMaybe<ResearchFeedPropertiesInput>;
|
|
4601
4764
|
/** The RSS feed properties. */
|
|
4602
4765
|
rss?: InputMaybe<RssFeedPropertiesInput>;
|
|
4603
4766
|
/** The feed schedule policy. */
|
|
@@ -4655,6 +4818,12 @@ export type FeedSchedulePolicyInput = {
|
|
|
4655
4818
|
export declare enum FeedServiceTypes {
|
|
4656
4819
|
/** Atlassian Jira feed service */
|
|
4657
4820
|
AtlassianJira = "ATLASSIAN_JIRA",
|
|
4821
|
+
/** Attio Notes feed service */
|
|
4822
|
+
AttioNotes = "ATTIO_NOTES",
|
|
4823
|
+
/** Attio Objects feed service */
|
|
4824
|
+
AttioObjects = "ATTIO_OBJECTS",
|
|
4825
|
+
/** Attio Tasks feed service */
|
|
4826
|
+
AttioTasks = "ATTIO_TASKS",
|
|
4658
4827
|
/** Azure Blob feed service */
|
|
4659
4828
|
AzureBlob = "AZURE_BLOB",
|
|
4660
4829
|
/** Azure File feed service */
|
|
@@ -4691,6 +4860,8 @@ export declare enum FeedServiceTypes {
|
|
|
4691
4860
|
MicrosoftEmail = "MICROSOFT_EMAIL",
|
|
4692
4861
|
/** Microsoft OneDrive feed service */
|
|
4693
4862
|
OneDrive = "ONE_DRIVE",
|
|
4863
|
+
/** Parallel feed service */
|
|
4864
|
+
Parallel = "PARALLEL",
|
|
4694
4865
|
/** AWS S3 Blob feed service */
|
|
4695
4866
|
S3Blob = "S3_BLOB",
|
|
4696
4867
|
/** Microsoft SharePoint feed service */
|
|
@@ -4711,14 +4882,20 @@ export declare enum FeedSyncMode {
|
|
|
4711
4882
|
}
|
|
4712
4883
|
/** Feed type */
|
|
4713
4884
|
export declare enum FeedTypes {
|
|
4885
|
+
/** Attio feed */
|
|
4886
|
+
Attio = "ATTIO",
|
|
4714
4887
|
/** Calendar feed */
|
|
4715
4888
|
Calendar = "CALENDAR",
|
|
4716
4889
|
/** Commit feed */
|
|
4717
4890
|
Commit = "COMMIT",
|
|
4891
|
+
/** CRM feed */
|
|
4892
|
+
Crm = "CRM",
|
|
4718
4893
|
/** Discord channel feed */
|
|
4719
4894
|
Discord = "DISCORD",
|
|
4720
4895
|
/** Email feed */
|
|
4721
4896
|
Email = "EMAIL",
|
|
4897
|
+
/** Entity discovery feed */
|
|
4898
|
+
Entity = "ENTITY",
|
|
4722
4899
|
/** Intercom articles feed */
|
|
4723
4900
|
Intercom = "INTERCOM",
|
|
4724
4901
|
/** Issue feed */
|
|
@@ -4731,6 +4908,8 @@ export declare enum FeedTypes {
|
|
|
4731
4908
|
PullRequest = "PULL_REQUEST",
|
|
4732
4909
|
/** Reddit feed */
|
|
4733
4910
|
Reddit = "REDDIT",
|
|
4911
|
+
/** Research feed */
|
|
4912
|
+
Research = "RESEARCH",
|
|
4734
4913
|
/** RSS feed */
|
|
4735
4914
|
Rss = "RSS",
|
|
4736
4915
|
/** Web Search feed */
|
|
@@ -4750,16 +4929,22 @@ export declare enum FeedTypes {
|
|
|
4750
4929
|
}
|
|
4751
4930
|
/** Represents a feed. */
|
|
4752
4931
|
export type FeedUpdateInput = {
|
|
4932
|
+
/** The Attio feed properties. */
|
|
4933
|
+
attio?: InputMaybe<AttioFeedPropertiesUpdateInput>;
|
|
4753
4934
|
/** The calendar feed properties. */
|
|
4754
4935
|
calendar?: InputMaybe<CalendarFeedPropertiesUpdateInput>;
|
|
4755
4936
|
/** The commit feed properties. */
|
|
4756
4937
|
commit?: InputMaybe<CommitFeedPropertiesUpdateInput>;
|
|
4938
|
+
/** The CRM feed properties. */
|
|
4939
|
+
crm?: InputMaybe<CrmFeedPropertiesUpdateInput>;
|
|
4757
4940
|
/** The feed description. */
|
|
4758
4941
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4759
4942
|
/** The Discord feed properties. */
|
|
4760
4943
|
discord?: InputMaybe<DiscordFeedPropertiesUpdateInput>;
|
|
4761
4944
|
/** The email feed properties. */
|
|
4762
4945
|
email?: InputMaybe<EmailFeedPropertiesUpdateInput>;
|
|
4946
|
+
/** The Entity discovery feed properties. */
|
|
4947
|
+
entity?: InputMaybe<EntityFeedPropertiesUpdateInput>;
|
|
4763
4948
|
/** The ID of the feed to update. */
|
|
4764
4949
|
id: Scalars['ID']['input'];
|
|
4765
4950
|
/** The Intercom feed properties. */
|
|
@@ -4776,6 +4961,8 @@ export type FeedUpdateInput = {
|
|
|
4776
4961
|
pullRequest?: InputMaybe<PullRequestFeedPropertiesUpdateInput>;
|
|
4777
4962
|
/** The Reddit feed properties. */
|
|
4778
4963
|
reddit?: InputMaybe<RedditFeedPropertiesUpdateInput>;
|
|
4964
|
+
/** The Research feed properties. */
|
|
4965
|
+
research?: InputMaybe<ResearchFeedPropertiesUpdateInput>;
|
|
4779
4966
|
/** The RSS feed properties. */
|
|
4780
4967
|
rss?: InputMaybe<RssFeedPropertiesUpdateInput>;
|
|
4781
4968
|
/** The feed schedule policy. */
|
|
@@ -5689,6 +5876,36 @@ export type GraphEdge = {
|
|
|
5689
5876
|
/** The destination node identifier of the knowledge graph edge. */
|
|
5690
5877
|
to: Scalars['ID']['output'];
|
|
5691
5878
|
};
|
|
5879
|
+
/** Filter for querying entity knowledge graphs. */
|
|
5880
|
+
export type GraphFilter = {
|
|
5881
|
+
/** Filter by geo-boundaries (GeoJSON Polygon). */
|
|
5882
|
+
boundaries?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5883
|
+
/** Filter by recently created entities (e.g., last 7 days). */
|
|
5884
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
5885
|
+
/** Filter by entity creation date range. */
|
|
5886
|
+
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
5887
|
+
/** Filter by source feeds. */
|
|
5888
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
5889
|
+
/** Filter by H3 hexagon index. */
|
|
5890
|
+
h3?: InputMaybe<H3Filter>;
|
|
5891
|
+
/** Pagination limit. Defaults to 100. */
|
|
5892
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
5893
|
+
/** Filter by geo-location. */
|
|
5894
|
+
location?: InputMaybe<PointFilter>;
|
|
5895
|
+
/** Pagination offset. */
|
|
5896
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
5897
|
+
/** Search text for entity names/descriptions. */
|
|
5898
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
5899
|
+
/** Search type (Keyword, Vector, Hybrid). Defaults to Vector. */
|
|
5900
|
+
searchType?: InputMaybe<SearchTypes>;
|
|
5901
|
+
/** Filter by entity types (Organization, Person, Place, etc.). Required. */
|
|
5902
|
+
types?: InputMaybe<Array<ObservableTypes>>;
|
|
5903
|
+
};
|
|
5904
|
+
/** Configuration for knowledge graph retrieval. */
|
|
5905
|
+
export type GraphInput = {
|
|
5906
|
+
/** Entity types to include in graph. */
|
|
5907
|
+
types?: InputMaybe<Array<ObservableTypes>>;
|
|
5908
|
+
};
|
|
5692
5909
|
/** Represents a knowledge graph node. */
|
|
5693
5910
|
export type GraphNode = {
|
|
5694
5911
|
__typename?: 'GraphNode';
|
|
@@ -6296,9 +6513,309 @@ export type IntercomTicketsFeedPropertiesUpdateInput = {
|
|
|
6296
6513
|
/** Intercom access token. */
|
|
6297
6514
|
accessToken?: InputMaybe<Scalars['String']['input']>;
|
|
6298
6515
|
};
|
|
6516
|
+
/** Represents an investment. */
|
|
6517
|
+
export type Investment = {
|
|
6518
|
+
__typename?: 'Investment';
|
|
6519
|
+
/** The alternate names of the investment. */
|
|
6520
|
+
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6521
|
+
/** The geo-boundary of the investment, as GeoJSON Feature with Polygon geometry. */
|
|
6522
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
|
6523
|
+
/** The creation date of the investment. */
|
|
6524
|
+
creationDate: Scalars['DateTime']['output'];
|
|
6525
|
+
/** The investment description. */
|
|
6526
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6527
|
+
/** The EPSG code for spatial reference of the investment. */
|
|
6528
|
+
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6529
|
+
/** The H3 index of the investment. */
|
|
6530
|
+
h3?: Maybe<H3>;
|
|
6531
|
+
/** The ID of the investment. */
|
|
6532
|
+
id: Scalars['ID']['output'];
|
|
6533
|
+
/** The investment external identifier. */
|
|
6534
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
6535
|
+
/** The extracted hyperlinks. */
|
|
6536
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6537
|
+
/** The geo-location of the investment. */
|
|
6538
|
+
location?: Maybe<Point>;
|
|
6539
|
+
/** The modified date of the investment. */
|
|
6540
|
+
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6541
|
+
/** The name of the investment. */
|
|
6542
|
+
name: Scalars['String']['output'];
|
|
6543
|
+
/** The relevance score of the investment. */
|
|
6544
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6545
|
+
/** The state of the investment (i.e. created, enabled). */
|
|
6546
|
+
state: EntityState;
|
|
6547
|
+
/** The JSON-LD value of the investment. */
|
|
6548
|
+
thing?: Maybe<Scalars['String']['output']>;
|
|
6549
|
+
/** The investment URI. */
|
|
6550
|
+
uri?: Maybe<Scalars['URL']['output']>;
|
|
6551
|
+
};
|
|
6552
|
+
/** Represents an investment facet. */
|
|
6553
|
+
export type InvestmentFacet = {
|
|
6554
|
+
__typename?: 'InvestmentFacet';
|
|
6555
|
+
/** The facet count. */
|
|
6556
|
+
count?: Maybe<Scalars['Long']['output']>;
|
|
6557
|
+
/** The investment facet type. */
|
|
6558
|
+
facet?: Maybe<InvestmentFacetTypes>;
|
|
6559
|
+
/** The facet value range. */
|
|
6560
|
+
range?: Maybe<StringRange>;
|
|
6561
|
+
/** The facet value type. */
|
|
6562
|
+
type?: Maybe<FacetValueTypes>;
|
|
6563
|
+
/** The facet value. */
|
|
6564
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
6565
|
+
};
|
|
6566
|
+
/** Represents the configuration for investment facets. */
|
|
6567
|
+
export type InvestmentFacetInput = {
|
|
6568
|
+
/** The investment facet type. */
|
|
6569
|
+
facet?: InputMaybe<InvestmentFacetTypes>;
|
|
6570
|
+
/** The facet time interval. */
|
|
6571
|
+
timeInterval?: InputMaybe<TimeIntervalTypes>;
|
|
6572
|
+
/** The facet time offset (in hours). */
|
|
6573
|
+
timeOffset?: InputMaybe<Scalars['Int']['input']>;
|
|
6574
|
+
};
|
|
6575
|
+
/** Investment facet types */
|
|
6576
|
+
export declare enum InvestmentFacetTypes {
|
|
6577
|
+
/** Creation Date */
|
|
6578
|
+
CreationDate = "CREATION_DATE"
|
|
6579
|
+
}
|
|
6580
|
+
/** Represents a filter for investments. */
|
|
6581
|
+
export type InvestmentFilter = {
|
|
6582
|
+
/** Filter by observable physical address. */
|
|
6583
|
+
address?: InputMaybe<AddressFilter>;
|
|
6584
|
+
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
6585
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6586
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return investment(s) created in the last 24 hours. */
|
|
6587
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6588
|
+
/** Filter investment(s) by their creation date range. */
|
|
6589
|
+
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
6590
|
+
/** The sort direction for query results. */
|
|
6591
|
+
direction?: InputMaybe<OrderDirectionTypes>;
|
|
6592
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
6593
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
6594
|
+
/** Filter by observable H3 index. */
|
|
6595
|
+
h3?: InputMaybe<H3Filter>;
|
|
6596
|
+
/** Filter investment(s) by their unique ID. */
|
|
6597
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
6598
|
+
/** Limit the number of investment(s) to be returned. Defaults to 100. */
|
|
6599
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6600
|
+
/** Filter by observable geo-location. */
|
|
6601
|
+
location?: InputMaybe<PointFilter>;
|
|
6602
|
+
/** Filter investment(s) by their modified date range. */
|
|
6603
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
6604
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return investment(s) modified in the last 24 hours. */
|
|
6605
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6606
|
+
/** Filter investment(s) by their name. */
|
|
6607
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6608
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
6609
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
|
6610
|
+
/** Skip the specified number of investment(s) from the beginning of the result set. Only supported on keyword search. */
|
|
6611
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6612
|
+
/** The sort order for query results. */
|
|
6613
|
+
orderBy?: InputMaybe<OrderByTypes>;
|
|
6614
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
|
6615
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
|
6616
|
+
/** Filter investment(s) by searching for similar text. */
|
|
6617
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
6618
|
+
/** The type of search to be used. Defaults to Vector. */
|
|
6619
|
+
searchType?: InputMaybe<SearchTypes>;
|
|
6620
|
+
/** Filter by similar investments. */
|
|
6621
|
+
similarInvestments?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
6622
|
+
/** Filter investment(s) by their states. */
|
|
6623
|
+
states?: InputMaybe<Array<EntityState>>;
|
|
6624
|
+
};
|
|
6625
|
+
/** Represents an investment fund. */
|
|
6626
|
+
export type InvestmentFund = {
|
|
6627
|
+
__typename?: 'InvestmentFund';
|
|
6628
|
+
/** The alternate names of the investmentfund. */
|
|
6629
|
+
alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6630
|
+
/** The geo-boundary of the investmentfund, as GeoJSON Feature with Polygon geometry. */
|
|
6631
|
+
boundary?: Maybe<Scalars['String']['output']>;
|
|
6632
|
+
/** The creation date of the investmentfund. */
|
|
6633
|
+
creationDate: Scalars['DateTime']['output'];
|
|
6634
|
+
/** The investmentfund description. */
|
|
6635
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6636
|
+
/** The EPSG code for spatial reference of the investmentfund. */
|
|
6637
|
+
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6638
|
+
/** The H3 index of the investmentfund. */
|
|
6639
|
+
h3?: Maybe<H3>;
|
|
6640
|
+
/** The ID of the investmentfund. */
|
|
6641
|
+
id: Scalars['ID']['output'];
|
|
6642
|
+
/** The investmentfund external identifier. */
|
|
6643
|
+
identifier?: Maybe<Scalars['String']['output']>;
|
|
6644
|
+
/** The extracted hyperlinks. */
|
|
6645
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6646
|
+
/** The geo-location of the investmentfund. */
|
|
6647
|
+
location?: Maybe<Point>;
|
|
6648
|
+
/** The modified date of the investmentfund. */
|
|
6649
|
+
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6650
|
+
/** The name of the investmentfund. */
|
|
6651
|
+
name: Scalars['String']['output'];
|
|
6652
|
+
/** The relevance score of the investmentfund. */
|
|
6653
|
+
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6654
|
+
/** The state of the investmentfund (i.e. created, enabled). */
|
|
6655
|
+
state: EntityState;
|
|
6656
|
+
/** The JSON-LD value of the investmentfund. */
|
|
6657
|
+
thing?: Maybe<Scalars['String']['output']>;
|
|
6658
|
+
/** The investmentfund URI. */
|
|
6659
|
+
uri?: Maybe<Scalars['URL']['output']>;
|
|
6660
|
+
};
|
|
6661
|
+
/** Represents an investment fund facet. */
|
|
6662
|
+
export type InvestmentFundFacet = {
|
|
6663
|
+
__typename?: 'InvestmentFundFacet';
|
|
6664
|
+
/** The facet count. */
|
|
6665
|
+
count?: Maybe<Scalars['Long']['output']>;
|
|
6666
|
+
/** The investment fund facet type. */
|
|
6667
|
+
facet?: Maybe<InvestmentFundFacetTypes>;
|
|
6668
|
+
/** The facet value range. */
|
|
6669
|
+
range?: Maybe<StringRange>;
|
|
6670
|
+
/** The facet value type. */
|
|
6671
|
+
type?: Maybe<FacetValueTypes>;
|
|
6672
|
+
/** The facet value. */
|
|
6673
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
6674
|
+
};
|
|
6675
|
+
/** Represents the configuration for investment fund facets. */
|
|
6676
|
+
export type InvestmentFundFacetInput = {
|
|
6677
|
+
/** The investment fund facet type. */
|
|
6678
|
+
facet?: InputMaybe<InvestmentFundFacetTypes>;
|
|
6679
|
+
/** The facet time interval. */
|
|
6680
|
+
timeInterval?: InputMaybe<TimeIntervalTypes>;
|
|
6681
|
+
/** The facet time offset (in hours). */
|
|
6682
|
+
timeOffset?: InputMaybe<Scalars['Int']['input']>;
|
|
6683
|
+
};
|
|
6684
|
+
/** Investment fund facet types */
|
|
6685
|
+
export declare enum InvestmentFundFacetTypes {
|
|
6686
|
+
/** Creation Date */
|
|
6687
|
+
CreationDate = "CREATION_DATE"
|
|
6688
|
+
}
|
|
6689
|
+
/** Represents a filter for investment funds. */
|
|
6690
|
+
export type InvestmentFundFilter = {
|
|
6691
|
+
/** Filter by observable physical address. */
|
|
6692
|
+
address?: InputMaybe<AddressFilter>;
|
|
6693
|
+
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
6694
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6695
|
+
/** Filter by creation date recent timespan. For example, a timespan of one day will return investmentfund(s) created in the last 24 hours. */
|
|
6696
|
+
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6697
|
+
/** Filter investmentfund(s) by their creation date range. */
|
|
6698
|
+
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
6699
|
+
/** The sort direction for query results. */
|
|
6700
|
+
direction?: InputMaybe<OrderDirectionTypes>;
|
|
6701
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
6702
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
6703
|
+
/** Filter by observable H3 index. */
|
|
6704
|
+
h3?: InputMaybe<H3Filter>;
|
|
6705
|
+
/** Filter investmentfund(s) by their unique ID. */
|
|
6706
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
6707
|
+
/** Limit the number of investmentfund(s) to be returned. Defaults to 100. */
|
|
6708
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6709
|
+
/** Filter by observable geo-location. */
|
|
6710
|
+
location?: InputMaybe<PointFilter>;
|
|
6711
|
+
/** Filter investmentfund(s) by their modified date range. */
|
|
6712
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
6713
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return investmentfund(s) modified in the last 24 hours. */
|
|
6714
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6715
|
+
/** Filter investmentfund(s) by their name. */
|
|
6716
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6717
|
+
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
6718
|
+
numberSimilar?: InputMaybe<Scalars['Int']['input']>;
|
|
6719
|
+
/** Skip the specified number of investmentfund(s) from the beginning of the result set. Only supported on keyword search. */
|
|
6720
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6721
|
+
/** The sort order for query results. */
|
|
6722
|
+
orderBy?: InputMaybe<OrderByTypes>;
|
|
6723
|
+
/** The query syntax for the search text. Defaults to Simple. */
|
|
6724
|
+
queryType?: InputMaybe<SearchQueryTypes>;
|
|
6725
|
+
/** Filter investmentfund(s) by searching for similar text. */
|
|
6726
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
6727
|
+
/** The type of search to be used. Defaults to Vector. */
|
|
6728
|
+
searchType?: InputMaybe<SearchTypes>;
|
|
6729
|
+
/** Filter by similar investment funds. */
|
|
6730
|
+
similarInvestmentFunds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
6731
|
+
/** Filter investmentfund(s) by their states. */
|
|
6732
|
+
states?: InputMaybe<Array<EntityState>>;
|
|
6733
|
+
};
|
|
6734
|
+
/** Represents an investment fund. */
|
|
6735
|
+
export type InvestmentFundInput = {
|
|
6736
|
+
/** The investmentfund geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6737
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6738
|
+
/** The investmentfund description. */
|
|
6739
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6740
|
+
/** The investmentfund external identifier. */
|
|
6741
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
6742
|
+
/** The investmentfund geo-location. */
|
|
6743
|
+
location?: InputMaybe<PointInput>;
|
|
6744
|
+
/** The name of the investmentfund. */
|
|
6745
|
+
name: Scalars['String']['input'];
|
|
6746
|
+
/** The investmentfund URI. */
|
|
6747
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6748
|
+
};
|
|
6749
|
+
/** Represents investment fund query results. */
|
|
6750
|
+
export type InvestmentFundResults = {
|
|
6751
|
+
__typename?: 'InvestmentFundResults';
|
|
6752
|
+
/** The investment fund facets. */
|
|
6753
|
+
facets?: Maybe<Array<Maybe<InvestmentFundFacet>>>;
|
|
6754
|
+
/** The investment fund results. */
|
|
6755
|
+
results?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
6756
|
+
};
|
|
6757
|
+
/** Represents an investment fund. */
|
|
6758
|
+
export type InvestmentFundUpdateInput = {
|
|
6759
|
+
/** The investmentfund geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6760
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6761
|
+
/** The investmentfund description. */
|
|
6762
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6763
|
+
/** The ID of the investmentfund to update. */
|
|
6764
|
+
id: Scalars['ID']['input'];
|
|
6765
|
+
/** The investmentfund external identifier. */
|
|
6766
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
6767
|
+
/** The investmentfund geo-location. */
|
|
6768
|
+
location?: InputMaybe<PointInput>;
|
|
6769
|
+
/** The name of the investmentfund. */
|
|
6770
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6771
|
+
/** The investmentfund URI. */
|
|
6772
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6773
|
+
};
|
|
6774
|
+
/** Represents an investment. */
|
|
6775
|
+
export type InvestmentInput = {
|
|
6776
|
+
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6777
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6778
|
+
/** The investment description. */
|
|
6779
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6780
|
+
/** The investment external identifier. */
|
|
6781
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
6782
|
+
/** The investment geo-location. */
|
|
6783
|
+
location?: InputMaybe<PointInput>;
|
|
6784
|
+
/** The name of the investment. */
|
|
6785
|
+
name: Scalars['String']['input'];
|
|
6786
|
+
/** The investment URI. */
|
|
6787
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6788
|
+
};
|
|
6789
|
+
/** Represents investment query results. */
|
|
6790
|
+
export type InvestmentResults = {
|
|
6791
|
+
__typename?: 'InvestmentResults';
|
|
6792
|
+
/** The investment facets. */
|
|
6793
|
+
facets?: Maybe<Array<Maybe<InvestmentFacet>>>;
|
|
6794
|
+
/** The investment results. */
|
|
6795
|
+
results?: Maybe<Array<Maybe<Investment>>>;
|
|
6796
|
+
};
|
|
6797
|
+
/** Represents an investment. */
|
|
6798
|
+
export type InvestmentUpdateInput = {
|
|
6799
|
+
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6800
|
+
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6801
|
+
/** The investment description. */
|
|
6802
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6803
|
+
/** The ID of the investment to update. */
|
|
6804
|
+
id: Scalars['ID']['input'];
|
|
6805
|
+
/** The investment external identifier. */
|
|
6806
|
+
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
6807
|
+
/** The investment geo-location. */
|
|
6808
|
+
location?: InputMaybe<PointInput>;
|
|
6809
|
+
/** The name of the investment. */
|
|
6810
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6811
|
+
/** The investment URI. */
|
|
6812
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6813
|
+
};
|
|
6299
6814
|
/** Represents issue feed properties. */
|
|
6300
6815
|
export type IssueFeedProperties = {
|
|
6301
6816
|
__typename?: 'IssueFeedProperties';
|
|
6817
|
+
/** Attio Tasks properties. */
|
|
6818
|
+
attio?: Maybe<AttioTasksFeedProperties>;
|
|
6302
6819
|
/** Feed connector type. */
|
|
6303
6820
|
connectorType: FeedConnectorTypes;
|
|
6304
6821
|
/** GitHub Issues properties. */
|
|
@@ -6322,6 +6839,8 @@ export type IssueFeedProperties = {
|
|
|
6322
6839
|
};
|
|
6323
6840
|
/** Represents issue feed properties. */
|
|
6324
6841
|
export type IssueFeedPropertiesInput = {
|
|
6842
|
+
/** Attio Tasks properties. */
|
|
6843
|
+
attio?: InputMaybe<AttioTasksFeedPropertiesInput>;
|
|
6325
6844
|
/** GitHub Issues properties. */
|
|
6326
6845
|
github?: InputMaybe<GitHubIssuesFeedPropertiesInput>;
|
|
6327
6846
|
/** Should the issue feed include attachments. */
|
|
@@ -6343,6 +6862,8 @@ export type IssueFeedPropertiesInput = {
|
|
|
6343
6862
|
};
|
|
6344
6863
|
/** Represents issue feed properties. */
|
|
6345
6864
|
export type IssueFeedPropertiesUpdateInput = {
|
|
6865
|
+
/** Attio Tasks properties. */
|
|
6866
|
+
attio?: InputMaybe<AttioTasksFeedPropertiesUpdateInput>;
|
|
6346
6867
|
/** GitHub Issues properties. */
|
|
6347
6868
|
github?: InputMaybe<GitHubIssuesFeedPropertiesUpdateInput>;
|
|
6348
6869
|
/** Should the issue feed include attachments. */
|
|
@@ -6890,13 +7411,15 @@ export type MedicalConditionFilter = {
|
|
|
6890
7411
|
/** Filter by observable physical address. */
|
|
6891
7412
|
address?: InputMaybe<AddressFilter>;
|
|
6892
7413
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
6893
|
-
boundaries?: InputMaybe<Array<
|
|
7414
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6894
7415
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcondition(s) created in the last 24 hours. */
|
|
6895
7416
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6896
7417
|
/** Filter medicalcondition(s) by their creation date range. */
|
|
6897
7418
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
6898
7419
|
/** The sort direction for query results. */
|
|
6899
7420
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
7421
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
7422
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
6900
7423
|
/** Filter by observable H3 index. */
|
|
6901
7424
|
h3?: InputMaybe<H3Filter>;
|
|
6902
7425
|
/** Filter medicalcondition(s) by their unique ID. */
|
|
@@ -7037,13 +7560,15 @@ export type MedicalContraindicationFilter = {
|
|
|
7037
7560
|
/** Filter by observable physical address. */
|
|
7038
7561
|
address?: InputMaybe<AddressFilter>;
|
|
7039
7562
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
7040
|
-
boundaries?: InputMaybe<Array<
|
|
7563
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7041
7564
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalcontraindication(s) created in the last 24 hours. */
|
|
7042
7565
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7043
7566
|
/** Filter medicalcontraindication(s) by their creation date range. */
|
|
7044
7567
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
7045
7568
|
/** The sort direction for query results. */
|
|
7046
7569
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
7570
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
7571
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
7047
7572
|
/** Filter by observable H3 index. */
|
|
7048
7573
|
h3?: InputMaybe<H3Filter>;
|
|
7049
7574
|
/** Filter medicalcontraindication(s) by their unique ID. */
|
|
@@ -7184,13 +7709,15 @@ export type MedicalDeviceFilter = {
|
|
|
7184
7709
|
/** Filter by observable physical address. */
|
|
7185
7710
|
address?: InputMaybe<AddressFilter>;
|
|
7186
7711
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
7187
|
-
boundaries?: InputMaybe<Array<
|
|
7712
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7188
7713
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldevice(s) created in the last 24 hours. */
|
|
7189
7714
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7190
7715
|
/** Filter medicaldevice(s) by their creation date range. */
|
|
7191
7716
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
7192
7717
|
/** The sort direction for query results. */
|
|
7193
7718
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
7719
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
7720
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
7194
7721
|
/** Filter by observable H3 index. */
|
|
7195
7722
|
h3?: InputMaybe<H3Filter>;
|
|
7196
7723
|
/** Filter medicaldevice(s) by their unique ID. */
|
|
@@ -7367,13 +7894,15 @@ export type MedicalDrugClassFilter = {
|
|
|
7367
7894
|
/** Filter by observable physical address. */
|
|
7368
7895
|
address?: InputMaybe<AddressFilter>;
|
|
7369
7896
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
7370
|
-
boundaries?: InputMaybe<Array<
|
|
7897
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7371
7898
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldrugclass(s) created in the last 24 hours. */
|
|
7372
7899
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7373
7900
|
/** Filter medicaldrugclass(s) by their creation date range. */
|
|
7374
7901
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
7375
7902
|
/** The sort direction for query results. */
|
|
7376
7903
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
7904
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
7905
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
7377
7906
|
/** Filter by observable H3 index. */
|
|
7378
7907
|
h3?: InputMaybe<H3Filter>;
|
|
7379
7908
|
/** Filter medicaldrugclass(s) by their unique ID. */
|
|
@@ -7478,13 +8007,15 @@ export type MedicalDrugFilter = {
|
|
|
7478
8007
|
/** Filter by observable physical address. */
|
|
7479
8008
|
address?: InputMaybe<AddressFilter>;
|
|
7480
8009
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
7481
|
-
boundaries?: InputMaybe<Array<
|
|
8010
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7482
8011
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaldrug(s) created in the last 24 hours. */
|
|
7483
8012
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7484
8013
|
/** Filter medicaldrug(s) by their creation date range. */
|
|
7485
8014
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
7486
8015
|
/** The sort direction for query results. */
|
|
7487
8016
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
8017
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
8018
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
7488
8019
|
/** Filter by observable H3 index. */
|
|
7489
8020
|
h3?: InputMaybe<H3Filter>;
|
|
7490
8021
|
/** Filter medicaldrug(s) by their unique ID. */
|
|
@@ -7625,13 +8156,15 @@ export type MedicalGuidelineFilter = {
|
|
|
7625
8156
|
/** Filter by observable physical address. */
|
|
7626
8157
|
address?: InputMaybe<AddressFilter>;
|
|
7627
8158
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
7628
|
-
boundaries?: InputMaybe<Array<
|
|
8159
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7629
8160
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalguideline(s) created in the last 24 hours. */
|
|
7630
8161
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7631
8162
|
/** Filter medicalguideline(s) by their creation date range. */
|
|
7632
8163
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
7633
8164
|
/** The sort direction for query results. */
|
|
7634
8165
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
8166
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
8167
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
7635
8168
|
/** Filter by observable H3 index. */
|
|
7636
8169
|
h3?: InputMaybe<H3Filter>;
|
|
7637
8170
|
/** Filter medicalguideline(s) by their unique ID. */
|
|
@@ -7772,13 +8305,15 @@ export type MedicalIndicationFilter = {
|
|
|
7772
8305
|
/** Filter by observable physical address. */
|
|
7773
8306
|
address?: InputMaybe<AddressFilter>;
|
|
7774
8307
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
7775
|
-
boundaries?: InputMaybe<Array<
|
|
8308
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7776
8309
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalindication(s) created in the last 24 hours. */
|
|
7777
8310
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7778
8311
|
/** Filter medicalindication(s) by their creation date range. */
|
|
7779
8312
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
7780
8313
|
/** The sort direction for query results. */
|
|
7781
8314
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
8315
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
8316
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
7782
8317
|
/** Filter by observable H3 index. */
|
|
7783
8318
|
h3?: InputMaybe<H3Filter>;
|
|
7784
8319
|
/** Filter medicalindication(s) by their unique ID. */
|
|
@@ -7919,13 +8454,15 @@ export type MedicalProcedureFilter = {
|
|
|
7919
8454
|
/** Filter by observable physical address. */
|
|
7920
8455
|
address?: InputMaybe<AddressFilter>;
|
|
7921
8456
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
7922
|
-
boundaries?: InputMaybe<Array<
|
|
8457
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7923
8458
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalprocedure(s) created in the last 24 hours. */
|
|
7924
8459
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7925
8460
|
/** Filter medicalprocedure(s) by their creation date range. */
|
|
7926
8461
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
7927
8462
|
/** The sort direction for query results. */
|
|
7928
8463
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
8464
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
8465
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
7929
8466
|
/** Filter by observable H3 index. */
|
|
7930
8467
|
h3?: InputMaybe<H3Filter>;
|
|
7931
8468
|
/** Filter medicalprocedure(s) by their unique ID. */
|
|
@@ -8068,13 +8605,15 @@ export type MedicalStudyFilter = {
|
|
|
8068
8605
|
/** Filter by observable physical address. */
|
|
8069
8606
|
address?: InputMaybe<AddressFilter>;
|
|
8070
8607
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
8071
|
-
boundaries?: InputMaybe<Array<
|
|
8608
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8072
8609
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicalstudy(s) created in the last 24 hours. */
|
|
8073
8610
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
8074
8611
|
/** Filter medicalstudy(s) by their creation date range. */
|
|
8075
8612
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
8076
8613
|
/** The sort direction for query results. */
|
|
8077
8614
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
8615
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
8616
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
8078
8617
|
/** Filter by observable H3 index. */
|
|
8079
8618
|
h3?: InputMaybe<H3Filter>;
|
|
8080
8619
|
/** Filter medicalstudy(s) by their unique ID. */
|
|
@@ -8221,13 +8760,15 @@ export type MedicalTestFilter = {
|
|
|
8221
8760
|
/** Filter by observable physical address. */
|
|
8222
8761
|
address?: InputMaybe<AddressFilter>;
|
|
8223
8762
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
8224
|
-
boundaries?: InputMaybe<Array<
|
|
8763
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8225
8764
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaltest(s) created in the last 24 hours. */
|
|
8226
8765
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
8227
8766
|
/** Filter medicaltest(s) by their creation date range. */
|
|
8228
8767
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
8229
8768
|
/** The sort direction for query results. */
|
|
8230
8769
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
8770
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
8771
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
8231
8772
|
/** Filter by observable H3 index. */
|
|
8232
8773
|
h3?: InputMaybe<H3Filter>;
|
|
8233
8774
|
/** Filter medicaltest(s) by their unique ID. */
|
|
@@ -8368,13 +8909,15 @@ export type MedicalTherapyFilter = {
|
|
|
8368
8909
|
/** Filter by observable physical address. */
|
|
8369
8910
|
address?: InputMaybe<AddressFilter>;
|
|
8370
8911
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
8371
|
-
boundaries?: InputMaybe<Array<
|
|
8912
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8372
8913
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return medicaltherapy(s) created in the last 24 hours. */
|
|
8373
8914
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
8374
8915
|
/** Filter medicaltherapy(s) by their creation date range. */
|
|
8375
8916
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
8376
8917
|
/** The sort direction for query results. */
|
|
8377
8918
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
8919
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
8920
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
8378
8921
|
/** Filter by observable H3 index. */
|
|
8379
8922
|
h3?: InputMaybe<H3Filter>;
|
|
8380
8923
|
/** Filter medicaltherapy(s) by their unique ID. */
|
|
@@ -9185,6 +9728,10 @@ export type Mutation = {
|
|
|
9185
9728
|
createEvent?: Maybe<Event>;
|
|
9186
9729
|
/** Creates a new feed. */
|
|
9187
9730
|
createFeed?: Maybe<Feed>;
|
|
9731
|
+
/** Creates a new investment. */
|
|
9732
|
+
createInvestment?: Maybe<Investment>;
|
|
9733
|
+
/** Creates a new investment fund. */
|
|
9734
|
+
createInvestmentFund?: Maybe<InvestmentFund>;
|
|
9188
9735
|
/** Creates a new label. */
|
|
9189
9736
|
createLabel?: Maybe<Label>;
|
|
9190
9737
|
/** Creates a new medical condition. */
|
|
@@ -9249,6 +9796,10 @@ export type Mutation = {
|
|
|
9249
9796
|
deleteAllEvents?: Maybe<Array<Maybe<Event>>>;
|
|
9250
9797
|
/** Bulk deletes feeds based on the provided filter criteria. */
|
|
9251
9798
|
deleteAllFeeds?: Maybe<Array<Maybe<Feed>>>;
|
|
9799
|
+
/** Bulk deletes investment funds based on the provided filter criteria. */
|
|
9800
|
+
deleteAllInvestmentFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
9801
|
+
/** Bulk deletes investments based on the provided filter criteria. */
|
|
9802
|
+
deleteAllInvestments?: Maybe<Array<Maybe<Investment>>>;
|
|
9252
9803
|
/** Bulk deletes labels based on the provided filter criteria. */
|
|
9253
9804
|
deleteAllLabels?: Maybe<Array<Maybe<Label>>>;
|
|
9254
9805
|
/** Bulk deletes medical conditions based on the provided filter criteria. */
|
|
@@ -9317,6 +9868,14 @@ export type Mutation = {
|
|
|
9317
9868
|
deleteFeed?: Maybe<Feed>;
|
|
9318
9869
|
/** Bulk deletes feeds. */
|
|
9319
9870
|
deleteFeeds?: Maybe<Array<Maybe<Feed>>>;
|
|
9871
|
+
/** Deletes a investment. */
|
|
9872
|
+
deleteInvestment?: Maybe<Investment>;
|
|
9873
|
+
/** Deletes a investment fund. */
|
|
9874
|
+
deleteInvestmentFund?: Maybe<InvestmentFund>;
|
|
9875
|
+
/** Bulk deletes investment funds. */
|
|
9876
|
+
deleteInvestmentFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
9877
|
+
/** Bulk deletes investments. */
|
|
9878
|
+
deleteInvestments?: Maybe<Array<Maybe<Investment>>>;
|
|
9320
9879
|
/** Deletes a label. */
|
|
9321
9880
|
deleteLabel?: Maybe<Label>;
|
|
9322
9881
|
/** Bulk deletes labels. */
|
|
@@ -9473,6 +10032,8 @@ export type Mutation = {
|
|
|
9473
10032
|
removeCollectionContents?: Maybe<Collection>;
|
|
9474
10033
|
/** Removes contents from a collection. */
|
|
9475
10034
|
removeContentsFromCollection?: Maybe<Collection>;
|
|
10035
|
+
/** Research contents via web research based on provided filter criteria. */
|
|
10036
|
+
researchContents?: Maybe<StringResult>;
|
|
9476
10037
|
/** Restarts workflow on contents based on the provided filter criteria. */
|
|
9477
10038
|
restartAllContents?: Maybe<Array<Maybe<Content>>>;
|
|
9478
10039
|
/** Restarts workflow on content. */
|
|
@@ -9519,6 +10080,10 @@ export type Mutation = {
|
|
|
9519
10080
|
updateEvent?: Maybe<Event>;
|
|
9520
10081
|
/** Updates an existing feed. */
|
|
9521
10082
|
updateFeed?: Maybe<Feed>;
|
|
10083
|
+
/** Updates a investment. */
|
|
10084
|
+
updateInvestment?: Maybe<Investment>;
|
|
10085
|
+
/** Updates a investment fund. */
|
|
10086
|
+
updateInvestmentFund?: Maybe<InvestmentFund>;
|
|
9522
10087
|
/** Updates a label. */
|
|
9523
10088
|
updateLabel?: Maybe<Label>;
|
|
9524
10089
|
/** Updates a medical condition. */
|
|
@@ -9646,6 +10211,12 @@ export type MutationCreateFeedArgs = {
|
|
|
9646
10211
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
9647
10212
|
feed: FeedInput;
|
|
9648
10213
|
};
|
|
10214
|
+
export type MutationCreateInvestmentArgs = {
|
|
10215
|
+
investment: InvestmentInput;
|
|
10216
|
+
};
|
|
10217
|
+
export type MutationCreateInvestmentFundArgs = {
|
|
10218
|
+
investmentFund: InvestmentFundInput;
|
|
10219
|
+
};
|
|
9649
10220
|
export type MutationCreateLabelArgs = {
|
|
9650
10221
|
label: LabelInput;
|
|
9651
10222
|
};
|
|
@@ -9757,6 +10328,16 @@ export type MutationDeleteAllFeedsArgs = {
|
|
|
9757
10328
|
filter?: InputMaybe<FeedFilter>;
|
|
9758
10329
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9759
10330
|
};
|
|
10331
|
+
export type MutationDeleteAllInvestmentFundsArgs = {
|
|
10332
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
10333
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
10334
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10335
|
+
};
|
|
10336
|
+
export type MutationDeleteAllInvestmentsArgs = {
|
|
10337
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
10338
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
10339
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10340
|
+
};
|
|
9760
10341
|
export type MutationDeleteAllLabelsArgs = {
|
|
9761
10342
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
9762
10343
|
filter?: InputMaybe<LabelFilter>;
|
|
@@ -9907,6 +10488,20 @@ export type MutationDeleteFeedsArgs = {
|
|
|
9907
10488
|
ids: Array<Scalars['ID']['input']>;
|
|
9908
10489
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9909
10490
|
};
|
|
10491
|
+
export type MutationDeleteInvestmentArgs = {
|
|
10492
|
+
id: Scalars['ID']['input'];
|
|
10493
|
+
};
|
|
10494
|
+
export type MutationDeleteInvestmentFundArgs = {
|
|
10495
|
+
id: Scalars['ID']['input'];
|
|
10496
|
+
};
|
|
10497
|
+
export type MutationDeleteInvestmentFundsArgs = {
|
|
10498
|
+
ids: Array<Scalars['ID']['input']>;
|
|
10499
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10500
|
+
};
|
|
10501
|
+
export type MutationDeleteInvestmentsArgs = {
|
|
10502
|
+
ids: Array<Scalars['ID']['input']>;
|
|
10503
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10504
|
+
};
|
|
9910
10505
|
export type MutationDeleteLabelArgs = {
|
|
9911
10506
|
id: Scalars['ID']['input'];
|
|
9912
10507
|
};
|
|
@@ -10279,6 +10874,15 @@ export type MutationRemoveContentsFromCollectionArgs = {
|
|
|
10279
10874
|
collection: EntityReferenceInput;
|
|
10280
10875
|
contents: Array<EntityReferenceInput>;
|
|
10281
10876
|
};
|
|
10877
|
+
export type MutationResearchContentsArgs = {
|
|
10878
|
+
connector: ContentPublishingConnectorInput;
|
|
10879
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
10880
|
+
filter?: InputMaybe<ContentFilter>;
|
|
10881
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
10882
|
+
publishSpecification?: InputMaybe<EntityReferenceInput>;
|
|
10883
|
+
summarySpecification?: InputMaybe<EntityReferenceInput>;
|
|
10884
|
+
workflow?: InputMaybe<EntityReferenceInput>;
|
|
10885
|
+
};
|
|
10282
10886
|
export type MutationRestartAllContentsArgs = {
|
|
10283
10887
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
10284
10888
|
filter?: InputMaybe<ContentFilter>;
|
|
@@ -10390,6 +10994,12 @@ export type MutationUpdateEventArgs = {
|
|
|
10390
10994
|
export type MutationUpdateFeedArgs = {
|
|
10391
10995
|
feed: FeedUpdateInput;
|
|
10392
10996
|
};
|
|
10997
|
+
export type MutationUpdateInvestmentArgs = {
|
|
10998
|
+
investment: InvestmentUpdateInput;
|
|
10999
|
+
};
|
|
11000
|
+
export type MutationUpdateInvestmentFundArgs = {
|
|
11001
|
+
investmentFund: InvestmentFundUpdateInput;
|
|
11002
|
+
};
|
|
10393
11003
|
export type MutationUpdateLabelArgs = {
|
|
10394
11004
|
label: LabelUpdateInput;
|
|
10395
11005
|
};
|
|
@@ -10625,6 +11235,10 @@ export declare enum ObservableTypes {
|
|
|
10625
11235
|
Category = "CATEGORY",
|
|
10626
11236
|
/** Event */
|
|
10627
11237
|
Event = "EVENT",
|
|
11238
|
+
/** Investment */
|
|
11239
|
+
Investment = "INVESTMENT",
|
|
11240
|
+
/** Investment fund */
|
|
11241
|
+
InvestmentFund = "INVESTMENT_FUND",
|
|
10628
11242
|
/** Label */
|
|
10629
11243
|
Label = "LABEL",
|
|
10630
11244
|
/** Medical condition */
|
|
@@ -11319,13 +11933,15 @@ export type OrganizationFilter = {
|
|
|
11319
11933
|
/** Filter by observable physical address. */
|
|
11320
11934
|
address?: InputMaybe<AddressFilter>;
|
|
11321
11935
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
11322
|
-
boundaries?: InputMaybe<Array<
|
|
11936
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
11323
11937
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return organization(s) created in the last 24 hours. */
|
|
11324
11938
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11325
11939
|
/** Filter organization(s) by their creation date range. */
|
|
11326
11940
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
11327
11941
|
/** The sort direction for query results. */
|
|
11328
11942
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
11943
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
11944
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
11329
11945
|
/** Filter by observable H3 index. */
|
|
11330
11946
|
h3?: InputMaybe<H3Filter>;
|
|
11331
11947
|
/** Filter organization(s) by their unique ID. */
|
|
@@ -11488,6 +12104,71 @@ export type PagePreparationPropertiesInput = {
|
|
|
11488
12104
|
/** Whether to take screenshots of ingested web pages. */
|
|
11489
12105
|
enableScreenshot?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11490
12106
|
};
|
|
12107
|
+
/** Parallel-specific entity discovery properties. */
|
|
12108
|
+
export type ParallelEntityFeedProperties = {
|
|
12109
|
+
__typename?: 'ParallelEntityFeedProperties';
|
|
12110
|
+
/** Generator quality/cost tradeoff (base/core/pro). */
|
|
12111
|
+
generator?: Maybe<ParallelGenerators>;
|
|
12112
|
+
};
|
|
12113
|
+
/** Parallel-specific entity discovery properties. */
|
|
12114
|
+
export type ParallelEntityFeedPropertiesInput = {
|
|
12115
|
+
/** Generator quality/cost tradeoff (base/core/pro). */
|
|
12116
|
+
generator?: InputMaybe<ParallelGenerators>;
|
|
12117
|
+
};
|
|
12118
|
+
/** Parallel-specific entity discovery properties. */
|
|
12119
|
+
export type ParallelEntityFeedPropertiesUpdateInput = {
|
|
12120
|
+
/** Generator quality/cost tradeoff (base/core/pro). */
|
|
12121
|
+
generator?: InputMaybe<ParallelGenerators>;
|
|
12122
|
+
};
|
|
12123
|
+
/** Represents Parallel properties. */
|
|
12124
|
+
export type ParallelFeedProperties = {
|
|
12125
|
+
__typename?: 'ParallelFeedProperties';
|
|
12126
|
+
/** Parallel processor type (Pro or Ultra). Defaults to Pro. */
|
|
12127
|
+
processor?: Maybe<ParallelProcessors>;
|
|
12128
|
+
};
|
|
12129
|
+
/** Represents Parallel properties. */
|
|
12130
|
+
export type ParallelFeedPropertiesInput = {
|
|
12131
|
+
/** Parallel processor type (Pro or Ultra), optional. Defaults to Pro. */
|
|
12132
|
+
processor?: InputMaybe<ParallelProcessors>;
|
|
12133
|
+
};
|
|
12134
|
+
/** Represents Parallel properties. */
|
|
12135
|
+
export type ParallelFeedPropertiesUpdateInput = {
|
|
12136
|
+
/** Parallel processor type (Pro or Ultra), optional. Defaults to Pro. */
|
|
12137
|
+
processor?: InputMaybe<ParallelProcessors>;
|
|
12138
|
+
};
|
|
12139
|
+
/** Parallel generator for Find All API quality/cost tradeoff */
|
|
12140
|
+
export declare enum ParallelGenerators {
|
|
12141
|
+
/** Base: Broad queries with many expected matches ($1 + $0.05/match) */
|
|
12142
|
+
Base = "BASE",
|
|
12143
|
+
/** Core: Specific queries with moderate matches ($3 + $0.15/match) */
|
|
12144
|
+
Core = "CORE",
|
|
12145
|
+
/** Pro: Rare, hard-to-find matches ($10 + $1.00/match) */
|
|
12146
|
+
Pro = "PRO"
|
|
12147
|
+
}
|
|
12148
|
+
/** Parallel processor type */
|
|
12149
|
+
export declare enum ParallelProcessors {
|
|
12150
|
+
/** Pro processor: Exploratory web research */
|
|
12151
|
+
Pro = "PRO",
|
|
12152
|
+
/** Ultra processor: Extensive deep research */
|
|
12153
|
+
Ultra = "ULTRA",
|
|
12154
|
+
/** Ultra2x processor: Advanced deep research with 2x compute */
|
|
12155
|
+
Ultra2X = "ULTRA2X",
|
|
12156
|
+
/** Ultra4x processor: Advanced deep research with 4x compute */
|
|
12157
|
+
Ultra4X = "ULTRA4X",
|
|
12158
|
+
/** Ultra8x processor: Advanced deep research with 8x compute */
|
|
12159
|
+
Ultra8X = "ULTRA8X"
|
|
12160
|
+
}
|
|
12161
|
+
/** Represents the Parallel research publishing properties. */
|
|
12162
|
+
export type ParallelPublishingProperties = {
|
|
12163
|
+
__typename?: 'ParallelPublishingProperties';
|
|
12164
|
+
/** The Parallel processor tier. */
|
|
12165
|
+
processor?: Maybe<ParallelProcessors>;
|
|
12166
|
+
};
|
|
12167
|
+
/** Represents the Parallel research publishing properties. */
|
|
12168
|
+
export type ParallelPublishingPropertiesInput = {
|
|
12169
|
+
/** The Parallel processor tier. */
|
|
12170
|
+
processor?: InputMaybe<ParallelProcessors>;
|
|
12171
|
+
};
|
|
11491
12172
|
/** Represents a person. */
|
|
11492
12173
|
export type Person = {
|
|
11493
12174
|
__typename?: 'Person';
|
|
@@ -11575,7 +12256,7 @@ export type PersonFilter = {
|
|
|
11575
12256
|
/** Filter by observable physical address. */
|
|
11576
12257
|
address?: InputMaybe<AddressFilter>;
|
|
11577
12258
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
11578
|
-
boundaries?: InputMaybe<Array<
|
|
12259
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
11579
12260
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return person(s) created in the last 24 hours. */
|
|
11580
12261
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11581
12262
|
/** Filter person(s) by their creation date range. */
|
|
@@ -11586,6 +12267,8 @@ export type PersonFilter = {
|
|
|
11586
12267
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
11587
12268
|
/** Filter by the family name of the person. */
|
|
11588
12269
|
familyName?: InputMaybe<Scalars['String']['input']>;
|
|
12270
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
12271
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
11589
12272
|
/** Filter by the given name of the person. */
|
|
11590
12273
|
givenName?: InputMaybe<Scalars['String']['input']>;
|
|
11591
12274
|
/** Filter by observable H3 index. */
|
|
@@ -11795,13 +12478,15 @@ export type PlaceFilter = {
|
|
|
11795
12478
|
/** Filter by observable physical address. */
|
|
11796
12479
|
address?: InputMaybe<AddressFilter>;
|
|
11797
12480
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
11798
|
-
boundaries?: InputMaybe<Array<
|
|
12481
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
11799
12482
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return place(s) created in the last 24 hours. */
|
|
11800
12483
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11801
12484
|
/** Filter place(s) by their creation date range. */
|
|
11802
12485
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
11803
12486
|
/** The sort direction for query results. */
|
|
11804
12487
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
12488
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
12489
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
11805
12490
|
/** Filter by observable H3 index. */
|
|
11806
12491
|
h3?: InputMaybe<H3Filter>;
|
|
11807
12492
|
/** Filter place(s) by their unique ID. */
|
|
@@ -12094,7 +12779,7 @@ export type ProductFilter = {
|
|
|
12094
12779
|
/** Filter by observable physical address. */
|
|
12095
12780
|
address?: InputMaybe<AddressFilter>;
|
|
12096
12781
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
12097
|
-
boundaries?: InputMaybe<Array<
|
|
12782
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12098
12783
|
/** Filter by product brand. */
|
|
12099
12784
|
brand?: InputMaybe<Scalars['String']['input']>;
|
|
12100
12785
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return product(s) created in the last 24 hours. */
|
|
@@ -12103,6 +12788,8 @@ export type ProductFilter = {
|
|
|
12103
12788
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
12104
12789
|
/** The sort direction for query results. */
|
|
12105
12790
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
12791
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
12792
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
12106
12793
|
/** Filter by observable H3 index. */
|
|
12107
12794
|
h3?: InputMaybe<H3Filter>;
|
|
12108
12795
|
/** Filter product(s) by their unique ID. */
|
|
@@ -12829,6 +13516,10 @@ export type Query = {
|
|
|
12829
13516
|
countEvents?: Maybe<CountResult>;
|
|
12830
13517
|
/** Counts feeds based on the provided filter criteria. */
|
|
12831
13518
|
countFeeds?: Maybe<CountResult>;
|
|
13519
|
+
/** Counts investment funds based on the provided filter criteria. */
|
|
13520
|
+
countInvestmentFunds?: Maybe<CountResult>;
|
|
13521
|
+
/** Counts investments based on the provided filter criteria. */
|
|
13522
|
+
countInvestments?: Maybe<CountResult>;
|
|
12832
13523
|
/** Counts labels based on the provided filter criteria. */
|
|
12833
13524
|
countLabels?: Maybe<CountResult>;
|
|
12834
13525
|
/** Counts medical conditions based on the provided filter criteria. */
|
|
@@ -12897,6 +13588,16 @@ export type Query = {
|
|
|
12897
13588
|
googleCalendars?: Maybe<CalendarResults>;
|
|
12898
13589
|
/** Retrieves available Google Drive folders. */
|
|
12899
13590
|
googleDriveFolders?: Maybe<GoogleDriveFolderResults>;
|
|
13591
|
+
/** Retrieves entity knowledge graph based on filter criteria. */
|
|
13592
|
+
graph?: Maybe<Graph>;
|
|
13593
|
+
/** Lookup a investment given its ID. */
|
|
13594
|
+
investment?: Maybe<Investment>;
|
|
13595
|
+
/** Lookup a investment fund given its ID. */
|
|
13596
|
+
investmentFund?: Maybe<InvestmentFund>;
|
|
13597
|
+
/** Retrieves investment funds based on the provided filter criteria. */
|
|
13598
|
+
investmentFunds?: Maybe<InvestmentFundResults>;
|
|
13599
|
+
/** Retrieves investments based on the provided filter criteria. */
|
|
13600
|
+
investments?: Maybe<InvestmentResults>;
|
|
12900
13601
|
/** Returns if ingested content has finished (or errored). */
|
|
12901
13602
|
isContentDone?: Maybe<BooleanResult>;
|
|
12902
13603
|
/** Returns if all the contents ingested from a feed have finished (or errored). */
|
|
@@ -13131,6 +13832,14 @@ export type QueryCountFeedsArgs = {
|
|
|
13131
13832
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13132
13833
|
filter?: InputMaybe<FeedFilter>;
|
|
13133
13834
|
};
|
|
13835
|
+
export type QueryCountInvestmentFundsArgs = {
|
|
13836
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13837
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
13838
|
+
};
|
|
13839
|
+
export type QueryCountInvestmentsArgs = {
|
|
13840
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13841
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
13842
|
+
};
|
|
13134
13843
|
export type QueryCountLabelsArgs = {
|
|
13135
13844
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13136
13845
|
filter?: InputMaybe<LabelFilter>;
|
|
@@ -13265,6 +13974,29 @@ export type QueryGoogleDriveFoldersArgs = {
|
|
|
13265
13974
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
13266
13975
|
properties: GoogleDriveFoldersInput;
|
|
13267
13976
|
};
|
|
13977
|
+
export type QueryGraphArgs = {
|
|
13978
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13979
|
+
filter?: InputMaybe<GraphFilter>;
|
|
13980
|
+
graph?: InputMaybe<GraphInput>;
|
|
13981
|
+
};
|
|
13982
|
+
export type QueryInvestmentArgs = {
|
|
13983
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13984
|
+
id: Scalars['ID']['input'];
|
|
13985
|
+
};
|
|
13986
|
+
export type QueryInvestmentFundArgs = {
|
|
13987
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13988
|
+
id: Scalars['ID']['input'];
|
|
13989
|
+
};
|
|
13990
|
+
export type QueryInvestmentFundsArgs = {
|
|
13991
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13992
|
+
facets?: InputMaybe<Array<InvestmentFundFacetInput>>;
|
|
13993
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
13994
|
+
};
|
|
13995
|
+
export type QueryInvestmentsArgs = {
|
|
13996
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13997
|
+
facets?: InputMaybe<Array<InvestmentFacetInput>>;
|
|
13998
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
13999
|
+
};
|
|
13268
14000
|
export type QueryIsContentDoneArgs = {
|
|
13269
14001
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
13270
14002
|
id: Scalars['ID']['input'];
|
|
@@ -13912,13 +14644,15 @@ export type RepoFilter = {
|
|
|
13912
14644
|
/** Filter by observable physical address. */
|
|
13913
14645
|
address?: InputMaybe<AddressFilter>;
|
|
13914
14646
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
13915
|
-
boundaries?: InputMaybe<Array<
|
|
14647
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13916
14648
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return repo(s) created in the last 24 hours. */
|
|
13917
14649
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
13918
14650
|
/** Filter repo(s) by their creation date range. */
|
|
13919
14651
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
13920
14652
|
/** The sort direction for query results. */
|
|
13921
14653
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
14654
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
14655
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
13922
14656
|
/** Filter by observable H3 index. */
|
|
13923
14657
|
h3?: InputMaybe<H3Filter>;
|
|
13924
14658
|
/** Filter repo(s) by their unique ID. */
|
|
@@ -14013,6 +14747,40 @@ export type RerankingStrategyUpdateInput = {
|
|
|
14013
14747
|
/** The content reranking threshold, optional. */
|
|
14014
14748
|
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
14015
14749
|
};
|
|
14750
|
+
/** Represents Research feed properties. */
|
|
14751
|
+
export type ResearchFeedProperties = {
|
|
14752
|
+
__typename?: 'ResearchFeedProperties';
|
|
14753
|
+
/** Parallel API properties. */
|
|
14754
|
+
parallel?: Maybe<ParallelFeedProperties>;
|
|
14755
|
+
/** Natural language research query. */
|
|
14756
|
+
query: Scalars['String']['output'];
|
|
14757
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
14758
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
|
14759
|
+
/** Research feed service type, i.e. Parallel. */
|
|
14760
|
+
type?: Maybe<FeedServiceTypes>;
|
|
14761
|
+
};
|
|
14762
|
+
/** Represents Research feed properties. */
|
|
14763
|
+
export type ResearchFeedPropertiesInput = {
|
|
14764
|
+
/** Parallel properties. */
|
|
14765
|
+
parallel?: InputMaybe<ParallelFeedPropertiesInput>;
|
|
14766
|
+
/** Natural language research query. */
|
|
14767
|
+
query: Scalars['String']['input'];
|
|
14768
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
14769
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
14770
|
+
/** Research feed service type, i.e. Parallel. */
|
|
14771
|
+
type?: InputMaybe<FeedServiceTypes>;
|
|
14772
|
+
};
|
|
14773
|
+
/** Represents Research feed properties. */
|
|
14774
|
+
export type ResearchFeedPropertiesUpdateInput = {
|
|
14775
|
+
/** Parallel properties. */
|
|
14776
|
+
parallel?: InputMaybe<ParallelFeedPropertiesUpdateInput>;
|
|
14777
|
+
/** Natural language research query. */
|
|
14778
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
14779
|
+
/** The limit of items to be read from feed, defaults to 100. */
|
|
14780
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
14781
|
+
/** Research feed service type, i.e. Parallel. */
|
|
14782
|
+
type?: InputMaybe<FeedServiceTypes>;
|
|
14783
|
+
};
|
|
14016
14784
|
/** Resource connector type */
|
|
14017
14785
|
export declare enum ResourceConnectorTypes {
|
|
14018
14786
|
/** Amazon Web Services */
|
|
@@ -14154,6 +14922,10 @@ export declare enum SearchServiceTypes {
|
|
|
14154
14922
|
Exa = "EXA",
|
|
14155
14923
|
/** Exa Code context search service */
|
|
14156
14924
|
ExaCode = "EXA_CODE",
|
|
14925
|
+
/** Parallel search feed service */
|
|
14926
|
+
Parallel = "PARALLEL",
|
|
14927
|
+
/** Perplexity search feed service */
|
|
14928
|
+
Perplexity = "PERPLEXITY",
|
|
14157
14929
|
/** Podscan search feed service */
|
|
14158
14930
|
Podscan = "PODSCAN",
|
|
14159
14931
|
/** Tavily search feed service */
|
|
@@ -14566,13 +15338,15 @@ export type SoftwareFilter = {
|
|
|
14566
15338
|
/** Filter by observable physical address. */
|
|
14567
15339
|
address?: InputMaybe<AddressFilter>;
|
|
14568
15340
|
/** Filter by observable geo-boundaries, as GeoJSON Feature with Polygon geometry. */
|
|
14569
|
-
boundaries?: InputMaybe<Array<
|
|
15341
|
+
boundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14570
15342
|
/** Filter by creation date recent timespan. For example, a timespan of one day will return software(s) created in the last 24 hours. */
|
|
14571
15343
|
createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
14572
15344
|
/** Filter software(s) by their creation date range. */
|
|
14573
15345
|
creationDateRange?: InputMaybe<DateRangeFilter>;
|
|
14574
15346
|
/** The sort direction for query results. */
|
|
14575
15347
|
direction?: InputMaybe<OrderDirectionTypes>;
|
|
15348
|
+
/** Filter by feed identifiers that created these observable entities. */
|
|
15349
|
+
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
|
14576
15350
|
/** Filter by observable H3 index. */
|
|
14577
15351
|
h3?: InputMaybe<H3Filter>;
|
|
14578
15352
|
/** Filter software(s) by their unique ID. */
|
|
@@ -14951,6 +15725,12 @@ export type StringRange = {
|
|
|
14951
15725
|
/** Ending value of string range. */
|
|
14952
15726
|
to?: Maybe<Scalars['String']['output']>;
|
|
14953
15727
|
};
|
|
15728
|
+
/** Represents a string result. */
|
|
15729
|
+
export type StringResult = {
|
|
15730
|
+
__typename?: 'StringResult';
|
|
15731
|
+
/** The result string. */
|
|
15732
|
+
result?: Maybe<Scalars['String']['output']>;
|
|
15733
|
+
};
|
|
14954
15734
|
/** Represents a list of string reults. */
|
|
14955
15735
|
export type StringResults = {
|
|
14956
15736
|
__typename?: 'StringResults';
|
|
@@ -16322,6 +17102,10 @@ export type GetAlertQuery = {
|
|
|
16322
17102
|
id: string;
|
|
16323
17103
|
} | null;
|
|
16324
17104
|
} | null;
|
|
17105
|
+
parallel?: {
|
|
17106
|
+
__typename?: 'ParallelPublishingProperties';
|
|
17107
|
+
processor?: ParallelProcessors | null;
|
|
17108
|
+
} | null;
|
|
16325
17109
|
};
|
|
16326
17110
|
summarySpecification?: {
|
|
16327
17111
|
__typename?: 'EntityReference';
|
|
@@ -16549,6 +17333,10 @@ export type QueryAlertsQuery = {
|
|
|
16549
17333
|
id: string;
|
|
16550
17334
|
} | null;
|
|
16551
17335
|
} | null;
|
|
17336
|
+
parallel?: {
|
|
17337
|
+
__typename?: 'ParallelPublishingProperties';
|
|
17338
|
+
processor?: ParallelProcessors | null;
|
|
17339
|
+
} | null;
|
|
16552
17340
|
};
|
|
16553
17341
|
summarySpecification?: {
|
|
16554
17342
|
__typename?: 'EntityReference';
|
|
@@ -17162,6 +17950,7 @@ export type DescribeEncodedImageMutation = {
|
|
|
17162
17950
|
fileExtension?: string | null;
|
|
17163
17951
|
fileName?: string | null;
|
|
17164
17952
|
fileSize?: any | null;
|
|
17953
|
+
fileMetadata?: string | null;
|
|
17165
17954
|
relativeFolderPath?: string | null;
|
|
17166
17955
|
masterUri?: any | null;
|
|
17167
17956
|
imageUri?: any | null;
|
|
@@ -17310,6 +18099,7 @@ export type DescribeImageMutation = {
|
|
|
17310
18099
|
fileExtension?: string | null;
|
|
17311
18100
|
fileName?: string | null;
|
|
17312
18101
|
fileSize?: any | null;
|
|
18102
|
+
fileMetadata?: string | null;
|
|
17313
18103
|
relativeFolderPath?: string | null;
|
|
17314
18104
|
masterUri?: any | null;
|
|
17315
18105
|
imageUri?: any | null;
|
|
@@ -17500,6 +18290,7 @@ export type GetContentQuery = {
|
|
|
17500
18290
|
fileExtension?: string | null;
|
|
17501
18291
|
fileName?: string | null;
|
|
17502
18292
|
fileSize?: any | null;
|
|
18293
|
+
fileMetadata?: string | null;
|
|
17503
18294
|
relativeFolderPath?: string | null;
|
|
17504
18295
|
masterUri?: any | null;
|
|
17505
18296
|
imageUri?: any | null;
|
|
@@ -18433,6 +19224,7 @@ export type LookupContentsQuery = {
|
|
|
18433
19224
|
fileExtension?: string | null;
|
|
18434
19225
|
fileName?: string | null;
|
|
18435
19226
|
fileSize?: any | null;
|
|
19227
|
+
fileMetadata?: string | null;
|
|
18436
19228
|
relativeFolderPath?: string | null;
|
|
18437
19229
|
masterUri?: any | null;
|
|
18438
19230
|
imageUri?: any | null;
|
|
@@ -18917,6 +19709,7 @@ export type PublishContentsMutation = {
|
|
|
18917
19709
|
fileExtension?: string | null;
|
|
18918
19710
|
fileName?: string | null;
|
|
18919
19711
|
fileSize?: any | null;
|
|
19712
|
+
fileMetadata?: string | null;
|
|
18920
19713
|
relativeFolderPath?: string | null;
|
|
18921
19714
|
masterUri?: any | null;
|
|
18922
19715
|
imageUri?: any | null;
|
|
@@ -19054,6 +19847,7 @@ export type PublishTextMutation = {
|
|
|
19054
19847
|
fileExtension?: string | null;
|
|
19055
19848
|
fileName?: string | null;
|
|
19056
19849
|
fileSize?: any | null;
|
|
19850
|
+
fileMetadata?: string | null;
|
|
19057
19851
|
relativeFolderPath?: string | null;
|
|
19058
19852
|
masterUri?: any | null;
|
|
19059
19853
|
imageUri?: any | null;
|
|
@@ -20058,6 +20852,29 @@ export type QueryContentsObservationsQuery = {
|
|
|
20058
20852
|
} | null> | null;
|
|
20059
20853
|
} | null;
|
|
20060
20854
|
};
|
|
20855
|
+
export type QueryGraphQueryVariables = Exact<{
|
|
20856
|
+
filter?: InputMaybe<GraphFilter>;
|
|
20857
|
+
graph?: InputMaybe<GraphInput>;
|
|
20858
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
20859
|
+
}>;
|
|
20860
|
+
export type QueryGraphQuery = {
|
|
20861
|
+
__typename?: 'Query';
|
|
20862
|
+
graph?: {
|
|
20863
|
+
__typename?: 'Graph';
|
|
20864
|
+
nodes?: Array<{
|
|
20865
|
+
__typename?: 'GraphNode';
|
|
20866
|
+
id: string;
|
|
20867
|
+
name: string;
|
|
20868
|
+
type: EntityTypes;
|
|
20869
|
+
} | null> | null;
|
|
20870
|
+
edges?: Array<{
|
|
20871
|
+
__typename?: 'GraphEdge';
|
|
20872
|
+
from: string;
|
|
20873
|
+
to: string;
|
|
20874
|
+
relation?: string | null;
|
|
20875
|
+
} | null> | null;
|
|
20876
|
+
} | null;
|
|
20877
|
+
};
|
|
20061
20878
|
export type QueryObservablesQueryVariables = Exact<{
|
|
20062
20879
|
filter?: InputMaybe<ContentFilter>;
|
|
20063
20880
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20077,6 +20894,22 @@ export type QueryObservablesQuery = {
|
|
|
20077
20894
|
} | null> | null;
|
|
20078
20895
|
} | null;
|
|
20079
20896
|
};
|
|
20897
|
+
export type ResearchContentsMutationVariables = Exact<{
|
|
20898
|
+
connector: ContentPublishingConnectorInput;
|
|
20899
|
+
filter?: InputMaybe<ContentFilter>;
|
|
20900
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
20901
|
+
summarySpecification?: InputMaybe<EntityReferenceInput>;
|
|
20902
|
+
publishSpecification?: InputMaybe<EntityReferenceInput>;
|
|
20903
|
+
workflow?: InputMaybe<EntityReferenceInput>;
|
|
20904
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
20905
|
+
}>;
|
|
20906
|
+
export type ResearchContentsMutation = {
|
|
20907
|
+
__typename?: 'Mutation';
|
|
20908
|
+
researchContents?: {
|
|
20909
|
+
__typename?: 'StringResult';
|
|
20910
|
+
result?: string | null;
|
|
20911
|
+
} | null;
|
|
20912
|
+
};
|
|
20080
20913
|
export type ScreenshotPageMutationVariables = Exact<{
|
|
20081
20914
|
uri: Scalars['URL']['input'];
|
|
20082
20915
|
maximumHeight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -20303,6 +21136,7 @@ export type AskGraphlitMutation = {
|
|
|
20303
21136
|
fileExtension?: string | null;
|
|
20304
21137
|
fileName?: string | null;
|
|
20305
21138
|
fileSize?: any | null;
|
|
21139
|
+
fileMetadata?: string | null;
|
|
20306
21140
|
relativeFolderPath?: string | null;
|
|
20307
21141
|
masterUri?: any | null;
|
|
20308
21142
|
imageUri?: any | null;
|
|
@@ -20500,6 +21334,7 @@ export type CompleteConversationMutation = {
|
|
|
20500
21334
|
fileExtension?: string | null;
|
|
20501
21335
|
fileName?: string | null;
|
|
20502
21336
|
fileSize?: any | null;
|
|
21337
|
+
fileMetadata?: string | null;
|
|
20503
21338
|
relativeFolderPath?: string | null;
|
|
20504
21339
|
masterUri?: any | null;
|
|
20505
21340
|
imageUri?: any | null;
|
|
@@ -20698,6 +21533,7 @@ export type CompleteConversationMutation = {
|
|
|
20698
21533
|
fileExtension?: string | null;
|
|
20699
21534
|
fileName?: string | null;
|
|
20700
21535
|
fileSize?: any | null;
|
|
21536
|
+
fileMetadata?: string | null;
|
|
20701
21537
|
relativeFolderPath?: string | null;
|
|
20702
21538
|
masterUri?: any | null;
|
|
20703
21539
|
imageUri?: any | null;
|
|
@@ -20854,6 +21690,7 @@ export type ContinueConversationMutation = {
|
|
|
20854
21690
|
fileExtension?: string | null;
|
|
20855
21691
|
fileName?: string | null;
|
|
20856
21692
|
fileSize?: any | null;
|
|
21693
|
+
fileMetadata?: string | null;
|
|
20857
21694
|
relativeFolderPath?: string | null;
|
|
20858
21695
|
masterUri?: any | null;
|
|
20859
21696
|
imageUri?: any | null;
|
|
@@ -21052,6 +21889,7 @@ export type ContinueConversationMutation = {
|
|
|
21052
21889
|
fileExtension?: string | null;
|
|
21053
21890
|
fileName?: string | null;
|
|
21054
21891
|
fileSize?: any | null;
|
|
21892
|
+
fileMetadata?: string | null;
|
|
21055
21893
|
relativeFolderPath?: string | null;
|
|
21056
21894
|
masterUri?: any | null;
|
|
21057
21895
|
imageUri?: any | null;
|
|
@@ -21273,6 +22111,7 @@ export type FormatConversationMutation = {
|
|
|
21273
22111
|
fileExtension?: string | null;
|
|
21274
22112
|
fileName?: string | null;
|
|
21275
22113
|
fileSize?: any | null;
|
|
22114
|
+
fileMetadata?: string | null;
|
|
21276
22115
|
relativeFolderPath?: string | null;
|
|
21277
22116
|
masterUri?: any | null;
|
|
21278
22117
|
imageUri?: any | null;
|
|
@@ -21471,6 +22310,7 @@ export type FormatConversationMutation = {
|
|
|
21471
22310
|
fileExtension?: string | null;
|
|
21472
22311
|
fileName?: string | null;
|
|
21473
22312
|
fileSize?: any | null;
|
|
22313
|
+
fileMetadata?: string | null;
|
|
21474
22314
|
relativeFolderPath?: string | null;
|
|
21475
22315
|
masterUri?: any | null;
|
|
21476
22316
|
imageUri?: any | null;
|
|
@@ -21632,6 +22472,7 @@ export type GetConversationQuery = {
|
|
|
21632
22472
|
fileExtension?: string | null;
|
|
21633
22473
|
fileName?: string | null;
|
|
21634
22474
|
fileSize?: any | null;
|
|
22475
|
+
fileMetadata?: string | null;
|
|
21635
22476
|
relativeFolderPath?: string | null;
|
|
21636
22477
|
masterUri?: any | null;
|
|
21637
22478
|
imageUri?: any | null;
|
|
@@ -22034,6 +22875,7 @@ export type PromptMutation = {
|
|
|
22034
22875
|
fileExtension?: string | null;
|
|
22035
22876
|
fileName?: string | null;
|
|
22036
22877
|
fileSize?: any | null;
|
|
22878
|
+
fileMetadata?: string | null;
|
|
22037
22879
|
relativeFolderPath?: string | null;
|
|
22038
22880
|
masterUri?: any | null;
|
|
22039
22881
|
imageUri?: any | null;
|
|
@@ -22196,6 +23038,7 @@ export type PromptConversationMutation = {
|
|
|
22196
23038
|
fileExtension?: string | null;
|
|
22197
23039
|
fileName?: string | null;
|
|
22198
23040
|
fileSize?: any | null;
|
|
23041
|
+
fileMetadata?: string | null;
|
|
22199
23042
|
relativeFolderPath?: string | null;
|
|
22200
23043
|
masterUri?: any | null;
|
|
22201
23044
|
imageUri?: any | null;
|
|
@@ -22394,6 +23237,7 @@ export type PromptConversationMutation = {
|
|
|
22394
23237
|
fileExtension?: string | null;
|
|
22395
23238
|
fileName?: string | null;
|
|
22396
23239
|
fileSize?: any | null;
|
|
23240
|
+
fileMetadata?: string | null;
|
|
22397
23241
|
relativeFolderPath?: string | null;
|
|
22398
23242
|
masterUri?: any | null;
|
|
22399
23243
|
imageUri?: any | null;
|
|
@@ -22525,6 +23369,7 @@ export type PublishConversationMutation = {
|
|
|
22525
23369
|
fileExtension?: string | null;
|
|
22526
23370
|
fileName?: string | null;
|
|
22527
23371
|
fileSize?: any | null;
|
|
23372
|
+
fileMetadata?: string | null;
|
|
22528
23373
|
relativeFolderPath?: string | null;
|
|
22529
23374
|
masterUri?: any | null;
|
|
22530
23375
|
imageUri?: any | null;
|
|
@@ -22693,6 +23538,7 @@ export type QueryConversationsQuery = {
|
|
|
22693
23538
|
fileExtension?: string | null;
|
|
22694
23539
|
fileName?: string | null;
|
|
22695
23540
|
fileSize?: any | null;
|
|
23541
|
+
fileMetadata?: string | null;
|
|
22696
23542
|
relativeFolderPath?: string | null;
|
|
22697
23543
|
masterUri?: any | null;
|
|
22698
23544
|
imageUri?: any | null;
|
|
@@ -23152,6 +23998,7 @@ export type ReviseContentMutation = {
|
|
|
23152
23998
|
fileExtension?: string | null;
|
|
23153
23999
|
fileName?: string | null;
|
|
23154
24000
|
fileSize?: any | null;
|
|
24001
|
+
fileMetadata?: string | null;
|
|
23155
24002
|
relativeFolderPath?: string | null;
|
|
23156
24003
|
masterUri?: any | null;
|
|
23157
24004
|
imageUri?: any | null;
|
|
@@ -23310,6 +24157,7 @@ export type ReviseEncodedImageMutation = {
|
|
|
23310
24157
|
fileExtension?: string | null;
|
|
23311
24158
|
fileName?: string | null;
|
|
23312
24159
|
fileSize?: any | null;
|
|
24160
|
+
fileMetadata?: string | null;
|
|
23313
24161
|
relativeFolderPath?: string | null;
|
|
23314
24162
|
masterUri?: any | null;
|
|
23315
24163
|
imageUri?: any | null;
|
|
@@ -23467,6 +24315,7 @@ export type ReviseImageMutation = {
|
|
|
23467
24315
|
fileExtension?: string | null;
|
|
23468
24316
|
fileName?: string | null;
|
|
23469
24317
|
fileSize?: any | null;
|
|
24318
|
+
fileMetadata?: string | null;
|
|
23470
24319
|
relativeFolderPath?: string | null;
|
|
23471
24320
|
masterUri?: any | null;
|
|
23472
24321
|
imageUri?: any | null;
|
|
@@ -23624,6 +24473,7 @@ export type ReviseTextMutation = {
|
|
|
23624
24473
|
fileExtension?: string | null;
|
|
23625
24474
|
fileName?: string | null;
|
|
23626
24475
|
fileSize?: any | null;
|
|
24476
|
+
fileMetadata?: string | null;
|
|
23627
24477
|
relativeFolderPath?: string | null;
|
|
23628
24478
|
masterUri?: any | null;
|
|
23629
24479
|
imageUri?: any | null;
|
|
@@ -24191,6 +25041,10 @@ export type GetFeedQuery = {
|
|
|
24191
25041
|
identifiers: Array<string>;
|
|
24192
25042
|
type: TrelloTypes;
|
|
24193
25043
|
} | null;
|
|
25044
|
+
attio?: {
|
|
25045
|
+
__typename?: 'AttioTasksFeedProperties';
|
|
25046
|
+
apiKey: string;
|
|
25047
|
+
} | null;
|
|
24194
25048
|
} | null;
|
|
24195
25049
|
commit?: {
|
|
24196
25050
|
__typename?: 'CommitFeedProperties';
|
|
@@ -24222,6 +25076,16 @@ export type GetFeedQuery = {
|
|
|
24222
25076
|
authorizationId?: string | null;
|
|
24223
25077
|
} | null;
|
|
24224
25078
|
} | null;
|
|
25079
|
+
crm?: {
|
|
25080
|
+
__typename?: 'CRMFeedProperties';
|
|
25081
|
+
type: FeedServiceTypes;
|
|
25082
|
+
readLimit?: number | null;
|
|
25083
|
+
attio?: {
|
|
25084
|
+
__typename?: 'AttioCRMFeedProperties';
|
|
25085
|
+
authenticationType?: AttioAuthenticationTypes | null;
|
|
25086
|
+
apiKey?: string | null;
|
|
25087
|
+
} | null;
|
|
25088
|
+
} | null;
|
|
24225
25089
|
calendar?: {
|
|
24226
25090
|
__typename?: 'CalendarFeedProperties';
|
|
24227
25091
|
type: FeedServiceTypes;
|
|
@@ -24342,6 +25206,31 @@ export type GetFeedQuery = {
|
|
|
24342
25206
|
channel: string;
|
|
24343
25207
|
includeAttachments?: boolean | null;
|
|
24344
25208
|
} | null;
|
|
25209
|
+
attio?: {
|
|
25210
|
+
__typename?: 'AttioFeedProperties';
|
|
25211
|
+
readLimit?: number | null;
|
|
25212
|
+
apiKey: string;
|
|
25213
|
+
} | null;
|
|
25214
|
+
research?: {
|
|
25215
|
+
__typename?: 'ResearchFeedProperties';
|
|
25216
|
+
readLimit?: number | null;
|
|
25217
|
+
type?: FeedServiceTypes | null;
|
|
25218
|
+
query: string;
|
|
25219
|
+
parallel?: {
|
|
25220
|
+
__typename?: 'ParallelFeedProperties';
|
|
25221
|
+
processor?: ParallelProcessors | null;
|
|
25222
|
+
} | null;
|
|
25223
|
+
} | null;
|
|
25224
|
+
entity?: {
|
|
25225
|
+
__typename?: 'EntityFeedProperties';
|
|
25226
|
+
type: FeedServiceTypes;
|
|
25227
|
+
query: string;
|
|
25228
|
+
readLimit?: number | null;
|
|
25229
|
+
parallel?: {
|
|
25230
|
+
__typename?: 'ParallelEntityFeedProperties';
|
|
25231
|
+
generator?: ParallelGenerators | null;
|
|
25232
|
+
} | null;
|
|
25233
|
+
} | null;
|
|
24345
25234
|
workflow?: {
|
|
24346
25235
|
__typename?: 'Workflow';
|
|
24347
25236
|
id: string;
|
|
@@ -24633,6 +25522,10 @@ export type QueryFeedsQuery = {
|
|
|
24633
25522
|
identifiers: Array<string>;
|
|
24634
25523
|
type: TrelloTypes;
|
|
24635
25524
|
} | null;
|
|
25525
|
+
attio?: {
|
|
25526
|
+
__typename?: 'AttioTasksFeedProperties';
|
|
25527
|
+
apiKey: string;
|
|
25528
|
+
} | null;
|
|
24636
25529
|
} | null;
|
|
24637
25530
|
commit?: {
|
|
24638
25531
|
__typename?: 'CommitFeedProperties';
|
|
@@ -24664,6 +25557,16 @@ export type QueryFeedsQuery = {
|
|
|
24664
25557
|
authorizationId?: string | null;
|
|
24665
25558
|
} | null;
|
|
24666
25559
|
} | null;
|
|
25560
|
+
crm?: {
|
|
25561
|
+
__typename?: 'CRMFeedProperties';
|
|
25562
|
+
type: FeedServiceTypes;
|
|
25563
|
+
readLimit?: number | null;
|
|
25564
|
+
attio?: {
|
|
25565
|
+
__typename?: 'AttioCRMFeedProperties';
|
|
25566
|
+
authenticationType?: AttioAuthenticationTypes | null;
|
|
25567
|
+
apiKey?: string | null;
|
|
25568
|
+
} | null;
|
|
25569
|
+
} | null;
|
|
24667
25570
|
calendar?: {
|
|
24668
25571
|
__typename?: 'CalendarFeedProperties';
|
|
24669
25572
|
type: FeedServiceTypes;
|
|
@@ -24784,6 +25687,31 @@ export type QueryFeedsQuery = {
|
|
|
24784
25687
|
channel: string;
|
|
24785
25688
|
includeAttachments?: boolean | null;
|
|
24786
25689
|
} | null;
|
|
25690
|
+
attio?: {
|
|
25691
|
+
__typename?: 'AttioFeedProperties';
|
|
25692
|
+
readLimit?: number | null;
|
|
25693
|
+
apiKey: string;
|
|
25694
|
+
} | null;
|
|
25695
|
+
research?: {
|
|
25696
|
+
__typename?: 'ResearchFeedProperties';
|
|
25697
|
+
readLimit?: number | null;
|
|
25698
|
+
type?: FeedServiceTypes | null;
|
|
25699
|
+
query: string;
|
|
25700
|
+
parallel?: {
|
|
25701
|
+
__typename?: 'ParallelFeedProperties';
|
|
25702
|
+
processor?: ParallelProcessors | null;
|
|
25703
|
+
} | null;
|
|
25704
|
+
} | null;
|
|
25705
|
+
entity?: {
|
|
25706
|
+
__typename?: 'EntityFeedProperties';
|
|
25707
|
+
type: FeedServiceTypes;
|
|
25708
|
+
query: string;
|
|
25709
|
+
readLimit?: number | null;
|
|
25710
|
+
parallel?: {
|
|
25711
|
+
__typename?: 'ParallelEntityFeedProperties';
|
|
25712
|
+
generator?: ParallelGenerators | null;
|
|
25713
|
+
} | null;
|
|
25714
|
+
} | null;
|
|
24787
25715
|
workflow?: {
|
|
24788
25716
|
__typename?: 'Workflow';
|
|
24789
25717
|
id: string;
|
|
@@ -25016,6 +25944,226 @@ export type UpdateFeedMutation = {
|
|
|
25016
25944
|
syncMode?: FeedSyncMode | null;
|
|
25017
25945
|
} | null;
|
|
25018
25946
|
};
|
|
25947
|
+
export type CountInvestmentsQueryVariables = Exact<{
|
|
25948
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
25949
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
25950
|
+
}>;
|
|
25951
|
+
export type CountInvestmentsQuery = {
|
|
25952
|
+
__typename?: 'Query';
|
|
25953
|
+
countInvestments?: {
|
|
25954
|
+
__typename?: 'CountResult';
|
|
25955
|
+
count?: any | null;
|
|
25956
|
+
} | null;
|
|
25957
|
+
};
|
|
25958
|
+
export type CreateInvestmentMutationVariables = Exact<{
|
|
25959
|
+
investment: InvestmentInput;
|
|
25960
|
+
}>;
|
|
25961
|
+
export type CreateInvestmentMutation = {
|
|
25962
|
+
__typename?: 'Mutation';
|
|
25963
|
+
createInvestment?: {
|
|
25964
|
+
__typename?: 'Investment';
|
|
25965
|
+
id: string;
|
|
25966
|
+
name: string;
|
|
25967
|
+
} | null;
|
|
25968
|
+
};
|
|
25969
|
+
export type DeleteAllInvestmentsMutationVariables = Exact<{
|
|
25970
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
25971
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25972
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
25973
|
+
}>;
|
|
25974
|
+
export type DeleteAllInvestmentsMutation = {
|
|
25975
|
+
__typename?: 'Mutation';
|
|
25976
|
+
deleteAllInvestments?: Array<{
|
|
25977
|
+
__typename?: 'Investment';
|
|
25978
|
+
id: string;
|
|
25979
|
+
state: EntityState;
|
|
25980
|
+
} | null> | null;
|
|
25981
|
+
};
|
|
25982
|
+
export type DeleteInvestmentMutationVariables = Exact<{
|
|
25983
|
+
id: Scalars['ID']['input'];
|
|
25984
|
+
}>;
|
|
25985
|
+
export type DeleteInvestmentMutation = {
|
|
25986
|
+
__typename?: 'Mutation';
|
|
25987
|
+
deleteInvestment?: {
|
|
25988
|
+
__typename?: 'Investment';
|
|
25989
|
+
id: string;
|
|
25990
|
+
state: EntityState;
|
|
25991
|
+
} | null;
|
|
25992
|
+
};
|
|
25993
|
+
export type DeleteInvestmentsMutationVariables = Exact<{
|
|
25994
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
|
25995
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25996
|
+
}>;
|
|
25997
|
+
export type DeleteInvestmentsMutation = {
|
|
25998
|
+
__typename?: 'Mutation';
|
|
25999
|
+
deleteInvestments?: Array<{
|
|
26000
|
+
__typename?: 'Investment';
|
|
26001
|
+
id: string;
|
|
26002
|
+
state: EntityState;
|
|
26003
|
+
} | null> | null;
|
|
26004
|
+
};
|
|
26005
|
+
export type GetInvestmentQueryVariables = Exact<{
|
|
26006
|
+
id: Scalars['ID']['input'];
|
|
26007
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
26008
|
+
}>;
|
|
26009
|
+
export type GetInvestmentQuery = {
|
|
26010
|
+
__typename?: 'Query';
|
|
26011
|
+
investment?: {
|
|
26012
|
+
__typename?: 'Investment';
|
|
26013
|
+
id: string;
|
|
26014
|
+
name: string;
|
|
26015
|
+
alternateNames?: Array<string | null> | null;
|
|
26016
|
+
creationDate: any;
|
|
26017
|
+
uri?: any | null;
|
|
26018
|
+
description?: string | null;
|
|
26019
|
+
identifier?: string | null;
|
|
26020
|
+
thing?: string | null;
|
|
26021
|
+
relevance?: number | null;
|
|
26022
|
+
} | null;
|
|
26023
|
+
};
|
|
26024
|
+
export type QueryInvestmentsQueryVariables = Exact<{
|
|
26025
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
26026
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
26027
|
+
}>;
|
|
26028
|
+
export type QueryInvestmentsQuery = {
|
|
26029
|
+
__typename?: 'Query';
|
|
26030
|
+
investments?: {
|
|
26031
|
+
__typename?: 'InvestmentResults';
|
|
26032
|
+
results?: Array<{
|
|
26033
|
+
__typename?: 'Investment';
|
|
26034
|
+
id: string;
|
|
26035
|
+
name: string;
|
|
26036
|
+
alternateNames?: Array<string | null> | null;
|
|
26037
|
+
creationDate: any;
|
|
26038
|
+
uri?: any | null;
|
|
26039
|
+
description?: string | null;
|
|
26040
|
+
identifier?: string | null;
|
|
26041
|
+
thing?: string | null;
|
|
26042
|
+
relevance?: number | null;
|
|
26043
|
+
} | null> | null;
|
|
26044
|
+
} | null;
|
|
26045
|
+
};
|
|
26046
|
+
export type UpdateInvestmentMutationVariables = Exact<{
|
|
26047
|
+
investment: InvestmentUpdateInput;
|
|
26048
|
+
}>;
|
|
26049
|
+
export type UpdateInvestmentMutation = {
|
|
26050
|
+
__typename?: 'Mutation';
|
|
26051
|
+
updateInvestment?: {
|
|
26052
|
+
__typename?: 'Investment';
|
|
26053
|
+
id: string;
|
|
26054
|
+
name: string;
|
|
26055
|
+
} | null;
|
|
26056
|
+
};
|
|
26057
|
+
export type CountInvestmentFundsQueryVariables = Exact<{
|
|
26058
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
26059
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
26060
|
+
}>;
|
|
26061
|
+
export type CountInvestmentFundsQuery = {
|
|
26062
|
+
__typename?: 'Query';
|
|
26063
|
+
countInvestmentFunds?: {
|
|
26064
|
+
__typename?: 'CountResult';
|
|
26065
|
+
count?: any | null;
|
|
26066
|
+
} | null;
|
|
26067
|
+
};
|
|
26068
|
+
export type CreateInvestmentFundMutationVariables = Exact<{
|
|
26069
|
+
investmentFund: InvestmentFundInput;
|
|
26070
|
+
}>;
|
|
26071
|
+
export type CreateInvestmentFundMutation = {
|
|
26072
|
+
__typename?: 'Mutation';
|
|
26073
|
+
createInvestmentFund?: {
|
|
26074
|
+
__typename?: 'InvestmentFund';
|
|
26075
|
+
id: string;
|
|
26076
|
+
name: string;
|
|
26077
|
+
} | null;
|
|
26078
|
+
};
|
|
26079
|
+
export type DeleteAllInvestmentFundsMutationVariables = Exact<{
|
|
26080
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
26081
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26082
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
26083
|
+
}>;
|
|
26084
|
+
export type DeleteAllInvestmentFundsMutation = {
|
|
26085
|
+
__typename?: 'Mutation';
|
|
26086
|
+
deleteAllInvestmentFunds?: Array<{
|
|
26087
|
+
__typename?: 'InvestmentFund';
|
|
26088
|
+
id: string;
|
|
26089
|
+
state: EntityState;
|
|
26090
|
+
} | null> | null;
|
|
26091
|
+
};
|
|
26092
|
+
export type DeleteInvestmentFundMutationVariables = Exact<{
|
|
26093
|
+
id: Scalars['ID']['input'];
|
|
26094
|
+
}>;
|
|
26095
|
+
export type DeleteInvestmentFundMutation = {
|
|
26096
|
+
__typename?: 'Mutation';
|
|
26097
|
+
deleteInvestmentFund?: {
|
|
26098
|
+
__typename?: 'InvestmentFund';
|
|
26099
|
+
id: string;
|
|
26100
|
+
state: EntityState;
|
|
26101
|
+
} | null;
|
|
26102
|
+
};
|
|
26103
|
+
export type DeleteInvestmentFundsMutationVariables = Exact<{
|
|
26104
|
+
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
|
26105
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26106
|
+
}>;
|
|
26107
|
+
export type DeleteInvestmentFundsMutation = {
|
|
26108
|
+
__typename?: 'Mutation';
|
|
26109
|
+
deleteInvestmentFunds?: Array<{
|
|
26110
|
+
__typename?: 'InvestmentFund';
|
|
26111
|
+
id: string;
|
|
26112
|
+
state: EntityState;
|
|
26113
|
+
} | null> | null;
|
|
26114
|
+
};
|
|
26115
|
+
export type GetInvestmentFundQueryVariables = Exact<{
|
|
26116
|
+
id: Scalars['ID']['input'];
|
|
26117
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
26118
|
+
}>;
|
|
26119
|
+
export type GetInvestmentFundQuery = {
|
|
26120
|
+
__typename?: 'Query';
|
|
26121
|
+
investmentFund?: {
|
|
26122
|
+
__typename?: 'InvestmentFund';
|
|
26123
|
+
id: string;
|
|
26124
|
+
name: string;
|
|
26125
|
+
alternateNames?: Array<string | null> | null;
|
|
26126
|
+
creationDate: any;
|
|
26127
|
+
uri?: any | null;
|
|
26128
|
+
description?: string | null;
|
|
26129
|
+
identifier?: string | null;
|
|
26130
|
+
thing?: string | null;
|
|
26131
|
+
relevance?: number | null;
|
|
26132
|
+
} | null;
|
|
26133
|
+
};
|
|
26134
|
+
export type QueryInvestmentFundsQueryVariables = Exact<{
|
|
26135
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
26136
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
26137
|
+
}>;
|
|
26138
|
+
export type QueryInvestmentFundsQuery = {
|
|
26139
|
+
__typename?: 'Query';
|
|
26140
|
+
investmentFunds?: {
|
|
26141
|
+
__typename?: 'InvestmentFundResults';
|
|
26142
|
+
results?: Array<{
|
|
26143
|
+
__typename?: 'InvestmentFund';
|
|
26144
|
+
id: string;
|
|
26145
|
+
name: string;
|
|
26146
|
+
alternateNames?: Array<string | null> | null;
|
|
26147
|
+
creationDate: any;
|
|
26148
|
+
uri?: any | null;
|
|
26149
|
+
description?: string | null;
|
|
26150
|
+
identifier?: string | null;
|
|
26151
|
+
thing?: string | null;
|
|
26152
|
+
relevance?: number | null;
|
|
26153
|
+
} | null> | null;
|
|
26154
|
+
} | null;
|
|
26155
|
+
};
|
|
26156
|
+
export type UpdateInvestmentFundMutationVariables = Exact<{
|
|
26157
|
+
investmentFund: InvestmentFundUpdateInput;
|
|
26158
|
+
}>;
|
|
26159
|
+
export type UpdateInvestmentFundMutation = {
|
|
26160
|
+
__typename?: 'Mutation';
|
|
26161
|
+
updateInvestmentFund?: {
|
|
26162
|
+
__typename?: 'InvestmentFund';
|
|
26163
|
+
id: string;
|
|
26164
|
+
name: string;
|
|
26165
|
+
} | null;
|
|
26166
|
+
};
|
|
25019
26167
|
export type CountLabelsQueryVariables = Exact<{
|
|
25020
26168
|
filter?: InputMaybe<LabelFilter>;
|
|
25021
26169
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -27769,6 +28917,7 @@ export type PromptSpecificationsMutation = {
|
|
|
27769
28917
|
fileExtension?: string | null;
|
|
27770
28918
|
fileName?: string | null;
|
|
27771
28919
|
fileSize?: any | null;
|
|
28920
|
+
fileMetadata?: string | null;
|
|
27772
28921
|
relativeFolderPath?: string | null;
|
|
27773
28922
|
masterUri?: any | null;
|
|
27774
28923
|
imageUri?: any | null;
|