graphlit-client 1.0.20250723001 → 1.0.20250731002
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.
@@ -1084,8 +1084,9 @@ export type BoundingBoxInput = {
|
|
1084
1084
|
/** The width of the bounding box. */
|
1085
1085
|
width?: InputMaybe<Scalars['Float']['input']>;
|
1086
1086
|
};
|
1087
|
+
/** Box authentication type */
|
1087
1088
|
export declare enum BoxAuthenticationTypes {
|
1088
|
-
|
1089
|
+
/** User */
|
1089
1090
|
User = "USER"
|
1090
1091
|
}
|
1091
1092
|
/** Represents Box properties. */
|
@@ -1094,17 +1095,15 @@ export type BoxFeedProperties = {
|
|
1094
1095
|
/** Box authentication type. */
|
1095
1096
|
authenticationType?: Maybe<BoxAuthenticationTypes>;
|
1096
1097
|
/** Box client identifier. */
|
1097
|
-
clientId
|
1098
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
1098
1099
|
/** Box client secret. */
|
1099
|
-
clientSecret
|
1100
|
-
/** The OAuth authentication connector identifier, if using connector authentication. */
|
1101
|
-
connectorId?: Maybe<Scalars['ID']['output']>;
|
1100
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
1102
1101
|
/** Box folder identifier. */
|
1103
1102
|
folderId?: Maybe<Scalars['ID']['output']>;
|
1104
1103
|
/** Box redirect URI. */
|
1105
|
-
redirectUri
|
1104
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
1106
1105
|
/** Box refresh token. */
|
1107
|
-
refreshToken
|
1106
|
+
refreshToken?: Maybe<Scalars['String']['output']>;
|
1108
1107
|
};
|
1109
1108
|
/** Represents Box properties. */
|
1110
1109
|
export type BoxFeedPropertiesInput = {
|
@@ -1114,8 +1113,6 @@ export type BoxFeedPropertiesInput = {
|
|
1114
1113
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
1115
1114
|
/** Box client secret. */
|
1116
1115
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
1117
|
-
/** The OAuth authentication connector identifier, if using connector authentication. */
|
1118
|
-
connectorId?: InputMaybe<Scalars['ID']['input']>;
|
1119
1116
|
/** Box folder identifier. */
|
1120
1117
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
1121
1118
|
/** Box redirect URI. */
|
@@ -1131,8 +1128,6 @@ export type BoxFeedPropertiesUpdateInput = {
|
|
1131
1128
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
1132
1129
|
/** Box client secret. */
|
1133
1130
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
1134
|
-
/** The OAuth authentication connector identifier, if using connector authentication. */
|
1135
|
-
connectorId?: InputMaybe<Scalars['ID']['input']>;
|
1136
1131
|
/** Box folder identifier. */
|
1137
1132
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
1138
1133
|
/** Box redirect URI. */
|
@@ -1777,7 +1772,9 @@ export declare enum ConnectorTypes {
|
|
1777
1772
|
/** Authentication connector */
|
1778
1773
|
Authentication = "AUTHENTICATION",
|
1779
1774
|
/** Integration connector */
|
1780
|
-
Integration = "INTEGRATION"
|
1775
|
+
Integration = "INTEGRATION",
|
1776
|
+
/** Site connector */
|
1777
|
+
Site = "SITE"
|
1781
1778
|
}
|
1782
1779
|
/** Represents a connector. */
|
1783
1780
|
export type ConnectorUpdateInput = {
|
@@ -3276,27 +3273,26 @@ export type DrawingMetadataInput = {
|
|
3276
3273
|
/** The drawing Y origin. */
|
3277
3274
|
y?: InputMaybe<Scalars['Float']['input']>;
|
3278
3275
|
};
|
3276
|
+
/** Dropbox authentication type */
|
3279
3277
|
export declare enum DropboxAuthenticationTypes {
|
3280
|
-
|
3278
|
+
/** User */
|
3281
3279
|
User = "USER"
|
3282
3280
|
}
|
3283
3281
|
/** Represents Dropbox properties. */
|
3284
3282
|
export type DropboxFeedProperties = {
|
3285
3283
|
__typename?: 'DropboxFeedProperties';
|
3286
3284
|
/** Dropbox app key. */
|
3287
|
-
appKey
|
3285
|
+
appKey?: Maybe<Scalars['String']['output']>;
|
3288
3286
|
/** Dropbox app secret. */
|
3289
|
-
appSecret
|
3287
|
+
appSecret?: Maybe<Scalars['String']['output']>;
|
3290
3288
|
/** Dropbox authentication type. */
|
3291
3289
|
authenticationType?: Maybe<DropboxAuthenticationTypes>;
|
3292
|
-
/** The OAuth authentication connector identifier, if using connector authentication. */
|
3293
|
-
connectorId?: Maybe<Scalars['ID']['output']>;
|
3294
3290
|
/** Dropbox folder path. */
|
3295
3291
|
path?: Maybe<Scalars['ID']['output']>;
|
3296
3292
|
/** Dropbox redirect URI. */
|
3297
|
-
redirectUri
|
3293
|
+
redirectUri?: Maybe<Scalars['String']['output']>;
|
3298
3294
|
/** Dropbox refresh token. */
|
3299
|
-
refreshToken
|
3295
|
+
refreshToken?: Maybe<Scalars['String']['output']>;
|
3300
3296
|
};
|
3301
3297
|
/** Represents Dropbox properties. */
|
3302
3298
|
export type DropboxFeedPropertiesInput = {
|
@@ -3306,8 +3302,6 @@ export type DropboxFeedPropertiesInput = {
|
|
3306
3302
|
appSecret?: InputMaybe<Scalars['String']['input']>;
|
3307
3303
|
/** Dropbox authentication type. */
|
3308
3304
|
authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
|
3309
|
-
/** The OAuth authentication connector identifier, if using connector authentication. */
|
3310
|
-
connectorId?: InputMaybe<Scalars['ID']['input']>;
|
3311
3305
|
/** Dropbox folder path. */
|
3312
3306
|
path?: InputMaybe<Scalars['ID']['input']>;
|
3313
3307
|
/** Dropbox redirect URI. */
|
@@ -3323,8 +3317,6 @@ export type DropboxFeedPropertiesUpdateInput = {
|
|
3323
3317
|
appSecret?: InputMaybe<Scalars['String']['input']>;
|
3324
3318
|
/** Dropbox authentication type. */
|
3325
3319
|
authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
|
3326
|
-
/** The OAuth authentication connector identifier, if using connector authentication. */
|
3327
|
-
connectorId?: InputMaybe<Scalars['ID']['input']>;
|
3328
3320
|
/** Dropbox folder path. */
|
3329
3321
|
path?: InputMaybe<Scalars['ID']['input']>;
|
3330
3322
|
/** Dropbox redirect URI. */
|
@@ -4653,18 +4645,22 @@ export type GeometryMetadataInput = {
|
|
4653
4645
|
/** The geometry vertex count. */
|
4654
4646
|
vertexCount?: InputMaybe<Scalars['Long']['input']>;
|
4655
4647
|
};
|
4648
|
+
/** GitHub authentication type */
|
4656
4649
|
export declare enum GitHubAuthenticationTypes {
|
4650
|
+
/** Connector */
|
4657
4651
|
Connector = "CONNECTOR",
|
4652
|
+
/** OAuth */
|
4658
4653
|
OAuth = "O_AUTH",
|
4654
|
+
/** Personal Access Token */
|
4659
4655
|
PersonalAccessToken = "PERSONAL_ACCESS_TOKEN"
|
4660
4656
|
}
|
4661
4657
|
/** Represents GitHub properties. */
|
4662
4658
|
export type GitHubFeedProperties = {
|
4663
4659
|
__typename?: 'GitHubFeedProperties';
|
4664
4660
|
/** OneDrive authentication type, defaults to User. */
|
4665
|
-
authenticationType?: Maybe<
|
4661
|
+
authenticationType?: Maybe<GitHubAuthenticationTypes>;
|
4666
4662
|
/** Connector identifier. */
|
4667
|
-
|
4663
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
4668
4664
|
/** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
|
4669
4665
|
personalAccessToken?: Maybe<Scalars['String']['output']>;
|
4670
4666
|
/** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
|
@@ -4680,8 +4676,8 @@ export type GitHubFeedProperties = {
|
|
4680
4676
|
export type GitHubFeedPropertiesInput = {
|
4681
4677
|
/** GitHub authentication type, defaults to PersonalAccessToken. */
|
4682
4678
|
authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
|
4683
|
-
/**
|
4684
|
-
|
4679
|
+
/** Authentication identifier, for Connector authentication type. */
|
4680
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4685
4681
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
4686
4682
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
4687
4683
|
/** GitHub refresh token, requires OAuth authentication type. */
|
@@ -4697,8 +4693,8 @@ export type GitHubFeedPropertiesInput = {
|
|
4697
4693
|
export type GitHubFeedPropertiesUpdateInput = {
|
4698
4694
|
/** GitHub authentication type, defaults to PersonalAccessToken. */
|
4699
4695
|
authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
|
4700
|
-
/**
|
4701
|
-
|
4696
|
+
/** Authentication identifier, for Connector authentication type. */
|
4697
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4702
4698
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
4703
4699
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
4704
4700
|
/** GitHub refresh token, requires OAuth authentication type. */
|
@@ -4718,6 +4714,10 @@ export declare enum GitHubIssueAuthenticationTypes {
|
|
4718
4714
|
/** Represents GitHub Issues feed properties. */
|
4719
4715
|
export type GitHubIssuesFeedProperties = {
|
4720
4716
|
__typename?: 'GitHubIssuesFeedProperties';
|
4717
|
+
/** GitHub Issues authentication type, defaults to PersonalAccessToken. */
|
4718
|
+
authenticationType?: Maybe<GitHubIssueAuthenticationTypes>;
|
4719
|
+
/** Authentication identifier, for Connector authentication type. */
|
4720
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
4721
4721
|
/** GitHub personal access token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
|
4722
4722
|
personalAccessToken?: Maybe<Scalars['String']['output']>;
|
4723
4723
|
/** GitHub refresh token. Either refresh token or personal access token is required to avoid GitHub rate-limiting. */
|
@@ -4733,8 +4733,8 @@ export type GitHubIssuesFeedProperties = {
|
|
4733
4733
|
export type GitHubIssuesFeedPropertiesInput = {
|
4734
4734
|
/** GitHub Issues authentication type, defaults to PersonalAccessToken. */
|
4735
4735
|
authenticationType?: InputMaybe<GitHubIssueAuthenticationTypes>;
|
4736
|
-
/**
|
4737
|
-
|
4736
|
+
/** Authentication identifier, for Connector authentication type. */
|
4737
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4738
4738
|
/** GitHub personal access token, requires PersonalAccessToken authentication type. */
|
4739
4739
|
personalAccessToken?: InputMaybe<Scalars['String']['input']>;
|
4740
4740
|
/** GitHub refresh token, requires OAuth authentication type. */
|
@@ -4785,18 +4785,18 @@ export type GoogleCalendarFeedProperties = {
|
|
4785
4785
|
afterDate?: Maybe<Scalars['DateTime']['output']>;
|
4786
4786
|
/** Google Calendar authentication type. */
|
4787
4787
|
authenticationType?: Maybe<GoogleCalendarAuthenticationTypes>;
|
4788
|
+
/** Connector identifier. */
|
4789
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
4788
4790
|
/** Read calendar events before this date (inclusive), optional. */
|
4789
4791
|
beforeDate?: Maybe<Scalars['DateTime']['output']>;
|
4790
4792
|
/** Google Email calendar identifier, optional. */
|
4791
4793
|
calendarId?: Maybe<Scalars['String']['output']>;
|
4792
4794
|
/** Google OAuth2 client identifier. */
|
4793
|
-
clientId
|
4795
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
4794
4796
|
/** Google OAuth2 client secret. */
|
4795
|
-
clientSecret
|
4796
|
-
/** Connector identifier. */
|
4797
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
4797
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
4798
4798
|
/** Google OAuth2 refresh token. */
|
4799
|
-
refreshToken
|
4799
|
+
refreshToken?: Maybe<Scalars['String']['output']>;
|
4800
4800
|
};
|
4801
4801
|
/** Represents Google Calendar properties. */
|
4802
4802
|
export type GoogleCalendarFeedPropertiesInput = {
|
@@ -4804,6 +4804,8 @@ export type GoogleCalendarFeedPropertiesInput = {
|
|
4804
4804
|
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
4805
4805
|
/** Google Calendar authentication type, defaults to User. */
|
4806
4806
|
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
4807
|
+
/** Authentication identifier, for Connector authentication type. */
|
4808
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4807
4809
|
/** Read calendar events before this date (inclusive), optional. */
|
4808
4810
|
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
4809
4811
|
/** Google Email calendar identifier, optional. */
|
@@ -4812,8 +4814,6 @@ export type GoogleCalendarFeedPropertiesInput = {
|
|
4812
4814
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4813
4815
|
/** Google OAuth2 client secret, requires User authentication type. */
|
4814
4816
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4815
|
-
/** Connector identifier, for Connector authentication type. */
|
4816
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4817
4817
|
/** Google OAuth2 refresh token, requires User authentication type. */
|
4818
4818
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4819
4819
|
};
|
@@ -4821,12 +4821,12 @@ export type GoogleCalendarFeedPropertiesInput = {
|
|
4821
4821
|
export type GoogleCalendarFeedPropertiesUpdateInput = {
|
4822
4822
|
/** Google Calendar authentication type, defaults to User. */
|
4823
4823
|
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
4824
|
+
/** Authentication identifier, for Connector authentication type. */
|
4825
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4824
4826
|
/** Google OAuth2 client identifier, requires User authentication type. */
|
4825
4827
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4826
4828
|
/** Google OAuth2 client secret, requires User authentication type. */
|
4827
4829
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4828
|
-
/** Connector identifier, for Connector authentication type. */
|
4829
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4830
4830
|
/** Google OAuth2 refresh token, requires User authentication type. */
|
4831
4831
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
4832
4832
|
};
|
@@ -4834,18 +4834,22 @@ export type GoogleCalendarFeedPropertiesUpdateInput = {
|
|
4834
4834
|
export type GoogleCalendarsInput = {
|
4835
4835
|
/** Google Calendar authentication type, defaults to User. */
|
4836
4836
|
authenticationType?: InputMaybe<GoogleCalendarAuthenticationTypes>;
|
4837
|
+
/** Authorization identifier, for Connector authentication type. */
|
4838
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4837
4839
|
/** Google OAuth2 client identifier. */
|
4838
4840
|
clientId: Scalars['String']['input'];
|
4839
4841
|
/** Google OAuth2 client secret. */
|
4840
4842
|
clientSecret: Scalars['String']['input'];
|
4841
|
-
/** Connector identifier, for Connector authentication type. */
|
4842
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4843
4843
|
/** Google OAuth2 refresh token. */
|
4844
4844
|
refreshToken: Scalars['String']['input'];
|
4845
4845
|
};
|
4846
|
+
/** Google Drive authentication type */
|
4846
4847
|
export declare enum GoogleDriveAuthenticationTypes {
|
4848
|
+
/** Connector */
|
4847
4849
|
Connector = "CONNECTOR",
|
4850
|
+
/** Service Account */
|
4848
4851
|
ServiceAccount = "SERVICE_ACCOUNT",
|
4852
|
+
/** User */
|
4849
4853
|
User = "USER"
|
4850
4854
|
}
|
4851
4855
|
/** Represents Google Drive properties. */
|
@@ -4853,12 +4857,12 @@ export type GoogleDriveFeedProperties = {
|
|
4853
4857
|
__typename?: 'GoogleDriveFeedProperties';
|
4854
4858
|
/** Google Drive authentication type, defaults to User. */
|
4855
4859
|
authenticationType?: Maybe<GoogleDriveAuthenticationTypes>;
|
4860
|
+
/** Connector identifier. */
|
4861
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
4856
4862
|
/** Google client identifier, requires User authentication type. */
|
4857
4863
|
clientId?: Maybe<Scalars['String']['output']>;
|
4858
4864
|
/** Google client secret, requires User authentication type. */
|
4859
4865
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
4860
|
-
/** Connector identifier. */
|
4861
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
4862
4866
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
4863
4867
|
files?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
4864
4868
|
/** Google Drive folder identifier. */
|
@@ -4872,12 +4876,12 @@ export type GoogleDriveFeedProperties = {
|
|
4872
4876
|
export type GoogleDriveFeedPropertiesInput = {
|
4873
4877
|
/** Google Drive authentication type, defaults to User. */
|
4874
4878
|
authenticationType?: InputMaybe<GoogleDriveAuthenticationTypes>;
|
4879
|
+
/** Authentication identifier, for Connector authentication type. */
|
4880
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4875
4881
|
/** Google client identifier, requires User authentication type. */
|
4876
4882
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4877
4883
|
/** Google client secret, requires User authentication type. */
|
4878
4884
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4879
|
-
/** Connector identifier, for Connector authentication type. */
|
4880
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4881
4885
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
4882
4886
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
4883
4887
|
/** Google Drive folder identifier. */
|
@@ -4891,12 +4895,12 @@ export type GoogleDriveFeedPropertiesInput = {
|
|
4891
4895
|
export type GoogleDriveFeedPropertiesUpdateInput = {
|
4892
4896
|
/** Google Drive authentication type, defaults to User. */
|
4893
4897
|
authenticationType?: InputMaybe<GoogleDriveAuthenticationTypes>;
|
4898
|
+
/** Authentication identifier, for Connector authentication type. */
|
4899
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4894
4900
|
/** Google client identifier, requires User authentication type. */
|
4895
4901
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4896
4902
|
/** Google client secret, requires User authentication type. */
|
4897
4903
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4898
|
-
/** Connector identifier, for Connector authentication type. */
|
4899
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4900
4904
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
4901
4905
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
4902
4906
|
/** Google Drive folder identifier. */
|
@@ -4924,12 +4928,12 @@ export type GoogleDriveFolderResults = {
|
|
4924
4928
|
export type GoogleDriveFoldersInput = {
|
4925
4929
|
/** Google Drive authentication type, defaults to User. */
|
4926
4930
|
authenticationType?: InputMaybe<GoogleDriveAuthenticationTypes>;
|
4931
|
+
/** Authentication identifier, for Connector authentication type. */
|
4932
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4927
4933
|
/** Google OAuth2 client identifier. */
|
4928
4934
|
clientId: Scalars['String']['input'];
|
4929
4935
|
/** Google OAuth2 client secret. */
|
4930
4936
|
clientSecret: Scalars['String']['input'];
|
4931
|
-
/** Connector identifier, for Connector authentication type. */
|
4932
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4933
4937
|
/** Google OAuth2 refresh token. */
|
4934
4938
|
refreshToken: Scalars['String']['input'];
|
4935
4939
|
};
|
@@ -4942,12 +4946,12 @@ export type GoogleEmailFeedProperties = {
|
|
4942
4946
|
__typename?: 'GoogleEmailFeedProperties';
|
4943
4947
|
/** Google Email authentication type. */
|
4944
4948
|
authenticationType?: Maybe<GoogleEmailAuthenticationTypes>;
|
4949
|
+
/** Connector identifier. */
|
4950
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
4945
4951
|
/** Google Email client identifier. */
|
4946
|
-
clientId
|
4952
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
4947
4953
|
/** Google Email client secret. */
|
4948
|
-
clientSecret
|
4949
|
-
/** Connector identifier. */
|
4950
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
4954
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
4951
4955
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
4952
4956
|
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
4953
4957
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -4965,12 +4969,12 @@ export type GoogleEmailFeedProperties = {
|
|
4965
4969
|
export type GoogleEmailFeedPropertiesInput = {
|
4966
4970
|
/** Google Email authentication type, defaults to User. */
|
4967
4971
|
authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
|
4972
|
+
/** Authentication identifier, for Connector authentication type. */
|
4973
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4968
4974
|
/** Google client identifier, requires User authentication type. */
|
4969
4975
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4970
4976
|
/** Google client secret, requires User authentication type. */
|
4971
4977
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4972
|
-
/** Connector identifier, for Connector authentication type. */
|
4973
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4974
4978
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
4975
4979
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
4976
4980
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -4988,12 +4992,12 @@ export type GoogleEmailFeedPropertiesInput = {
|
|
4988
4992
|
export type GoogleEmailFeedPropertiesUpdateInput = {
|
4989
4993
|
/** Google Email authentication type, defaults to User. */
|
4990
4994
|
authenticationType?: InputMaybe<GoogleEmailAuthenticationTypes>;
|
4995
|
+
/** Authentication identifier, for Connector authentication type. */
|
4996
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
4991
4997
|
/** Google client identifier, requires User authentication type. */
|
4992
4998
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
4993
4999
|
/** Google client secret, requires User authentication type. */
|
4994
5000
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
4995
|
-
/** Connector identifier, for Connector authentication type. */
|
4996
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
4997
5001
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
4998
5002
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
4999
5003
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -7980,18 +7984,18 @@ export type MicrosoftCalendarFeedProperties = {
|
|
7980
7984
|
afterDate?: Maybe<Scalars['DateTime']['output']>;
|
7981
7985
|
/** Microsoft Calendar authentication type. */
|
7982
7986
|
authenticationType?: Maybe<MicrosoftCalendarAuthenticationTypes>;
|
7987
|
+
/** Connector identifier. */
|
7988
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
7983
7989
|
/** Read calendar events before this date (inclusive), optional. */
|
7984
7990
|
beforeDate?: Maybe<Scalars['DateTime']['output']>;
|
7985
7991
|
/** Microsoft Email calendar identifier, optional. */
|
7986
7992
|
calendarId?: Maybe<Scalars['String']['output']>;
|
7987
7993
|
/** Microsoft Entra ID client identifier. */
|
7988
|
-
clientId
|
7994
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
7989
7995
|
/** Microsoft Entra ID client secret. */
|
7990
|
-
clientSecret
|
7991
|
-
/** Connector identifier. */
|
7992
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
7996
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
7993
7997
|
/** Microsoft Entra ID refresh token. */
|
7994
|
-
refreshToken
|
7998
|
+
refreshToken?: Maybe<Scalars['String']['output']>;
|
7995
7999
|
};
|
7996
8000
|
/** Represents Microsoft Calendar properties. */
|
7997
8001
|
export type MicrosoftCalendarFeedPropertiesInput = {
|
@@ -7999,6 +8003,8 @@ export type MicrosoftCalendarFeedPropertiesInput = {
|
|
7999
8003
|
afterDate?: InputMaybe<Scalars['DateTime']['input']>;
|
8000
8004
|
/** Microsoft Calendar authentication type, defaults to User. */
|
8001
8005
|
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
8006
|
+
/** Authentication identifier, for Connector authentication type. */
|
8007
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8002
8008
|
/** Read calendar events before this date (inclusive), optional. */
|
8003
8009
|
beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
|
8004
8010
|
/** Microsoft Email calendar identifier, optional. */
|
@@ -8007,8 +8013,6 @@ export type MicrosoftCalendarFeedPropertiesInput = {
|
|
8007
8013
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8008
8014
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
8009
8015
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8010
|
-
/** Connector identifier, for Connector authentication type. */
|
8011
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8012
8016
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
8013
8017
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
8014
8018
|
};
|
@@ -8016,12 +8020,12 @@ export type MicrosoftCalendarFeedPropertiesInput = {
|
|
8016
8020
|
export type MicrosoftCalendarFeedPropertiesUpdateInput = {
|
8017
8021
|
/** Microsoft Calendar authentication type, defaults to User. */
|
8018
8022
|
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
8023
|
+
/** Authentication identifier, for Connector authentication type. */
|
8024
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8019
8025
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
8020
8026
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8021
8027
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
8022
8028
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8023
|
-
/** Connector identifier, for Connector authentication type. */
|
8024
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8025
8029
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
8026
8030
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
8027
8031
|
};
|
@@ -8029,12 +8033,12 @@ export type MicrosoftCalendarFeedPropertiesUpdateInput = {
|
|
8029
8033
|
export type MicrosoftCalendarsInput = {
|
8030
8034
|
/** Microsoft Calendar authentication type, defaults to User. */
|
8031
8035
|
authenticationType?: InputMaybe<MicrosoftCalendarAuthenticationTypes>;
|
8036
|
+
/** Authorization identifier, for Connector authentication type. */
|
8037
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8032
8038
|
/** Microsoft Entra ID client identifier. */
|
8033
8039
|
clientId: Scalars['String']['input'];
|
8034
8040
|
/** Microsoft Entra ID client secret. */
|
8035
8041
|
clientSecret: Scalars['String']['input'];
|
8036
|
-
/** Connector identifier, for Connector authentication type. */
|
8037
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8038
8042
|
/** Microsoft Entra ID refresh token. */
|
8039
8043
|
refreshToken: Scalars['String']['input'];
|
8040
8044
|
};
|
@@ -8047,12 +8051,12 @@ export type MicrosoftEmailFeedProperties = {
|
|
8047
8051
|
__typename?: 'MicrosoftEmailFeedProperties';
|
8048
8052
|
/** Microsoft Email authentication type. */
|
8049
8053
|
authenticationType?: Maybe<MicrosoftEmailAuthenticationTypes>;
|
8054
|
+
/** Connector identifier. */
|
8055
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
8050
8056
|
/** Microsoft Email client identifier. */
|
8051
|
-
clientId
|
8057
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
8052
8058
|
/** Microsoft Email client secret. */
|
8053
|
-
clientSecret
|
8054
|
-
/** Connector identifier. */
|
8055
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
8059
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
8056
8060
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
8057
8061
|
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
8058
8062
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -8062,7 +8066,7 @@ export type MicrosoftEmailFeedProperties = {
|
|
8062
8066
|
/** Whether to include Spam messages in email listing. Default is False. */
|
8063
8067
|
includeSpam?: Maybe<Scalars['Boolean']['output']>;
|
8064
8068
|
/** Microsoft Email refresh token. */
|
8065
|
-
refreshToken
|
8069
|
+
refreshToken?: Maybe<Scalars['String']['output']>;
|
8066
8070
|
/** Email listing type, i.e. past or new emails. */
|
8067
8071
|
type?: Maybe<EmailListingTypes>;
|
8068
8072
|
};
|
@@ -8070,12 +8074,12 @@ export type MicrosoftEmailFeedProperties = {
|
|
8070
8074
|
export type MicrosoftEmailFeedPropertiesInput = {
|
8071
8075
|
/** Microsoft Email authentication type, defaults to User. */
|
8072
8076
|
authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
|
8077
|
+
/** Authentication identifier, for Connector authentication type. */
|
8078
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8073
8079
|
/** Microsoft Email client identifier, requires User authentication type. */
|
8074
8080
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8075
8081
|
/** Microsoft Email client secret, requires User authentication type. */
|
8076
8082
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8077
|
-
/** Connector identifier, for Connector authentication type. */
|
8078
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8079
8083
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
8080
8084
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
8081
8085
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -8093,12 +8097,12 @@ export type MicrosoftEmailFeedPropertiesInput = {
|
|
8093
8097
|
export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
8094
8098
|
/** Microsoft Email authentication type, defaults to User. */
|
8095
8099
|
authenticationType?: InputMaybe<MicrosoftEmailAuthenticationTypes>;
|
8100
|
+
/** Authentication identifier, for Connector authentication type. */
|
8101
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8096
8102
|
/** Microsoft Email client identifier, requires User authentication type. */
|
8097
8103
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8098
8104
|
/** Microsoft Email client secret, requires User authentication type. */
|
8099
8105
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8100
|
-
/** Connector identifier, for Connector authentication type. */
|
8101
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8102
8106
|
/** Whether to exclude Sent messages in email listing. Default is False. */
|
8103
8107
|
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
8104
8108
|
/** Whether to only read past emails from Inbox. Default is False. */
|
@@ -8134,12 +8138,12 @@ export type MicrosoftTeamsChannelResults = {
|
|
8134
8138
|
export type MicrosoftTeamsChannelsInput = {
|
8135
8139
|
/** Microsoft Teams authentication type, defaults to User. */
|
8136
8140
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
8141
|
+
/** Authentication identifier, for Connector authentication type. */
|
8142
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8137
8143
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
8138
8144
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8139
8145
|
/** Microsoft Teams client secret, requires User authentication type. */
|
8140
8146
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8141
|
-
/** Connector identifier, for Connector authentication type. */
|
8142
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8143
8147
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
8144
8148
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
8145
8149
|
};
|
@@ -8148,14 +8152,14 @@ export type MicrosoftTeamsFeedProperties = {
|
|
8148
8152
|
__typename?: 'MicrosoftTeamsFeedProperties';
|
8149
8153
|
/** Microsoft Teams authentication type. */
|
8150
8154
|
authenticationType?: Maybe<MicrosoftTeamsAuthenticationTypes>;
|
8155
|
+
/** Microsoft Teams authentication identifier. */
|
8156
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
8151
8157
|
/** Microsoft Teams channel identifier. */
|
8152
8158
|
channelId: Scalars['String']['output'];
|
8153
8159
|
/** Microsoft Teams client identifier. */
|
8154
8160
|
clientId?: Maybe<Scalars['String']['output']>;
|
8155
8161
|
/** Microsoft Teams client secret. */
|
8156
8162
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
8157
|
-
/** Microsoft Teams connector identifier. */
|
8158
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
8159
8163
|
/** The limit of items to be read from feed, defaults to 100. */
|
8160
8164
|
readLimit?: Maybe<Scalars['Int']['output']>;
|
8161
8165
|
/** Microsoft Teams refresh token. */
|
@@ -8169,14 +8173,14 @@ export type MicrosoftTeamsFeedProperties = {
|
|
8169
8173
|
export type MicrosoftTeamsFeedPropertiesInput = {
|
8170
8174
|
/** Microsoft Teams authentication type, defaults to User. */
|
8171
8175
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
8176
|
+
/** Authentication identifier, for Connector authentication type. */
|
8177
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8172
8178
|
/** Microsoft Teams channel identifier. */
|
8173
8179
|
channelId: Scalars['String']['input'];
|
8174
8180
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
8175
8181
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8176
8182
|
/** Microsoft Teams client secret, requires User authentication type. */
|
8177
8183
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8178
|
-
/** Connector identifier, for Connector authentication type. */
|
8179
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8180
8184
|
/** The limit of items to be read from feed, defaults to 100. */
|
8181
8185
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
8182
8186
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
@@ -8190,14 +8194,14 @@ export type MicrosoftTeamsFeedPropertiesInput = {
|
|
8190
8194
|
export type MicrosoftTeamsFeedPropertiesUpdateInput = {
|
8191
8195
|
/** Microsoft Teams authentication type, defaults to User. */
|
8192
8196
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
8197
|
+
/** Authentication identifier, for Connector authentication type. */
|
8198
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8193
8199
|
/** Microsoft Teams channel identifier. */
|
8194
8200
|
channelId: Scalars['String']['input'];
|
8195
8201
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
8196
8202
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8197
8203
|
/** Microsoft Teams client secret, requires User authentication type. */
|
8198
8204
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8199
|
-
/** Connector identifier, for Connector authentication type. */
|
8200
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8201
8205
|
/** The limit of items to be read from feed, defaults to 100. */
|
8202
8206
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
8203
8207
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
@@ -8225,12 +8229,12 @@ export type MicrosoftTeamsTeamResults = {
|
|
8225
8229
|
export type MicrosoftTeamsTeamsInput = {
|
8226
8230
|
/** Microsoft Teams authentication type, defaults to User. */
|
8227
8231
|
authenticationType?: InputMaybe<MicrosoftTeamsAuthenticationTypes>;
|
8232
|
+
/** Authentication identifier, for Connector authentication type. */
|
8233
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
8228
8234
|
/** Microsoft Teams client identifier, requires User authentication type. */
|
8229
8235
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
8230
8236
|
/** Microsoft Teams client secret, requires User authentication type. */
|
8231
8237
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
8232
|
-
/** Connector identifier, for Connector authentication type. */
|
8233
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
8234
8238
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
8235
8239
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
8236
8240
|
};
|
@@ -10142,8 +10146,11 @@ export declare enum OccurrenceTypes {
|
|
10142
10146
|
Text = "TEXT",
|
10143
10147
|
Time = "TIME"
|
10144
10148
|
}
|
10149
|
+
/** OneDrive authentication type */
|
10145
10150
|
export declare enum OneDriveAuthenticationTypes {
|
10151
|
+
/** Connector */
|
10146
10152
|
Connector = "CONNECTOR",
|
10153
|
+
/** User */
|
10147
10154
|
User = "USER"
|
10148
10155
|
}
|
10149
10156
|
/** Represents OneDrive properties. */
|
@@ -10151,29 +10158,29 @@ export type OneDriveFeedProperties = {
|
|
10151
10158
|
__typename?: 'OneDriveFeedProperties';
|
10152
10159
|
/** OneDrive authentication type, defaults to User. */
|
10153
10160
|
authenticationType?: Maybe<OneDriveAuthenticationTypes>;
|
10161
|
+
/** Connector identifier. */
|
10162
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
10154
10163
|
/** OneDrive client identifier. */
|
10155
|
-
clientId
|
10164
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
10156
10165
|
/** OneDrive client secret. */
|
10157
|
-
clientSecret
|
10158
|
-
/** Connector identifier. */
|
10159
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
10166
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
10160
10167
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
10161
10168
|
files?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
10162
10169
|
/** OneDrive folder identifier. */
|
10163
10170
|
folderId?: Maybe<Scalars['ID']['output']>;
|
10164
10171
|
/** OneDrive refresh token. */
|
10165
|
-
refreshToken
|
10172
|
+
refreshToken?: Maybe<Scalars['String']['output']>;
|
10166
10173
|
};
|
10167
10174
|
/** Represents OneDrive properties. */
|
10168
10175
|
export type OneDriveFeedPropertiesInput = {
|
10169
10176
|
/** OneDrive authentication type, defaults to User. */
|
10170
10177
|
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
10178
|
+
/** Authentication identifier, for Connector authentication type. */
|
10179
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
10171
10180
|
/** OneDrive client identifier, requires User authentication type. */
|
10172
10181
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
10173
10182
|
/** OneDrive client secret, requires User authentication type. */
|
10174
10183
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
10175
|
-
/** Connector identifier, for Connector authentication type. */
|
10176
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
10177
10184
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
10178
10185
|
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
10179
10186
|
/** OneDrive folder identifier. */
|
@@ -10185,12 +10192,12 @@ export type OneDriveFeedPropertiesInput = {
|
|
10185
10192
|
export type OneDriveFeedPropertiesUpdateInput = {
|
10186
10193
|
/** OneDrive authentication type, defaults to User. */
|
10187
10194
|
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
10195
|
+
/** Authentication identifier, for Connector authentication type. */
|
10196
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
10188
10197
|
/** OneDrive client identifier, requires User authentication type. */
|
10189
10198
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
10190
10199
|
/** OneDrive client secret, requires User authentication type. */
|
10191
10200
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
10192
|
-
/** Connector identifier, for Connector authentication type. */
|
10193
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
10194
10201
|
/** OneDrive file identifiers. Takes precedence over folder identifier. */
|
10195
10202
|
files?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
10196
10203
|
/** OneDrive folder identifier. */
|
@@ -10216,12 +10223,12 @@ export type OneDriveFolderResults = {
|
|
10216
10223
|
export type OneDriveFoldersInput = {
|
10217
10224
|
/** OneDrive authentication type, defaults to User. */
|
10218
10225
|
authenticationType?: InputMaybe<OneDriveAuthenticationTypes>;
|
10226
|
+
/** Authentication identifier, for Connector authentication type. */
|
10227
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
10219
10228
|
/** Microsoft Entra ID client identifier. */
|
10220
10229
|
clientId: Scalars['String']['input'];
|
10221
10230
|
/** Microsoft Entra ID client secret. */
|
10222
10231
|
clientSecret: Scalars['String']['input'];
|
10223
|
-
/** Connector identifier, for Connector authentication type. */
|
10224
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
10225
10232
|
/** Microsoft Entra ID refresh token. */
|
10226
10233
|
refreshToken: Scalars['String']['input'];
|
10227
10234
|
};
|
@@ -10455,9 +10462,15 @@ export declare enum OpenAiModels {
|
|
10455
10462
|
O1_200K = "O1_200K",
|
10456
10463
|
/** o1 200k (2024-12-17 version) */
|
10457
10464
|
O1_200K_20241217 = "O1_200K_20241217",
|
10458
|
-
/**
|
10465
|
+
/**
|
10466
|
+
* o1 Mini 128k (Latest)
|
10467
|
+
* @deprecated OpenAI has deprecated this model. Use the o4 Mini model instead.
|
10468
|
+
*/
|
10459
10469
|
O1Mini_128K = "O1_MINI_128K",
|
10460
|
-
/**
|
10470
|
+
/**
|
10471
|
+
* o1 Mini 128k (2024-09-12 version)
|
10472
|
+
* @deprecated OpenAI has deprecated this model. Use the o4 Mini model instead.
|
10473
|
+
*/
|
10461
10474
|
O1Mini_128K_20240912 = "O1_MINI_128K_20240912",
|
10462
10475
|
/** o1 Preview 128k (Latest) */
|
10463
10476
|
O1Preview_128K = "O1_PREVIEW_128K",
|
@@ -13324,9 +13337,13 @@ export type ShapeMetadataInput = {
|
|
13324
13337
|
/** The metadata modified date. */
|
13325
13338
|
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
13326
13339
|
};
|
13340
|
+
/** SharePoint authentication type */
|
13327
13341
|
export declare enum SharePointAuthenticationTypes {
|
13342
|
+
/** Application */
|
13328
13343
|
Application = "APPLICATION",
|
13344
|
+
/** Connector */
|
13329
13345
|
Connector = "CONNECTOR",
|
13346
|
+
/** User */
|
13330
13347
|
User = "USER"
|
13331
13348
|
}
|
13332
13349
|
/** Represents SharePoint properties. */
|
@@ -13336,12 +13353,12 @@ export type SharePointFeedProperties = {
|
|
13336
13353
|
accountName: Scalars['String']['output'];
|
13337
13354
|
/** SharePoint authentication type. */
|
13338
13355
|
authenticationType?: Maybe<SharePointAuthenticationTypes>;
|
13356
|
+
/** Connector identifier. */
|
13357
|
+
authorizationId?: Maybe<Scalars['String']['output']>;
|
13339
13358
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
13340
13359
|
clientId?: Maybe<Scalars['String']['output']>;
|
13341
13360
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
13342
13361
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
13343
|
-
/** Connector identifier. */
|
13344
|
-
connectorId?: Maybe<Scalars['String']['output']>;
|
13345
13362
|
/** SharePoint folder identifier. */
|
13346
13363
|
folderId?: Maybe<Scalars['ID']['output']>;
|
13347
13364
|
/** SharePoint library identifier. */
|
@@ -13357,12 +13374,12 @@ export type SharePointFeedPropertiesInput = {
|
|
13357
13374
|
accountName: Scalars['String']['input'];
|
13358
13375
|
/** SharePoint authentication type. */
|
13359
13376
|
authenticationType: SharePointAuthenticationTypes;
|
13377
|
+
/** Authentication identifier, for Connector authentication type. */
|
13378
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
13360
13379
|
/** Microsoft Entra ID client identifier, requires user authentication type. */
|
13361
13380
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
13362
13381
|
/** Microsoft Entra ID client secret, requires user authentication type. */
|
13363
13382
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
13364
|
-
/** Connector identifier, for Connector authentication type. */
|
13365
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
13366
13383
|
/** SharePoint folder identifier. */
|
13367
13384
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
13368
13385
|
/** SharePoint library identifier. */
|
@@ -13378,8 +13395,8 @@ export type SharePointFeedPropertiesUpdateInput = {
|
|
13378
13395
|
accountName?: InputMaybe<Scalars['String']['input']>;
|
13379
13396
|
/** SharePoint authentication type. */
|
13380
13397
|
authenticationType?: InputMaybe<SharePointAuthenticationTypes>;
|
13381
|
-
/**
|
13382
|
-
|
13398
|
+
/** Authentication identifier, for Connector authentication type. */
|
13399
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
13383
13400
|
/** SharePoint folder identifier. */
|
13384
13401
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
13385
13402
|
/** SharePoint library identifier. */
|
@@ -13409,12 +13426,12 @@ export type SharePointFolderResults = {
|
|
13409
13426
|
export type SharePointFoldersInput = {
|
13410
13427
|
/** SharePoint authentication type. */
|
13411
13428
|
authenticationType: SharePointAuthenticationTypes;
|
13429
|
+
/** Authentication identifier, for Connector authentication type. */
|
13430
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
13412
13431
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
13413
13432
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
13414
13433
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
13415
13434
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
13416
|
-
/** Connector identifier, for Connector authentication type. */
|
13417
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
13418
13435
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
13419
13436
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
13420
13437
|
/** Microsoft Entra ID tenant identifier, requires Application authentication type. */
|
@@ -13424,12 +13441,12 @@ export type SharePointFoldersInput = {
|
|
13424
13441
|
export type SharePointLibrariesInput = {
|
13425
13442
|
/** SharePoint authentication type. */
|
13426
13443
|
authenticationType: SharePointAuthenticationTypes;
|
13444
|
+
/** Authentication identifier, for Connector authentication type. */
|
13445
|
+
authorizationId?: InputMaybe<Scalars['String']['input']>;
|
13427
13446
|
/** Microsoft Entra ID client identifier, requires User authentication type. */
|
13428
13447
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
13429
13448
|
/** Microsoft Entra ID client secret, requires User authentication type. */
|
13430
13449
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
13431
|
-
/** Connector identifier, for Connector authentication type. */
|
13432
|
-
connectorId?: InputMaybe<Scalars['String']['input']>;
|
13433
13450
|
/** Microsoft Entra ID refresh token, requires User authentication type. */
|
13434
13451
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
13435
13452
|
/** Microsoft Entra ID tenant identifier, requires Application authentication type. */
|
@@ -22509,17 +22526,17 @@ export type GetFeedQuery = {
|
|
22509
22526
|
clientId?: string | null;
|
22510
22527
|
clientSecret?: string | null;
|
22511
22528
|
refreshToken?: string | null;
|
22512
|
-
|
22529
|
+
authorizationId?: string | null;
|
22513
22530
|
} | null;
|
22514
22531
|
oneDrive?: {
|
22515
22532
|
__typename?: 'OneDriveFeedProperties';
|
22516
22533
|
authenticationType?: OneDriveAuthenticationTypes | null;
|
22517
22534
|
folderId?: string | null;
|
22518
22535
|
files?: Array<string | null> | null;
|
22519
|
-
clientId
|
22520
|
-
clientSecret
|
22521
|
-
refreshToken
|
22522
|
-
|
22536
|
+
clientId?: string | null;
|
22537
|
+
clientSecret?: string | null;
|
22538
|
+
refreshToken?: string | null;
|
22539
|
+
authorizationId?: string | null;
|
22523
22540
|
} | null;
|
22524
22541
|
googleDrive?: {
|
22525
22542
|
__typename?: 'GoogleDriveFeedProperties';
|
@@ -22530,37 +22547,35 @@ export type GetFeedQuery = {
|
|
22530
22547
|
clientId?: string | null;
|
22531
22548
|
clientSecret?: string | null;
|
22532
22549
|
serviceAccountJson?: string | null;
|
22533
|
-
|
22550
|
+
authorizationId?: string | null;
|
22534
22551
|
} | null;
|
22535
22552
|
dropbox?: {
|
22536
22553
|
__typename?: 'DropboxFeedProperties';
|
22537
22554
|
authenticationType?: DropboxAuthenticationTypes | null;
|
22538
22555
|
path?: string | null;
|
22539
|
-
|
22540
|
-
|
22541
|
-
|
22542
|
-
|
22543
|
-
redirectUri: string;
|
22556
|
+
appKey?: string | null;
|
22557
|
+
appSecret?: string | null;
|
22558
|
+
refreshToken?: string | null;
|
22559
|
+
redirectUri?: string | null;
|
22544
22560
|
} | null;
|
22545
22561
|
box?: {
|
22546
22562
|
__typename?: 'BoxFeedProperties';
|
22547
22563
|
authenticationType?: BoxAuthenticationTypes | null;
|
22548
22564
|
folderId?: string | null;
|
22549
|
-
|
22550
|
-
|
22551
|
-
|
22552
|
-
|
22553
|
-
redirectUri: string;
|
22565
|
+
clientId?: string | null;
|
22566
|
+
clientSecret?: string | null;
|
22567
|
+
refreshToken?: string | null;
|
22568
|
+
redirectUri?: string | null;
|
22554
22569
|
} | null;
|
22555
22570
|
github?: {
|
22556
22571
|
__typename?: 'GitHubFeedProperties';
|
22557
|
-
authenticationType?:
|
22572
|
+
authenticationType?: GitHubAuthenticationTypes | null;
|
22558
22573
|
uri?: any | null;
|
22559
22574
|
repositoryOwner: string;
|
22560
22575
|
repositoryName: string;
|
22561
22576
|
refreshToken?: string | null;
|
22562
22577
|
personalAccessToken?: string | null;
|
22563
|
-
|
22578
|
+
authorizationId?: string | null;
|
22564
22579
|
} | null;
|
22565
22580
|
} | null;
|
22566
22581
|
email?: {
|
@@ -22577,9 +22592,9 @@ export type GetFeedQuery = {
|
|
22577
22592
|
inboxOnly?: boolean | null;
|
22578
22593
|
authenticationType?: GoogleEmailAuthenticationTypes | null;
|
22579
22594
|
refreshToken?: string | null;
|
22580
|
-
clientId
|
22581
|
-
clientSecret
|
22582
|
-
|
22595
|
+
clientId?: string | null;
|
22596
|
+
clientSecret?: string | null;
|
22597
|
+
authorizationId?: string | null;
|
22583
22598
|
} | null;
|
22584
22599
|
microsoft?: {
|
22585
22600
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -22589,10 +22604,10 @@ export type GetFeedQuery = {
|
|
22589
22604
|
includeDeletedItems?: boolean | null;
|
22590
22605
|
inboxOnly?: boolean | null;
|
22591
22606
|
authenticationType?: MicrosoftEmailAuthenticationTypes | null;
|
22592
|
-
refreshToken
|
22593
|
-
clientId
|
22594
|
-
clientSecret
|
22595
|
-
|
22607
|
+
refreshToken?: string | null;
|
22608
|
+
clientId?: string | null;
|
22609
|
+
clientSecret?: string | null;
|
22610
|
+
authorizationId?: string | null;
|
22596
22611
|
} | null;
|
22597
22612
|
} | null;
|
22598
22613
|
issue?: {
|
@@ -22615,11 +22630,13 @@ export type GetFeedQuery = {
|
|
22615
22630
|
} | null;
|
22616
22631
|
github?: {
|
22617
22632
|
__typename?: 'GitHubIssuesFeedProperties';
|
22633
|
+
authenticationType?: GitHubIssueAuthenticationTypes | null;
|
22618
22634
|
uri?: any | null;
|
22619
22635
|
repositoryOwner: string;
|
22620
22636
|
repositoryName: string;
|
22621
22637
|
refreshToken?: string | null;
|
22622
22638
|
personalAccessToken?: string | null;
|
22639
|
+
authorizationId?: string | null;
|
22623
22640
|
} | null;
|
22624
22641
|
intercom?: {
|
22625
22642
|
__typename?: 'IntercomTicketsFeedProperties';
|
@@ -22649,10 +22666,10 @@ export type GetFeedQuery = {
|
|
22649
22666
|
beforeDate?: any | null;
|
22650
22667
|
afterDate?: any | null;
|
22651
22668
|
authenticationType?: GoogleCalendarAuthenticationTypes | null;
|
22652
|
-
refreshToken
|
22653
|
-
clientId
|
22654
|
-
clientSecret
|
22655
|
-
|
22669
|
+
refreshToken?: string | null;
|
22670
|
+
clientId?: string | null;
|
22671
|
+
clientSecret?: string | null;
|
22672
|
+
authorizationId?: string | null;
|
22656
22673
|
} | null;
|
22657
22674
|
microsoft?: {
|
22658
22675
|
__typename?: 'MicrosoftCalendarFeedProperties';
|
@@ -22660,10 +22677,10 @@ export type GetFeedQuery = {
|
|
22660
22677
|
beforeDate?: any | null;
|
22661
22678
|
afterDate?: any | null;
|
22662
22679
|
authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
|
22663
|
-
refreshToken
|
22664
|
-
clientId
|
22665
|
-
clientSecret
|
22666
|
-
|
22680
|
+
refreshToken?: string | null;
|
22681
|
+
clientId?: string | null;
|
22682
|
+
clientSecret?: string | null;
|
22683
|
+
authorizationId?: string | null;
|
22667
22684
|
} | null;
|
22668
22685
|
} | null;
|
22669
22686
|
rss?: {
|
@@ -22742,7 +22759,7 @@ export type GetFeedQuery = {
|
|
22742
22759
|
clientId?: string | null;
|
22743
22760
|
clientSecret?: string | null;
|
22744
22761
|
refreshToken?: string | null;
|
22745
|
-
|
22762
|
+
authorizationId?: string | null;
|
22746
22763
|
teamId: string;
|
22747
22764
|
channelId: string;
|
22748
22765
|
} | null;
|
@@ -22913,17 +22930,17 @@ export type QueryFeedsQuery = {
|
|
22913
22930
|
clientId?: string | null;
|
22914
22931
|
clientSecret?: string | null;
|
22915
22932
|
refreshToken?: string | null;
|
22916
|
-
|
22933
|
+
authorizationId?: string | null;
|
22917
22934
|
} | null;
|
22918
22935
|
oneDrive?: {
|
22919
22936
|
__typename?: 'OneDriveFeedProperties';
|
22920
22937
|
authenticationType?: OneDriveAuthenticationTypes | null;
|
22921
22938
|
folderId?: string | null;
|
22922
22939
|
files?: Array<string | null> | null;
|
22923
|
-
clientId
|
22924
|
-
clientSecret
|
22925
|
-
refreshToken
|
22926
|
-
|
22940
|
+
clientId?: string | null;
|
22941
|
+
clientSecret?: string | null;
|
22942
|
+
refreshToken?: string | null;
|
22943
|
+
authorizationId?: string | null;
|
22927
22944
|
} | null;
|
22928
22945
|
googleDrive?: {
|
22929
22946
|
__typename?: 'GoogleDriveFeedProperties';
|
@@ -22934,37 +22951,35 @@ export type QueryFeedsQuery = {
|
|
22934
22951
|
clientId?: string | null;
|
22935
22952
|
clientSecret?: string | null;
|
22936
22953
|
serviceAccountJson?: string | null;
|
22937
|
-
|
22954
|
+
authorizationId?: string | null;
|
22938
22955
|
} | null;
|
22939
22956
|
dropbox?: {
|
22940
22957
|
__typename?: 'DropboxFeedProperties';
|
22941
22958
|
authenticationType?: DropboxAuthenticationTypes | null;
|
22942
22959
|
path?: string | null;
|
22943
|
-
|
22944
|
-
|
22945
|
-
|
22946
|
-
|
22947
|
-
redirectUri: string;
|
22960
|
+
appKey?: string | null;
|
22961
|
+
appSecret?: string | null;
|
22962
|
+
refreshToken?: string | null;
|
22963
|
+
redirectUri?: string | null;
|
22948
22964
|
} | null;
|
22949
22965
|
box?: {
|
22950
22966
|
__typename?: 'BoxFeedProperties';
|
22951
22967
|
authenticationType?: BoxAuthenticationTypes | null;
|
22952
22968
|
folderId?: string | null;
|
22953
|
-
|
22954
|
-
|
22955
|
-
|
22956
|
-
|
22957
|
-
redirectUri: string;
|
22969
|
+
clientId?: string | null;
|
22970
|
+
clientSecret?: string | null;
|
22971
|
+
refreshToken?: string | null;
|
22972
|
+
redirectUri?: string | null;
|
22958
22973
|
} | null;
|
22959
22974
|
github?: {
|
22960
22975
|
__typename?: 'GitHubFeedProperties';
|
22961
|
-
authenticationType?:
|
22976
|
+
authenticationType?: GitHubAuthenticationTypes | null;
|
22962
22977
|
uri?: any | null;
|
22963
22978
|
repositoryOwner: string;
|
22964
22979
|
repositoryName: string;
|
22965
22980
|
refreshToken?: string | null;
|
22966
22981
|
personalAccessToken?: string | null;
|
22967
|
-
|
22982
|
+
authorizationId?: string | null;
|
22968
22983
|
} | null;
|
22969
22984
|
} | null;
|
22970
22985
|
email?: {
|
@@ -22981,9 +22996,9 @@ export type QueryFeedsQuery = {
|
|
22981
22996
|
inboxOnly?: boolean | null;
|
22982
22997
|
authenticationType?: GoogleEmailAuthenticationTypes | null;
|
22983
22998
|
refreshToken?: string | null;
|
22984
|
-
clientId
|
22985
|
-
clientSecret
|
22986
|
-
|
22999
|
+
clientId?: string | null;
|
23000
|
+
clientSecret?: string | null;
|
23001
|
+
authorizationId?: string | null;
|
22987
23002
|
} | null;
|
22988
23003
|
microsoft?: {
|
22989
23004
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -22993,10 +23008,10 @@ export type QueryFeedsQuery = {
|
|
22993
23008
|
includeDeletedItems?: boolean | null;
|
22994
23009
|
inboxOnly?: boolean | null;
|
22995
23010
|
authenticationType?: MicrosoftEmailAuthenticationTypes | null;
|
22996
|
-
refreshToken
|
22997
|
-
clientId
|
22998
|
-
clientSecret
|
22999
|
-
|
23011
|
+
refreshToken?: string | null;
|
23012
|
+
clientId?: string | null;
|
23013
|
+
clientSecret?: string | null;
|
23014
|
+
authorizationId?: string | null;
|
23000
23015
|
} | null;
|
23001
23016
|
} | null;
|
23002
23017
|
issue?: {
|
@@ -23019,11 +23034,13 @@ export type QueryFeedsQuery = {
|
|
23019
23034
|
} | null;
|
23020
23035
|
github?: {
|
23021
23036
|
__typename?: 'GitHubIssuesFeedProperties';
|
23037
|
+
authenticationType?: GitHubIssueAuthenticationTypes | null;
|
23022
23038
|
uri?: any | null;
|
23023
23039
|
repositoryOwner: string;
|
23024
23040
|
repositoryName: string;
|
23025
23041
|
refreshToken?: string | null;
|
23026
23042
|
personalAccessToken?: string | null;
|
23043
|
+
authorizationId?: string | null;
|
23027
23044
|
} | null;
|
23028
23045
|
intercom?: {
|
23029
23046
|
__typename?: 'IntercomTicketsFeedProperties';
|
@@ -23053,10 +23070,10 @@ export type QueryFeedsQuery = {
|
|
23053
23070
|
beforeDate?: any | null;
|
23054
23071
|
afterDate?: any | null;
|
23055
23072
|
authenticationType?: GoogleCalendarAuthenticationTypes | null;
|
23056
|
-
refreshToken
|
23057
|
-
clientId
|
23058
|
-
clientSecret
|
23059
|
-
|
23073
|
+
refreshToken?: string | null;
|
23074
|
+
clientId?: string | null;
|
23075
|
+
clientSecret?: string | null;
|
23076
|
+
authorizationId?: string | null;
|
23060
23077
|
} | null;
|
23061
23078
|
microsoft?: {
|
23062
23079
|
__typename?: 'MicrosoftCalendarFeedProperties';
|
@@ -23064,10 +23081,10 @@ export type QueryFeedsQuery = {
|
|
23064
23081
|
beforeDate?: any | null;
|
23065
23082
|
afterDate?: any | null;
|
23066
23083
|
authenticationType?: MicrosoftCalendarAuthenticationTypes | null;
|
23067
|
-
refreshToken
|
23068
|
-
clientId
|
23069
|
-
clientSecret
|
23070
|
-
|
23084
|
+
refreshToken?: string | null;
|
23085
|
+
clientId?: string | null;
|
23086
|
+
clientSecret?: string | null;
|
23087
|
+
authorizationId?: string | null;
|
23071
23088
|
} | null;
|
23072
23089
|
} | null;
|
23073
23090
|
rss?: {
|
@@ -23146,7 +23163,7 @@ export type QueryFeedsQuery = {
|
|
23146
23163
|
clientId?: string | null;
|
23147
23164
|
clientSecret?: string | null;
|
23148
23165
|
refreshToken?: string | null;
|
23149
|
-
|
23166
|
+
authorizationId?: string | null;
|
23150
23167
|
teamId: string;
|
23151
23168
|
channelId: string;
|
23152
23169
|
} | null;
|