graphlit-client 1.0.20251123002 → 1.0.20251124001
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.
|
@@ -413,6 +413,10 @@ export declare enum AnthropicModels {
|
|
|
413
413
|
Claude_4_5Haiku = "CLAUDE_4_5_HAIKU",
|
|
414
414
|
/** Claude 4.5 Haiku (10-01-2025 version) */
|
|
415
415
|
Claude_4_5Haiku_20251001 = "CLAUDE_4_5_HAIKU_20251001",
|
|
416
|
+
/** Claude 4.5 Opus (Latest) */
|
|
417
|
+
Claude_4_5Opus = "CLAUDE_4_5_OPUS",
|
|
418
|
+
/** Claude 4.5 Opus (11-01-2025 version) */
|
|
419
|
+
Claude_4_5Opus_20251101 = "CLAUDE_4_5_OPUS_20251101",
|
|
416
420
|
/** Claude 4.5 Sonnet (Latest) */
|
|
417
421
|
Claude_4_5Sonnet = "CLAUDE_4_5_SONNET",
|
|
418
422
|
/** Claude 4.5 Sonnet (09-29-2025 version) */
|
|
@@ -6641,18 +6645,34 @@ export type Investment = {
|
|
|
6641
6645
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
6642
6646
|
/** The creation date of the investment. */
|
|
6643
6647
|
creationDate: Scalars['DateTime']['output'];
|
|
6648
|
+
/** The current price per share. */
|
|
6649
|
+
currentPricePerShare?: Maybe<Scalars['Decimal']['output']>;
|
|
6644
6650
|
/** The investment description. */
|
|
6645
6651
|
description?: Maybe<Scalars['String']['output']>;
|
|
6652
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
6653
|
+
discountPercent?: Maybe<Scalars['Decimal']['output']>;
|
|
6654
|
+
/** The entry price per share. */
|
|
6655
|
+
entryPricePerShare?: Maybe<Scalars['Decimal']['output']>;
|
|
6646
6656
|
/** The EPSG code for spatial reference of the investment. */
|
|
6647
6657
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6648
6658
|
/** The feeds that discovered this investment. */
|
|
6649
6659
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
6660
|
+
/** The fund that made this investment. */
|
|
6661
|
+
fund?: Maybe<InvestmentFund>;
|
|
6650
6662
|
/** The H3 index of the investment. */
|
|
6651
6663
|
h3?: Maybe<H3>;
|
|
6652
6664
|
/** The ID of the investment. */
|
|
6653
6665
|
id: Scalars['ID']['output'];
|
|
6654
6666
|
/** The investment external identifier. */
|
|
6655
6667
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
6668
|
+
/** The date of the investment. */
|
|
6669
|
+
investmentDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6670
|
+
/** The fund that made this investment (for fund investments). */
|
|
6671
|
+
investorFund?: Maybe<InvestmentFund>;
|
|
6672
|
+
/** The organization that made this investment (for direct corporate investments). */
|
|
6673
|
+
investorOrganization?: Maybe<Organization>;
|
|
6674
|
+
/** The person who made this investment (for angel/individual investments). */
|
|
6675
|
+
investorPerson?: Maybe<Person>;
|
|
6656
6676
|
/** The extracted hyperlinks. */
|
|
6657
6677
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6658
6678
|
/** The geo-location of the investment. */
|
|
@@ -6661,16 +6681,36 @@ export type Investment = {
|
|
|
6661
6681
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6662
6682
|
/** The name of the investment. */
|
|
6663
6683
|
name: Scalars['String']['output'];
|
|
6684
|
+
/** The organization that received this investment (portfolio company). */
|
|
6685
|
+
organization?: Maybe<Organization>;
|
|
6664
6686
|
/** The owner of the investment. */
|
|
6665
6687
|
owner: Owner;
|
|
6688
|
+
/** The post-money valuation. */
|
|
6689
|
+
postValuation?: Maybe<Scalars['Decimal']['output']>;
|
|
6690
|
+
/** The currency code for the post-money valuation. */
|
|
6691
|
+
postValuationCurrency?: Maybe<Scalars['String']['output']>;
|
|
6692
|
+
/** Whether pro-rata rights were obtained. */
|
|
6693
|
+
proRataRights?: Maybe<Scalars['Boolean']['output']>;
|
|
6666
6694
|
/** The relevance score of the investment. */
|
|
6667
6695
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6696
|
+
/** The total round size. */
|
|
6697
|
+
roundSize?: Maybe<Scalars['Decimal']['output']>;
|
|
6698
|
+
/** The currency code for the round size. */
|
|
6699
|
+
roundSizeCurrency?: Maybe<Scalars['String']['output']>;
|
|
6700
|
+
/** The number of shares owned. */
|
|
6701
|
+
sharesOwned?: Maybe<Scalars['Decimal']['output']>;
|
|
6702
|
+
/** The investment stage. */
|
|
6703
|
+
stage?: Maybe<Scalars['String']['output']>;
|
|
6668
6704
|
/** The state of the investment (i.e. created, enabled). */
|
|
6669
6705
|
state: EntityState;
|
|
6706
|
+
/** The investment status. */
|
|
6707
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
6670
6708
|
/** The JSON-LD value of the investment. */
|
|
6671
6709
|
thing?: Maybe<Scalars['String']['output']>;
|
|
6672
6710
|
/** The investment URI. */
|
|
6673
6711
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
6712
|
+
/** The investment vehicle type. */
|
|
6713
|
+
vehicle?: Maybe<Scalars['String']['output']>;
|
|
6674
6714
|
/** The workflow associated with this investment. */
|
|
6675
6715
|
workflow?: Maybe<Workflow>;
|
|
6676
6716
|
};
|
|
@@ -6762,6 +6802,8 @@ export type InvestmentFund = {
|
|
|
6762
6802
|
amountCurrency?: Maybe<Scalars['String']['output']>;
|
|
6763
6803
|
/** The geo-boundary of the investmentfund, as GeoJSON Feature with Polygon geometry. */
|
|
6764
6804
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
6805
|
+
/** The child funds (sub-funds within this fund). */
|
|
6806
|
+
childFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
6765
6807
|
/** The creation date of the investmentfund. */
|
|
6766
6808
|
creationDate: Scalars['DateTime']['output'];
|
|
6767
6809
|
/** The investmentfund description. */
|
|
@@ -6770,12 +6812,16 @@ export type InvestmentFund = {
|
|
|
6770
6812
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6771
6813
|
/** The feeds that discovered this investmentfund. */
|
|
6772
6814
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
6815
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6816
|
+
fundType?: Maybe<Scalars['String']['output']>;
|
|
6773
6817
|
/** The H3 index of the investmentfund. */
|
|
6774
6818
|
h3?: Maybe<H3>;
|
|
6775
6819
|
/** The ID of the investmentfund. */
|
|
6776
6820
|
id: Scalars['ID']['output'];
|
|
6777
6821
|
/** The investmentfund external identifier. */
|
|
6778
6822
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
6823
|
+
/** The individual investments made by this fund. */
|
|
6824
|
+
investments?: Maybe<Array<Maybe<Investment>>>;
|
|
6779
6825
|
/** The extracted hyperlinks. */
|
|
6780
6826
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6781
6827
|
/** The geo-location of the investmentfund. */
|
|
@@ -6784,16 +6830,26 @@ export type InvestmentFund = {
|
|
|
6784
6830
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6785
6831
|
/** The name of the investmentfund. */
|
|
6786
6832
|
name: Scalars['String']['output'];
|
|
6833
|
+
/** The portfolio companies this fund has invested in. */
|
|
6834
|
+
organizations?: Maybe<Array<Maybe<Organization>>>;
|
|
6787
6835
|
/** The owner of the investmentfund. */
|
|
6788
6836
|
owner: Owner;
|
|
6837
|
+
/** The parent fund (for fund-of-funds structures). */
|
|
6838
|
+
parentFund?: Maybe<InvestmentFund>;
|
|
6789
6839
|
/** The relevance score of the investmentfund. */
|
|
6790
6840
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6791
6841
|
/** The state of the investmentfund (i.e. created, enabled). */
|
|
6792
6842
|
state: EntityState;
|
|
6843
|
+
/** The target fund size. */
|
|
6844
|
+
targetSize?: Maybe<Scalars['Decimal']['output']>;
|
|
6845
|
+
/** The currency for the target fund size. */
|
|
6846
|
+
targetSizeCurrency?: Maybe<Scalars['String']['output']>;
|
|
6793
6847
|
/** The JSON-LD value of the investmentfund. */
|
|
6794
6848
|
thing?: Maybe<Scalars['String']['output']>;
|
|
6795
6849
|
/** The investmentfund URI. */
|
|
6796
6850
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
6851
|
+
/** The fund vintage year. */
|
|
6852
|
+
vintage?: Maybe<Scalars['Int']['output']>;
|
|
6797
6853
|
/** The workflow associated with this investment fund. */
|
|
6798
6854
|
workflow?: Maybe<Workflow>;
|
|
6799
6855
|
};
|
|
@@ -6884,14 +6940,22 @@ export type InvestmentFundInput = {
|
|
|
6884
6940
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6885
6941
|
/** The investmentfund description. */
|
|
6886
6942
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6943
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6944
|
+
fundType?: InputMaybe<Scalars['String']['input']>;
|
|
6887
6945
|
/** The investmentfund external identifier. */
|
|
6888
6946
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
6889
6947
|
/** The investmentfund geo-location. */
|
|
6890
6948
|
location?: InputMaybe<PointInput>;
|
|
6891
6949
|
/** The name of the investmentfund. */
|
|
6892
6950
|
name: Scalars['String']['input'];
|
|
6951
|
+
/** The target fund size. */
|
|
6952
|
+
targetSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6953
|
+
/** The currency for the target fund size. */
|
|
6954
|
+
targetSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6893
6955
|
/** The investmentfund URI. */
|
|
6894
6956
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6957
|
+
/** The fund vintage year. */
|
|
6958
|
+
vintage?: InputMaybe<Scalars['Int']['input']>;
|
|
6895
6959
|
};
|
|
6896
6960
|
/** Represents investment fund query results. */
|
|
6897
6961
|
export type InvestmentFundResults = {
|
|
@@ -6911,6 +6975,8 @@ export type InvestmentFundUpdateInput = {
|
|
|
6911
6975
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6912
6976
|
/** The investmentfund description. */
|
|
6913
6977
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6978
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6979
|
+
fundType?: InputMaybe<Scalars['String']['input']>;
|
|
6914
6980
|
/** The ID of the investmentfund to update. */
|
|
6915
6981
|
id: Scalars['ID']['input'];
|
|
6916
6982
|
/** The investmentfund external identifier. */
|
|
@@ -6919,8 +6985,14 @@ export type InvestmentFundUpdateInput = {
|
|
|
6919
6985
|
location?: InputMaybe<PointInput>;
|
|
6920
6986
|
/** The name of the investmentfund. */
|
|
6921
6987
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6988
|
+
/** The target fund size. */
|
|
6989
|
+
targetSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6990
|
+
/** The currency for the target fund size. */
|
|
6991
|
+
targetSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6922
6992
|
/** The investmentfund URI. */
|
|
6923
6993
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6994
|
+
/** The fund vintage year. */
|
|
6995
|
+
vintage?: InputMaybe<Scalars['Int']['input']>;
|
|
6924
6996
|
};
|
|
6925
6997
|
/** Represents an investment. */
|
|
6926
6998
|
export type InvestmentInput = {
|
|
@@ -6930,16 +7002,42 @@ export type InvestmentInput = {
|
|
|
6930
7002
|
amountCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6931
7003
|
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6932
7004
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
7005
|
+
/** The current price per share. */
|
|
7006
|
+
currentPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6933
7007
|
/** The investment description. */
|
|
6934
7008
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7009
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
7010
|
+
discountPercent?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7011
|
+
/** The entry price per share. */
|
|
7012
|
+
entryPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6935
7013
|
/** The investment external identifier. */
|
|
6936
7014
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
7015
|
+
/** The date of the investment. */
|
|
7016
|
+
investmentDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6937
7017
|
/** The investment geo-location. */
|
|
6938
7018
|
location?: InputMaybe<PointInput>;
|
|
6939
7019
|
/** The name of the investment. */
|
|
6940
7020
|
name: Scalars['String']['input'];
|
|
7021
|
+
/** The post-money valuation. */
|
|
7022
|
+
postValuation?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7023
|
+
/** The currency code for the post-money valuation. */
|
|
7024
|
+
postValuationCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7025
|
+
/** Whether pro-rata rights were obtained. */
|
|
7026
|
+
proRataRights?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7027
|
+
/** The total round size. */
|
|
7028
|
+
roundSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7029
|
+
/** The currency code for the round size. */
|
|
7030
|
+
roundSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7031
|
+
/** The number of shares owned. */
|
|
7032
|
+
sharesOwned?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7033
|
+
/** The investment stage. */
|
|
7034
|
+
stage?: InputMaybe<Scalars['String']['input']>;
|
|
7035
|
+
/** The investment status. */
|
|
7036
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
6941
7037
|
/** The investment URI. */
|
|
6942
7038
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
7039
|
+
/** The investment vehicle type. */
|
|
7040
|
+
vehicle?: InputMaybe<Scalars['String']['input']>;
|
|
6943
7041
|
};
|
|
6944
7042
|
/** Represents investment query results. */
|
|
6945
7043
|
export type InvestmentResults = {
|
|
@@ -6957,18 +7055,44 @@ export type InvestmentUpdateInput = {
|
|
|
6957
7055
|
amountCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6958
7056
|
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6959
7057
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
7058
|
+
/** The current price per share. */
|
|
7059
|
+
currentPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6960
7060
|
/** The investment description. */
|
|
6961
7061
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7062
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
7063
|
+
discountPercent?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7064
|
+
/** The entry price per share. */
|
|
7065
|
+
entryPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6962
7066
|
/** The ID of the investment to update. */
|
|
6963
7067
|
id: Scalars['ID']['input'];
|
|
6964
7068
|
/** The investment external identifier. */
|
|
6965
7069
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
7070
|
+
/** The date of the investment. */
|
|
7071
|
+
investmentDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6966
7072
|
/** The investment geo-location. */
|
|
6967
7073
|
location?: InputMaybe<PointInput>;
|
|
6968
7074
|
/** The name of the investment. */
|
|
6969
7075
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7076
|
+
/** The post-money valuation. */
|
|
7077
|
+
postValuation?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7078
|
+
/** The currency code for the post-money valuation. */
|
|
7079
|
+
postValuationCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7080
|
+
/** Whether pro-rata rights were obtained. */
|
|
7081
|
+
proRataRights?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7082
|
+
/** The total round size. */
|
|
7083
|
+
roundSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7084
|
+
/** The currency code for the round size. */
|
|
7085
|
+
roundSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7086
|
+
/** The number of shares owned. */
|
|
7087
|
+
sharesOwned?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7088
|
+
/** The investment stage. */
|
|
7089
|
+
stage?: InputMaybe<Scalars['String']['input']>;
|
|
7090
|
+
/** The investment status. */
|
|
7091
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
6970
7092
|
/** The investment URI. */
|
|
6971
7093
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
7094
|
+
/** The investment vehicle type. */
|
|
7095
|
+
vehicle?: InputMaybe<Scalars['String']['input']>;
|
|
6972
7096
|
};
|
|
6973
7097
|
/** Represents issue feed properties. */
|
|
6974
7098
|
export type IssueFeedProperties = {
|
|
@@ -12236,10 +12360,14 @@ export type Organization = {
|
|
|
12236
12360
|
description?: Maybe<Scalars['String']['output']>;
|
|
12237
12361
|
/** The email address of the organization. */
|
|
12238
12362
|
email?: Maybe<Scalars['String']['output']>;
|
|
12363
|
+
/** The employee(s) of this organization. */
|
|
12364
|
+
employees?: Maybe<Array<Maybe<Person>>>;
|
|
12239
12365
|
/** The EPSG code for spatial reference of the organization. */
|
|
12240
12366
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
12241
12367
|
/** The feeds that discovered this organization. */
|
|
12242
12368
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
12369
|
+
/** The founder(s) of this organization. */
|
|
12370
|
+
founders?: Maybe<Array<Maybe<Person>>>;
|
|
12243
12371
|
/** The founding date of the organization. */
|
|
12244
12372
|
foundingDate?: Maybe<Scalars['DateTime']['output']>;
|
|
12245
12373
|
/** The H3 index of the organization. */
|
|
@@ -12254,18 +12382,30 @@ export type Organization = {
|
|
|
12254
12382
|
investment?: Maybe<Scalars['Decimal']['output']>;
|
|
12255
12383
|
/** The currency of the investment into the organization. */
|
|
12256
12384
|
investmentCurrency?: Maybe<Scalars['String']['output']>;
|
|
12385
|
+
/** Investments received by this organization (as portfolio company). */
|
|
12386
|
+
investmentsReceived?: Maybe<Array<Maybe<Investment>>>;
|
|
12387
|
+
/** Investment funds that have invested in this organization. */
|
|
12388
|
+
investorFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
12257
12389
|
/** The official legal name of the organization. */
|
|
12258
12390
|
legalName?: Maybe<Scalars['String']['output']>;
|
|
12259
12391
|
/** The extracted hyperlinks. */
|
|
12260
12392
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
12261
12393
|
/** The geo-location of the organization. */
|
|
12262
12394
|
location?: Maybe<Point>;
|
|
12395
|
+
/** The location(s) of this organization. */
|
|
12396
|
+
locations?: Maybe<Array<Maybe<Place>>>;
|
|
12397
|
+
/** Organization(s) this organization is a member of. */
|
|
12398
|
+
memberOf?: Maybe<Array<Maybe<Organization>>>;
|
|
12399
|
+
/** The member(s) of this organization. */
|
|
12400
|
+
members?: Maybe<Array<Maybe<Person>>>;
|
|
12263
12401
|
/** The modified date of the organization. */
|
|
12264
12402
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
12265
12403
|
/** The name of the organization. */
|
|
12266
12404
|
name: Scalars['String']['output'];
|
|
12267
12405
|
/** The owner of the organization. */
|
|
12268
12406
|
owner: Owner;
|
|
12407
|
+
/** The parent organization. */
|
|
12408
|
+
parentOrganization?: Maybe<Organization>;
|
|
12269
12409
|
/** The relevance score of the organization. */
|
|
12270
12410
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
12271
12411
|
/** The revenue of the organization. */
|
|
@@ -12274,6 +12414,8 @@ export type Organization = {
|
|
|
12274
12414
|
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
12275
12415
|
/** The state of the organization (i.e. created, enabled). */
|
|
12276
12416
|
state: EntityState;
|
|
12417
|
+
/** Sub-organization(s) of this organization. */
|
|
12418
|
+
subOrganizations?: Maybe<Array<Maybe<Organization>>>;
|
|
12277
12419
|
/** The telephone number of the organization. */
|
|
12278
12420
|
telephone?: Maybe<Scalars['String']['output']>;
|
|
12279
12421
|
/** The JSON-LD value of the organization. */
|
|
@@ -12600,10 +12742,14 @@ export type Person = {
|
|
|
12600
12742
|
alumniOf?: Maybe<Array<Maybe<Organization>>>;
|
|
12601
12743
|
/** The birth date of the person. */
|
|
12602
12744
|
birthDate?: Maybe<Scalars['Date']['output']>;
|
|
12745
|
+
/** The place where the person was born. */
|
|
12746
|
+
birthPlace?: Maybe<Place>;
|
|
12603
12747
|
/** The geo-boundary of the person, as GeoJSON Feature with Polygon geometry. */
|
|
12604
12748
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
12605
12749
|
/** The creation date of the person. */
|
|
12606
12750
|
creationDate: Scalars['DateTime']['output'];
|
|
12751
|
+
/** The place where the person died. */
|
|
12752
|
+
deathPlace?: Maybe<Place>;
|
|
12607
12753
|
/** The person description. */
|
|
12608
12754
|
description?: Maybe<Scalars['String']['output']>;
|
|
12609
12755
|
/** The education of the person. */
|
|
@@ -12620,6 +12766,8 @@ export type Person = {
|
|
|
12620
12766
|
givenName?: Maybe<Scalars['String']['output']>;
|
|
12621
12767
|
/** The H3 index of the person. */
|
|
12622
12768
|
h3?: Maybe<H3>;
|
|
12769
|
+
/** The place(s) where the person lives. */
|
|
12770
|
+
homeLocation?: Maybe<Array<Maybe<Place>>>;
|
|
12623
12771
|
/** The ID of the person. */
|
|
12624
12772
|
id: Scalars['ID']['output'];
|
|
12625
12773
|
/** The person external identifier. */
|
|
@@ -12650,6 +12798,8 @@ export type Person = {
|
|
|
12650
12798
|
title?: Maybe<Scalars['String']['output']>;
|
|
12651
12799
|
/** The person URI. */
|
|
12652
12800
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
12801
|
+
/** The place(s) where the person works. */
|
|
12802
|
+
workLocation?: Maybe<Array<Maybe<Place>>>;
|
|
12653
12803
|
/** The workflow associated with this person. */
|
|
12654
12804
|
workflow?: Maybe<Workflow>;
|
|
12655
12805
|
/** The organizations the person works for. */
|
|
@@ -47,6 +47,10 @@ export var AnthropicModels;
|
|
|
47
47
|
AnthropicModels["Claude_4_5Haiku"] = "CLAUDE_4_5_HAIKU";
|
|
48
48
|
/** Claude 4.5 Haiku (10-01-2025 version) */
|
|
49
49
|
AnthropicModels["Claude_4_5Haiku_20251001"] = "CLAUDE_4_5_HAIKU_20251001";
|
|
50
|
+
/** Claude 4.5 Opus (Latest) */
|
|
51
|
+
AnthropicModels["Claude_4_5Opus"] = "CLAUDE_4_5_OPUS";
|
|
52
|
+
/** Claude 4.5 Opus (11-01-2025 version) */
|
|
53
|
+
AnthropicModels["Claude_4_5Opus_20251101"] = "CLAUDE_4_5_OPUS_20251101";
|
|
50
54
|
/** Claude 4.5 Sonnet (Latest) */
|
|
51
55
|
AnthropicModels["Claude_4_5Sonnet"] = "CLAUDE_4_5_SONNET";
|
|
52
56
|
/** Claude 4.5 Sonnet (09-29-2025 version) */
|