graphlit-client 1.0.20251210002 → 1.0.20251211002
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.
|
@@ -706,8 +706,10 @@ export const GetConnector = gql `
|
|
|
706
706
|
clientSecret
|
|
707
707
|
}
|
|
708
708
|
oauth {
|
|
709
|
-
refreshToken
|
|
710
709
|
provider
|
|
710
|
+
clientId
|
|
711
|
+
clientSecret
|
|
712
|
+
refreshToken
|
|
711
713
|
metadata
|
|
712
714
|
}
|
|
713
715
|
arcade {
|
|
@@ -768,8 +770,10 @@ export const QueryConnectors = gql `
|
|
|
768
770
|
clientSecret
|
|
769
771
|
}
|
|
770
772
|
oauth {
|
|
771
|
-
refreshToken
|
|
772
773
|
provider
|
|
774
|
+
clientId
|
|
775
|
+
clientSecret
|
|
776
|
+
refreshToken
|
|
773
777
|
metadata
|
|
774
778
|
}
|
|
775
779
|
arcade {
|
|
@@ -14716,8 +14720,10 @@ export const GetUser = gql `
|
|
|
14716
14720
|
clientSecret
|
|
14717
14721
|
}
|
|
14718
14722
|
oauth {
|
|
14719
|
-
refreshToken
|
|
14720
14723
|
provider
|
|
14724
|
+
clientId
|
|
14725
|
+
clientSecret
|
|
14726
|
+
refreshToken
|
|
14721
14727
|
metadata
|
|
14722
14728
|
}
|
|
14723
14729
|
arcade {
|
|
@@ -14785,8 +14791,10 @@ export const GetUserByIdentifier = gql `
|
|
|
14785
14791
|
clientSecret
|
|
14786
14792
|
}
|
|
14787
14793
|
oauth {
|
|
14788
|
-
refreshToken
|
|
14789
14794
|
provider
|
|
14795
|
+
clientId
|
|
14796
|
+
clientSecret
|
|
14797
|
+
refreshToken
|
|
14790
14798
|
metadata
|
|
14791
14799
|
}
|
|
14792
14800
|
arcade {
|
|
@@ -14855,8 +14863,10 @@ export const QueryUsers = gql `
|
|
|
14855
14863
|
clientSecret
|
|
14856
14864
|
}
|
|
14857
14865
|
oauth {
|
|
14858
|
-
refreshToken
|
|
14859
14866
|
provider
|
|
14867
|
+
clientId
|
|
14868
|
+
clientSecret
|
|
14869
|
+
refreshToken
|
|
14860
14870
|
metadata
|
|
14861
14871
|
}
|
|
14862
14872
|
arcade {
|
|
@@ -5418,10 +5418,10 @@ export type GitHubCommitsFeedProperties = {
|
|
|
5418
5418
|
export type GitHubCommitsFeedPropertiesInput = {
|
|
5419
5419
|
/** GitHub Commits authentication type, defaults to PersonalAccessToken. */
|
|
5420
5420
|
authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
|
|
5421
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5422
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5423
5421
|
/** GitHub repository branch, defaults to default branch. */
|
|
5424
5422
|
branch?: InputMaybe<Scalars['String']['input']>;
|
|
5423
|
+
/** The authentication connector reference. */
|
|
5424
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5425
5425
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
5426
5426
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5427
5427
|
/** GitHub refresh token, requires OAuth authentication type. */
|
|
@@ -5437,10 +5437,10 @@ export type GitHubCommitsFeedPropertiesInput = {
|
|
|
5437
5437
|
export type GitHubCommitsFeedPropertiesUpdateInput = {
|
|
5438
5438
|
/** GitHub Commits authentication type. */
|
|
5439
5439
|
authenticationType?: InputMaybe<GitHubCommitAuthenticationTypes>;
|
|
5440
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5441
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5442
5440
|
/** GitHub repository branch. */
|
|
5443
5441
|
branch?: InputMaybe<Scalars['String']['input']>;
|
|
5442
|
+
/** The authentication connector reference. */
|
|
5443
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5444
5444
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
5445
5445
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5446
5446
|
/** GitHub refresh token, requires OAuth authentication type. */
|
|
@@ -5474,8 +5474,8 @@ export type GitHubFeedProperties = {
|
|
|
5474
5474
|
export type GitHubFeedPropertiesInput = {
|
|
5475
5475
|
/** GitHub authentication type, defaults to PersonalAccessToken. */
|
|
5476
5476
|
authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
|
|
5477
|
-
/**
|
|
5478
|
-
|
|
5477
|
+
/** The authentication connector reference. */
|
|
5478
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5479
5479
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
5480
5480
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5481
5481
|
/** GitHub refresh token, requires OAuth authentication type. */
|
|
@@ -5491,8 +5491,8 @@ export type GitHubFeedPropertiesInput = {
|
|
|
5491
5491
|
export type GitHubFeedPropertiesUpdateInput = {
|
|
5492
5492
|
/** GitHub authentication type, defaults to PersonalAccessToken. */
|
|
5493
5493
|
authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
|
|
5494
|
-
/**
|
|
5495
|
-
|
|
5494
|
+
/** The authentication connector reference. */
|
|
5495
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5496
5496
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
5497
5497
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5498
5498
|
/** GitHub refresh token, requires OAuth authentication type. */
|
|
@@ -5531,8 +5531,8 @@ export type GitHubIssuesFeedProperties = {
|
|
|
5531
5531
|
export type GitHubIssuesFeedPropertiesInput = {
|
|
5532
5532
|
/** GitHub Issues authentication type, defaults to PersonalAccessToken. */
|
|
5533
5533
|
authenticationType?: InputMaybe<GitHubIssueAuthenticationTypes>;
|
|
5534
|
-
/**
|
|
5535
|
-
|
|
5534
|
+
/** The authentication connector reference. */
|
|
5535
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5536
5536
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
5537
5537
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5538
5538
|
/** GitHub refresh token, requires OAuth authentication type. */
|
|
@@ -5584,8 +5584,8 @@ export type GitHubPullRequestsFeedProperties = {
|
|
|
5584
5584
|
export type GitHubPullRequestsFeedPropertiesInput = {
|
|
5585
5585
|
/** GitHub Pull Requests authentication type, defaults to PersonalAccessToken. */
|
|
5586
5586
|
authenticationType?: InputMaybe<GitHubPullRequestAuthenticationTypes>;
|
|
5587
|
-
/**
|
|
5588
|
-
|
|
5587
|
+
/** The authentication connector reference. */
|
|
5588
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5589
5589
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
5590
5590
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5591
5591
|
/** GitHub refresh token, requires OAuth authentication type. */
|
|
@@ -5601,8 +5601,8 @@ export type GitHubPullRequestsFeedPropertiesInput = {
|
|
|
5601
5601
|
export type GitHubPullRequestsFeedPropertiesUpdateInput = {
|
|
5602
5602
|
/** GitHub Pull Requests authentication type. */
|
|
5603
5603
|
authenticationType?: InputMaybe<GitHubPullRequestAuthenticationTypes>;
|
|
5604
|
-
/**
|
|
5605
|
-
|
|
5604
|
+
/** The authentication connector reference. */
|
|
5605
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5606
5606
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
|
5607
5607
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
5608
5608
|
/** GitHub refresh token, requires OAuth authentication type. */
|
|
@@ -5713,8 +5713,6 @@ export type GoogleCalendarFeedPropertiesInput = {
|
|
|
5713
5713
|
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5714
5714
|
/** Google Calendar authentication type, defaults to User. */
|
|
5715
5715
|
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
|
5716
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5717
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5718
5716
|
/** Read calendar events before this date (inclusive), optional. */
|
|
5719
5717
|
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5720
5718
|
/** Google Email calendar identifier, optional. */
|
|
@@ -5723,6 +5721,8 @@ export type GoogleCalendarFeedPropertiesInput = {
|
|
|
5723
5721
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5724
5722
|
/** Google OAuth2 client secret, requires User authentication type. */
|
|
5725
5723
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5724
|
+
/** The authentication connector reference. */
|
|
5725
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5726
5726
|
/** Google OAuth2 refresh token, requires User authentication type. */
|
|
5727
5727
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
5728
5728
|
/** Calendar listing type, i.e. past or new events. */
|
|
@@ -5734,8 +5734,6 @@ export type GoogleCalendarFeedPropertiesUpdateInput = {
|
|
|
5734
5734
|
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5735
5735
|
/** Google Calendar authentication type, defaults to User. */
|
|
5736
5736
|
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
|
5737
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5738
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5739
5737
|
/** Read calendar events before this date (inclusive), optional. */
|
|
5740
5738
|
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5741
5739
|
/** Google Email calendar identifier, optional. */
|
|
@@ -5744,6 +5742,8 @@ export type GoogleCalendarFeedPropertiesUpdateInput = {
|
|
|
5744
5742
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5745
5743
|
/** Google OAuth2 client secret, requires User authentication type. */
|
|
5746
5744
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5745
|
+
/** The authentication connector reference. */
|
|
5746
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5747
5747
|
/** Google OAuth2 refresh token, requires User authentication type. */
|
|
5748
5748
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
5749
5749
|
/** Calendar listing type, i.e. past or new events. */
|
|
@@ -5753,12 +5753,12 @@ export type GoogleCalendarFeedPropertiesUpdateInput = {
|
|
|
5753
5753
|
export type GoogleCalendarsInput = {
|
|
5754
5754
|
/** Google Calendar authentication type, defaults to User. */
|
|
5755
5755
|
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
|
5756
|
-
/** Authorization identifier, for Connector authentication type. */
|
|
5757
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5758
5756
|
/** Google OAuth2 client identifier, for User authentication type. */
|
|
5759
5757
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5760
5758
|
/** Google OAuth2 client secret, for User authentication type. */
|
|
5761
5759
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5760
|
+
/** The authentication connector reference. */
|
|
5761
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5762
5762
|
/** Google OAuth2 refresh token, for User authentication type. */
|
|
5763
5763
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
5764
5764
|
};
|
|
@@ -5784,12 +5784,12 @@ export type GoogleContactsCrmFeedProperties = {
|
|
|
5784
5784
|
export type GoogleContactsCrmFeedPropertiesInput = {
|
|
5785
5785
|
/** Google Contacts authentication type, defaults to User. */
|
|
5786
5786
|
authenticationType?: InputMaybe<GoogleContactsAuthenticationTypes>;
|
|
5787
|
-
/** Authorization identifier, for Connector authentication type. */
|
|
5788
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5789
5787
|
/** Google OAuth2 client identifier, for User authentication type. */
|
|
5790
5788
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5791
5789
|
/** Google OAuth2 client secret, for User authentication type. */
|
|
5792
5790
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5791
|
+
/** The authentication connector reference. */
|
|
5792
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5793
5793
|
/** Google OAuth2 refresh token, for User authentication type. */
|
|
5794
5794
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
5795
5795
|
};
|
|
@@ -5797,12 +5797,12 @@ export type GoogleContactsCrmFeedPropertiesInput = {
|
|
|
5797
5797
|
export type GoogleContactsCrmFeedPropertiesUpdateInput = {
|
|
5798
5798
|
/** Google Contacts authentication type, defaults to User. */
|
|
5799
5799
|
authenticationType?: InputMaybe<GoogleContactsAuthenticationTypes>;
|
|
5800
|
-
/** Authorization identifier, for Connector authentication type. */
|
|
5801
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5802
5800
|
/** Google OAuth2 client identifier, for User authentication type. */
|
|
5803
5801
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5804
5802
|
/** Google OAuth2 client secret, for User authentication type. */
|
|
5805
5803
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5804
|
+
/** The authentication connector reference. */
|
|
5805
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5806
5806
|
/** Google OAuth2 refresh token, for User authentication type. */
|
|
5807
5807
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
5808
5808
|
};
|
|
@@ -5839,12 +5839,12 @@ export type GoogleDriveFeedProperties = {
|
|
|
5839
5839
|
export type GoogleDriveFeedPropertiesInput = {
|
|
5840
5840
|
/** Google Drive authentication type, defaults to User. */
|
|
5841
5841
|
authenticationType?: InputMaybe<GoogleDriveAuthenticationTypes>;
|
|
5842
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5843
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5844
5842
|
/** Google client identifier, requires User authentication type. */
|
|
5845
5843
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5846
5844
|
/** Google client secret, requires User authentication type. */
|
|
5847
5845
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5846
|
+
/** The authentication connector reference. */
|
|
5847
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5848
5848
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
|
5849
5849
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5850
5850
|
/** Google Drive folder identifier. */
|
|
@@ -5858,12 +5858,12 @@ export type GoogleDriveFeedPropertiesInput = {
|
|
|
5858
5858
|
export type GoogleDriveFeedPropertiesUpdateInput = {
|
|
5859
5859
|
/** Google Drive authentication type, defaults to User. */
|
|
5860
5860
|
authenticationType?: InputMaybe<GoogleDriveAuthenticationTypes>;
|
|
5861
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5862
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5863
5861
|
/** Google client identifier, requires User authentication type. */
|
|
5864
5862
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5865
5863
|
/** Google client secret, requires User authentication type. */
|
|
5866
5864
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5865
|
+
/** The authentication connector reference. */
|
|
5866
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5867
5867
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
|
5868
5868
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5869
5869
|
/** Google Drive folder identifier. */
|
|
@@ -5891,12 +5891,12 @@ export type GoogleDriveFolderResults = {
|
|
|
5891
5891
|
export type GoogleDriveFoldersInput = {
|
|
5892
5892
|
/** Google Drive authentication type, defaults to User. */
|
|
5893
5893
|
authenticationType?: InputMaybe<GoogleDriveAuthenticationTypes>;
|
|
5894
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5895
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5896
5894
|
/** Google OAuth2 client identifier. */
|
|
5897
5895
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5898
5896
|
/** Google OAuth2 client secret. */
|
|
5899
5897
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5898
|
+
/** The authentication connector reference. */
|
|
5899
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5900
5900
|
/** Google OAuth2 refresh token. */
|
|
5901
5901
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
5902
5902
|
};
|
|
@@ -5934,12 +5934,12 @@ export type GoogleEmailFeedProperties = {
|
|
|
5934
5934
|
export type GoogleEmailFeedPropertiesInput = {
|
|
5935
5935
|
/** Google Email authentication type, defaults to User. */
|
|
5936
5936
|
authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
|
|
5937
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5938
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5939
5937
|
/** Google client identifier, requires User authentication type. */
|
|
5940
5938
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5941
5939
|
/** Google client secret, requires User authentication type. */
|
|
5942
5940
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5941
|
+
/** The authentication connector reference. */
|
|
5942
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5943
5943
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
5944
5944
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5945
5945
|
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
@@ -5959,12 +5959,12 @@ export type GoogleEmailFeedPropertiesInput = {
|
|
|
5959
5959
|
export type GoogleEmailFeedPropertiesUpdateInput = {
|
|
5960
5960
|
/** Google Email authentication type, defaults to User. */
|
|
5961
5961
|
authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
|
|
5962
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
5963
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
5964
5962
|
/** Google client identifier, requires User authentication type. */
|
|
5965
5963
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
5966
5964
|
/** Google client secret, requires User authentication type. */
|
|
5967
5965
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
5966
|
+
/** The authentication connector reference. */
|
|
5967
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
5968
5968
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
5969
5969
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5970
5970
|
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
@@ -9916,8 +9916,6 @@ export type MicrosoftCalendarFeedPropertiesInput = {
|
|
|
9916
9916
|
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
9917
9917
|
/** Microsoft Calendar authentication type, defaults to User. */
|
|
9918
9918
|
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
|
9919
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
9920
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
9921
9919
|
/** Read calendar events before this date (inclusive), optional. */
|
|
9922
9920
|
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
9923
9921
|
/** Microsoft Email calendar identifier, optional. */
|
|
@@ -9926,6 +9924,8 @@ export type MicrosoftCalendarFeedPropertiesInput = {
|
|
|
9926
9924
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
9927
9925
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
|
9928
9926
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
9927
|
+
/** The authentication connector reference. */
|
|
9928
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
9929
9929
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
|
9930
9930
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
9931
9931
|
/** Calendar listing type, i.e. past or new events. */
|
|
@@ -9937,8 +9937,6 @@ export type MicrosoftCalendarFeedPropertiesUpdateInput = {
|
|
|
9937
9937
|
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
9938
9938
|
/** Microsoft Calendar authentication type, defaults to User. */
|
|
9939
9939
|
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
|
9940
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
9941
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
9942
9940
|
/** Read calendar events before this date (inclusive), optional. */
|
|
9943
9941
|
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
9944
9942
|
/** Microsoft Email calendar identifier, optional. */
|
|
@@ -9947,6 +9945,8 @@ export type MicrosoftCalendarFeedPropertiesUpdateInput = {
|
|
|
9947
9945
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
9948
9946
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
|
9949
9947
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
9948
|
+
/** The authentication connector reference. */
|
|
9949
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
9950
9950
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
|
9951
9951
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
9952
9952
|
/** Calendar listing type, i.e. past or new events. */
|
|
@@ -9956,12 +9956,12 @@ export type MicrosoftCalendarFeedPropertiesUpdateInput = {
|
|
|
9956
9956
|
export type MicrosoftCalendarsInput = {
|
|
9957
9957
|
/** Microsoft Calendar authentication type, defaults to User. */
|
|
9958
9958
|
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
|
9959
|
-
/** Authorization identifier, for Connector authentication type. */
|
|
9960
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
9961
9959
|
/** Microsoft Entra ID client identifier, for User authentication type. */
|
|
9962
9960
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
9963
9961
|
/** Microsoft Entra ID client secret, for User authentication type. */
|
|
9964
9962
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
9963
|
+
/** The authentication connector reference. */
|
|
9964
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
9965
9965
|
/** Microsoft Entra ID refresh token, for User authentication type. */
|
|
9966
9966
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
9967
9967
|
};
|
|
@@ -9989,12 +9989,12 @@ export type MicrosoftContactsCrmFeedProperties = {
|
|
|
9989
9989
|
export type MicrosoftContactsCrmFeedPropertiesInput = {
|
|
9990
9990
|
/** Microsoft Contacts authentication type, defaults to User. */
|
|
9991
9991
|
authenticationType?: InputMaybe<MicrosoftContactsAuthenticationTypes>;
|
|
9992
|
-
/** Authorization identifier, for Connector authentication type. */
|
|
9993
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
9994
9992
|
/** Microsoft Entra ID client identifier, for User authentication type. */
|
|
9995
9993
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
9996
9994
|
/** Microsoft Entra ID client secret, for User authentication type. */
|
|
9997
9995
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
9996
|
+
/** The authentication connector reference. */
|
|
9997
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
9998
9998
|
/** Microsoft Entra ID refresh token, for User authentication type. */
|
|
9999
9999
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
10000
10000
|
/** Microsoft Entra ID tenant identifier, optional. */
|
|
@@ -10004,12 +10004,12 @@ export type MicrosoftContactsCrmFeedPropertiesInput = {
|
|
|
10004
10004
|
export type MicrosoftContactsCrmFeedPropertiesUpdateInput = {
|
|
10005
10005
|
/** Microsoft Contacts authentication type, defaults to User. */
|
|
10006
10006
|
authenticationType?: InputMaybe<MicrosoftContactsAuthenticationTypes>;
|
|
10007
|
-
/** Authorization identifier, for Connector authentication type. */
|
|
10008
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
10009
10007
|
/** Microsoft Entra ID client identifier, for User authentication type. */
|
|
10010
10008
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
10011
10009
|
/** Microsoft Entra ID client secret, for User authentication type. */
|
|
10012
10010
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10011
|
+
/** The authentication connector reference. */
|
|
10012
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
10013
10013
|
/** Microsoft Entra ID refresh token, for User authentication type. */
|
|
10014
10014
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
10015
10015
|
/** Microsoft Entra ID tenant identifier, optional. */
|
|
@@ -10049,12 +10049,12 @@ export type MicrosoftEmailFeedProperties = {
|
|
|
10049
10049
|
export type MicrosoftEmailFeedPropertiesInput = {
|
|
10050
10050
|
/** Microsoft Email authentication type, defaults to User. */
|
|
10051
10051
|
authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
|
|
10052
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
10053
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
10054
10052
|
/** Microsoft Email client identifier, requires User authentication type. */
|
|
10055
10053
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
10056
10054
|
/** Microsoft Email client secret, requires User authentication type. */
|
|
10057
10055
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10056
|
+
/** The authentication connector reference. */
|
|
10057
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
10058
10058
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
10059
10059
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10060
10060
|
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
@@ -10074,12 +10074,12 @@ export type MicrosoftEmailFeedPropertiesInput = {
|
|
|
10074
10074
|
export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
|
10075
10075
|
/** Microsoft Email authentication type, defaults to User. */
|
|
10076
10076
|
authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
|
|
10077
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
10078
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
10079
10077
|
/** Microsoft Email client identifier, requires User authentication type. */
|
|
10080
10078
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
10081
10079
|
/** Microsoft Email client secret, requires User authentication type. */
|
|
10082
10080
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10081
|
+
/** The authentication connector reference. */
|
|
10082
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
10083
10083
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
|
10084
10084
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10085
10085
|
/** Email filter in format 'key:value key:value' (supported: from, to, subject, has:attachment, is:unread, label, before, after). */
|
|
@@ -10117,12 +10117,12 @@ export type MicrosoftTeamsChannelResults = {
|
|
|
10117
10117
|
export type MicrosoftTeamsChannelsInput = {
|
|
10118
10118
|
/** Microsoft Teams authentication type, defaults to User. */
|
|
10119
10119
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
|
10120
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
10121
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
10122
10120
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
|
10123
10121
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
10124
10122
|
/** Microsoft Teams client secret, requires User authentication type. */
|
|
10125
10123
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10124
|
+
/** The authentication connector reference. */
|
|
10125
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
10126
10126
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
|
10127
10127
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
10128
10128
|
};
|
|
@@ -10152,14 +10152,14 @@ export type MicrosoftTeamsFeedProperties = {
|
|
|
10152
10152
|
export type MicrosoftTeamsFeedPropertiesInput = {
|
|
10153
10153
|
/** Microsoft Teams authentication type, defaults to User. */
|
|
10154
10154
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
|
10155
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
10156
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
10157
10155
|
/** Microsoft Teams channel identifier. */
|
|
10158
10156
|
channelId: Scalars['String']['input'];
|
|
10159
10157
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
|
10160
10158
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
10161
10159
|
/** Microsoft Teams client secret, requires User authentication type. */
|
|
10162
10160
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10161
|
+
/** The authentication connector reference. */
|
|
10162
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
10163
10163
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
10164
10164
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
10165
10165
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
|
@@ -10173,14 +10173,14 @@ export type MicrosoftTeamsFeedPropertiesInput = {
|
|
|
10173
10173
|
export type MicrosoftTeamsFeedPropertiesUpdateInput = {
|
|
10174
10174
|
/** Microsoft Teams authentication type, defaults to User. */
|
|
10175
10175
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
|
10176
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
10177
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
10178
10176
|
/** Microsoft Teams channel identifier. */
|
|
10179
10177
|
channelId: Scalars['String']['input'];
|
|
10180
10178
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
|
10181
10179
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
10182
10180
|
/** Microsoft Teams client secret, requires User authentication type. */
|
|
10183
10181
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10182
|
+
/** The authentication connector reference. */
|
|
10183
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
10184
10184
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
10185
10185
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
10186
10186
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
|
@@ -10208,12 +10208,12 @@ export type MicrosoftTeamsTeamResults = {
|
|
|
10208
10208
|
export type MicrosoftTeamsTeamsInput = {
|
|
10209
10209
|
/** Microsoft Teams authentication type, defaults to User. */
|
|
10210
10210
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
|
10211
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
10212
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
10213
10211
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
|
10214
10212
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
10215
10213
|
/** Microsoft Teams client secret, requires User authentication type. */
|
|
10216
10214
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10215
|
+
/** The authentication connector reference. */
|
|
10216
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
10217
10217
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
|
10218
10218
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
10219
10219
|
};
|
|
@@ -12377,12 +12377,12 @@ export type OneDriveFeedProperties = {
|
|
|
12377
12377
|
export type OneDriveFeedPropertiesInput = {
|
|
12378
12378
|
/** OneDrive authentication type, defaults to User. */
|
|
12379
12379
|
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
|
12380
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
12381
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
12382
12380
|
/** OneDrive client identifier, requires User authentication type. */
|
|
12383
12381
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
12384
12382
|
/** OneDrive client secret, requires User authentication type. */
|
|
12385
12383
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
12384
|
+
/** The authentication connector reference. */
|
|
12385
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
12386
12386
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
|
12387
12387
|
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
12388
12388
|
/** OneDrive folder identifier. */
|
|
@@ -12394,12 +12394,12 @@ export type OneDriveFeedPropertiesInput = {
|
|
|
12394
12394
|
export type OneDriveFeedPropertiesUpdateInput = {
|
|
12395
12395
|
/** OneDrive authentication type, defaults to User. */
|
|
12396
12396
|
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
|
12397
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
12398
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
12399
12397
|
/** OneDrive client identifier, requires User authentication type. */
|
|
12400
12398
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
12401
12399
|
/** OneDrive client secret, requires User authentication type. */
|
|
12402
12400
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
12401
|
+
/** The authentication connector reference. */
|
|
12402
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
12403
12403
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
|
12404
12404
|
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
12405
12405
|
/** OneDrive folder identifier. */
|
|
@@ -12425,12 +12425,12 @@ export type OneDriveFolderResults = {
|
|
|
12425
12425
|
export type OneDriveFoldersInput = {
|
|
12426
12426
|
/** OneDrive authentication type, defaults to User. */
|
|
12427
12427
|
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
|
12428
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
12429
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
12430
12428
|
/** Microsoft Entra ID client identifier. */
|
|
12431
12429
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
12432
12430
|
/** Microsoft Entra ID client secret. */
|
|
12433
12431
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
12432
|
+
/** The authentication connector reference. */
|
|
12433
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
12434
12434
|
/** Microsoft Entra ID refresh token. */
|
|
12435
12435
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
12436
12436
|
};
|
|
@@ -12680,6 +12680,10 @@ export declare enum OpenAiModels {
|
|
|
12680
12680
|
Gpt51_400K = "GPT51_400K",
|
|
12681
12681
|
/** GPT 5.1 400k (2025-11-13 version) */
|
|
12682
12682
|
Gpt51_400K_20251113 = "GPT51_400K_20251113",
|
|
12683
|
+
/** GPT 5.2 400k (Latest) */
|
|
12684
|
+
Gpt52_400K = "GPT52_400K",
|
|
12685
|
+
/** GPT 5.2 400k (2025-12-11 version) */
|
|
12686
|
+
Gpt52_400K_20251211 = "GPT52_400K_20251211",
|
|
12683
12687
|
/** o1 200k (Latest) */
|
|
12684
12688
|
O1_200K = "O1_200K",
|
|
12685
12689
|
/** o1 200k (2024-12-17 version) */
|
|
@@ -16209,12 +16213,12 @@ export type SharePointFeedPropertiesInput = {
|
|
|
16209
16213
|
accountName: Scalars['String']['input'];
|
|
16210
16214
|
/** SharePoint authentication type. */
|
|
16211
16215
|
authenticationType: SharePointAuthenticationTypes;
|
|
16212
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
16213
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
16214
16216
|
/** Microsoft Entra ID client identifier, requires user authentication type. */
|
|
16215
16217
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
16216
16218
|
/** Microsoft Entra ID client secret, requires user authentication type. */
|
|
16217
16219
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
16220
|
+
/** The authentication connector reference. */
|
|
16221
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
16218
16222
|
/** SharePoint folder identifier. */
|
|
16219
16223
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
16220
16224
|
/** SharePoint library identifier. */
|
|
@@ -16230,8 +16234,8 @@ export type SharePointFeedPropertiesUpdateInput = {
|
|
|
16230
16234
|
accountName?: InputMaybe<Scalars['String']['input']>;
|
|
16231
16235
|
/** SharePoint authentication type. */
|
|
16232
16236
|
authenticationType?: InputMaybe<SharePointAuthenticationTypes>;
|
|
16233
|
-
/**
|
|
16234
|
-
|
|
16237
|
+
/** The authentication connector reference. */
|
|
16238
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
16235
16239
|
/** SharePoint folder identifier. */
|
|
16236
16240
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
|
16237
16241
|
/** SharePoint library identifier. */
|
|
@@ -16261,12 +16265,12 @@ export type SharePointFolderResults = {
|
|
|
16261
16265
|
export type SharePointFoldersInput = {
|
|
16262
16266
|
/** SharePoint authentication type. */
|
|
16263
16267
|
authenticationType: SharePointAuthenticationTypes;
|
|
16264
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
16265
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
16266
16268
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
|
16267
16269
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
16268
16270
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
|
16269
16271
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
16272
|
+
/** The authentication connector reference. */
|
|
16273
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
16270
16274
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
|
16271
16275
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
16272
16276
|
/** Microsoft Entra ID tenant identifier, requires Application authentication type. */
|
|
@@ -16276,12 +16280,12 @@ export type SharePointFoldersInput = {
|
|
|
16276
16280
|
export type SharePointLibrariesInput = {
|
|
16277
16281
|
/** SharePoint authentication type. */
|
|
16278
16282
|
authenticationType: SharePointAuthenticationTypes;
|
|
16279
|
-
/** Authentication identifier, for Connector authentication type. */
|
|
16280
|
-
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
|
16281
16283
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
|
16282
16284
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
16283
16285
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
|
16284
16286
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
16287
|
+
/** The authentication connector reference. */
|
|
16288
|
+
connector?: InputMaybe<EntityReferenceInput>;
|
|
16285
16289
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
|
16286
16290
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
16287
16291
|
/** Microsoft Entra ID tenant identifier, requires Application authentication type. */
|
|
@@ -18993,8 +18997,10 @@ export type GetConnectorQuery = {
|
|
|
18993
18997
|
} | null;
|
|
18994
18998
|
oauth?: {
|
|
18995
18999
|
__typename?: 'OAuthAuthenticationProperties';
|
|
18996
|
-
refreshToken: string;
|
|
18997
19000
|
provider: OAuthProviders;
|
|
19001
|
+
clientId: string;
|
|
19002
|
+
clientSecret: string;
|
|
19003
|
+
refreshToken: string;
|
|
18998
19004
|
metadata?: string | null;
|
|
18999
19005
|
} | null;
|
|
19000
19006
|
arcade?: {
|
|
@@ -19071,8 +19077,10 @@ export type QueryConnectorsQuery = {
|
|
|
19071
19077
|
} | null;
|
|
19072
19078
|
oauth?: {
|
|
19073
19079
|
__typename?: 'OAuthAuthenticationProperties';
|
|
19074
|
-
refreshToken: string;
|
|
19075
19080
|
provider: OAuthProviders;
|
|
19081
|
+
clientId: string;
|
|
19082
|
+
clientSecret: string;
|
|
19083
|
+
refreshToken: string;
|
|
19076
19084
|
metadata?: string | null;
|
|
19077
19085
|
} | null;
|
|
19078
19086
|
arcade?: {
|
|
@@ -35349,8 +35357,10 @@ export type GetUserQuery = {
|
|
|
35349
35357
|
} | null;
|
|
35350
35358
|
oauth?: {
|
|
35351
35359
|
__typename?: 'OAuthAuthenticationProperties';
|
|
35352
|
-
refreshToken: string;
|
|
35353
35360
|
provider: OAuthProviders;
|
|
35361
|
+
clientId: string;
|
|
35362
|
+
clientSecret: string;
|
|
35363
|
+
refreshToken: string;
|
|
35354
35364
|
metadata?: string | null;
|
|
35355
35365
|
} | null;
|
|
35356
35366
|
arcade?: {
|
|
@@ -35433,8 +35443,10 @@ export type GetUserByIdentifierQuery = {
|
|
|
35433
35443
|
} | null;
|
|
35434
35444
|
oauth?: {
|
|
35435
35445
|
__typename?: 'OAuthAuthenticationProperties';
|
|
35436
|
-
refreshToken: string;
|
|
35437
35446
|
provider: OAuthProviders;
|
|
35447
|
+
clientId: string;
|
|
35448
|
+
clientSecret: string;
|
|
35449
|
+
refreshToken: string;
|
|
35438
35450
|
metadata?: string | null;
|
|
35439
35451
|
} | null;
|
|
35440
35452
|
arcade?: {
|
|
@@ -35520,8 +35532,10 @@ export type QueryUsersQuery = {
|
|
|
35520
35532
|
} | null;
|
|
35521
35533
|
oauth?: {
|
|
35522
35534
|
__typename?: 'OAuthAuthenticationProperties';
|
|
35523
|
-
refreshToken: string;
|
|
35524
35535
|
provider: OAuthProviders;
|
|
35536
|
+
clientId: string;
|
|
35537
|
+
clientSecret: string;
|
|
35538
|
+
refreshToken: string;
|
|
35525
35539
|
metadata?: string | null;
|
|
35526
35540
|
} | null;
|
|
35527
35541
|
arcade?: {
|
|
@@ -1944,6 +1944,10 @@ export var OpenAiModels;
|
|
|
1944
1944
|
OpenAiModels["Gpt51_400K"] = "GPT51_400K";
|
|
1945
1945
|
/** GPT 5.1 400k (2025-11-13 version) */
|
|
1946
1946
|
OpenAiModels["Gpt51_400K_20251113"] = "GPT51_400K_20251113";
|
|
1947
|
+
/** GPT 5.2 400k (Latest) */
|
|
1948
|
+
OpenAiModels["Gpt52_400K"] = "GPT52_400K";
|
|
1949
|
+
/** GPT 5.2 400k (2025-12-11 version) */
|
|
1950
|
+
OpenAiModels["Gpt52_400K_20251211"] = "GPT52_400K_20251211";
|
|
1947
1951
|
/** o1 200k (Latest) */
|
|
1948
1952
|
OpenAiModels["O1_200K"] = "O1_200K";
|
|
1949
1953
|
/** o1 200k (2024-12-17 version) */
|
package/dist/model-mapping.js
CHANGED
|
@@ -40,6 +40,9 @@ const OPENAI_MODEL_MAP = {
|
|
|
40
40
|
// GPT-5.1 models
|
|
41
41
|
[Types.OpenAiModels.Gpt51_400K]: "gpt-5.1",
|
|
42
42
|
[Types.OpenAiModels.Gpt51_400K_20251113]: "gpt-5.1-2025-11-13",
|
|
43
|
+
// GPT-5.2 models
|
|
44
|
+
[Types.OpenAiModels.Gpt52_400K]: "gpt-5.2",
|
|
45
|
+
[Types.OpenAiModels.Gpt52_400K_20251211]: "gpt-5.2-2025-12-11",
|
|
43
46
|
// O1 models
|
|
44
47
|
[Types.OpenAiModels.O1_200K]: "o1",
|
|
45
48
|
[Types.OpenAiModels.O1_200K_20241217]: "o1-2024-12-17",
|