graphlit-client 1.0.20260303002 → 1.0.20260303003
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.
|
@@ -9144,6 +9144,7 @@ export const GetFeed = gql `
|
|
|
9144
9144
|
}
|
|
9145
9145
|
googleDrive {
|
|
9146
9146
|
authenticationType
|
|
9147
|
+
driveId
|
|
9147
9148
|
folderId
|
|
9148
9149
|
files
|
|
9149
9150
|
refreshToken
|
|
@@ -10050,6 +10051,7 @@ export const QueryFeeds = gql `
|
|
|
10050
10051
|
}
|
|
10051
10052
|
googleDrive {
|
|
10052
10053
|
authenticationType
|
|
10054
|
+
driveId
|
|
10053
10055
|
folderId
|
|
10054
10056
|
files
|
|
10055
10057
|
refreshToken
|
|
@@ -8017,6 +8017,8 @@ export type GoogleDriveFeedProperties = {
|
|
|
8017
8017
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
8018
8018
|
/** Authentication connector reference. */
|
|
8019
8019
|
connector?: Maybe<EntityReference>;
|
|
8020
|
+
/** Google Drive shared drive identifier. */
|
|
8021
|
+
driveId?: Maybe<Scalars['ID']['output']>;
|
|
8020
8022
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
|
8021
8023
|
files?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
8022
8024
|
/** Google Drive folder identifier. */
|
|
@@ -8036,6 +8038,8 @@ export type GoogleDriveFeedPropertiesInput = {
|
|
|
8036
8038
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
8037
8039
|
/** The authentication connector reference. */
|
|
8038
8040
|
connector?: InputMaybe<EntityReferenceInput>;
|
|
8041
|
+
/** Google Drive shared drive identifier. */
|
|
8042
|
+
driveId?: InputMaybe<Scalars['ID']['input']>;
|
|
8039
8043
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
|
8040
8044
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
8041
8045
|
/** Google Drive folder identifier. */
|
|
@@ -8055,6 +8059,8 @@ export type GoogleDriveFeedPropertiesUpdateInput = {
|
|
|
8055
8059
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
8056
8060
|
/** The authentication connector reference. */
|
|
8057
8061
|
connector?: InputMaybe<EntityReferenceInput>;
|
|
8062
|
+
/** Google Drive shared drive identifier. */
|
|
8063
|
+
driveId?: InputMaybe<Scalars['ID']['input']>;
|
|
8058
8064
|
/** Google Drive file identifiers. Takes precedence over folder identifier. */
|
|
8059
8065
|
files?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
8060
8066
|
/** Google Drive folder identifier. */
|
|
@@ -33506,6 +33512,7 @@ export type GetFeedQuery = {
|
|
|
33506
33512
|
googleDrive?: {
|
|
33507
33513
|
__typename?: 'GoogleDriveFeedProperties';
|
|
33508
33514
|
authenticationType?: GoogleDriveAuthenticationTypes | null;
|
|
33515
|
+
driveId?: string | null;
|
|
33509
33516
|
folderId?: string | null;
|
|
33510
33517
|
files?: Array<string | null> | null;
|
|
33511
33518
|
refreshToken?: string | null;
|
|
@@ -34598,6 +34605,7 @@ export type QueryFeedsQuery = {
|
|
|
34598
34605
|
googleDrive?: {
|
|
34599
34606
|
__typename?: 'GoogleDriveFeedProperties';
|
|
34600
34607
|
authenticationType?: GoogleDriveAuthenticationTypes | null;
|
|
34608
|
+
driveId?: string | null;
|
|
34601
34609
|
folderId?: string | null;
|
|
34602
34610
|
files?: Array<string | null> | null;
|
|
34603
34611
|
refreshToken?: string | null;
|