graphlit-client 1.0.20251210001 → 1.0.20251211001
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 {
|
|
@@ -12056,6 +12056,10 @@ export declare enum NotionTypes {
|
|
|
12056
12056
|
/** Represents OAuth authentication properties. */
|
|
12057
12057
|
export type OAuthAuthenticationProperties = {
|
|
12058
12058
|
__typename?: 'OAuthAuthenticationProperties';
|
|
12059
|
+
/** OAuth client identifier. */
|
|
12060
|
+
clientId: Scalars['String']['output'];
|
|
12061
|
+
/** OAuth client secret. */
|
|
12062
|
+
clientSecret: Scalars['String']['output'];
|
|
12059
12063
|
/** OAuth metadata. */
|
|
12060
12064
|
metadata?: Maybe<Scalars['String']['output']>;
|
|
12061
12065
|
/** OAuth provider. */
|
|
@@ -12065,6 +12069,10 @@ export type OAuthAuthenticationProperties = {
|
|
|
12065
12069
|
};
|
|
12066
12070
|
/** Represents OAuth authentication properties. */
|
|
12067
12071
|
export type OAuthAuthenticationPropertiesInput = {
|
|
12072
|
+
/** OAuth client identifier. */
|
|
12073
|
+
clientId: Scalars['String']['input'];
|
|
12074
|
+
/** OAuth client secret. */
|
|
12075
|
+
clientSecret: Scalars['String']['input'];
|
|
12068
12076
|
/** OAuth metadata. */
|
|
12069
12077
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
12070
12078
|
/** OAuth provider. */
|
|
@@ -18985,8 +18993,10 @@ export type GetConnectorQuery = {
|
|
|
18985
18993
|
} | null;
|
|
18986
18994
|
oauth?: {
|
|
18987
18995
|
__typename?: 'OAuthAuthenticationProperties';
|
|
18988
|
-
refreshToken: string;
|
|
18989
18996
|
provider: OAuthProviders;
|
|
18997
|
+
clientId: string;
|
|
18998
|
+
clientSecret: string;
|
|
18999
|
+
refreshToken: string;
|
|
18990
19000
|
metadata?: string | null;
|
|
18991
19001
|
} | null;
|
|
18992
19002
|
arcade?: {
|
|
@@ -19063,8 +19073,10 @@ export type QueryConnectorsQuery = {
|
|
|
19063
19073
|
} | null;
|
|
19064
19074
|
oauth?: {
|
|
19065
19075
|
__typename?: 'OAuthAuthenticationProperties';
|
|
19066
|
-
refreshToken: string;
|
|
19067
19076
|
provider: OAuthProviders;
|
|
19077
|
+
clientId: string;
|
|
19078
|
+
clientSecret: string;
|
|
19079
|
+
refreshToken: string;
|
|
19068
19080
|
metadata?: string | null;
|
|
19069
19081
|
} | null;
|
|
19070
19082
|
arcade?: {
|
|
@@ -35341,8 +35353,10 @@ export type GetUserQuery = {
|
|
|
35341
35353
|
} | null;
|
|
35342
35354
|
oauth?: {
|
|
35343
35355
|
__typename?: 'OAuthAuthenticationProperties';
|
|
35344
|
-
refreshToken: string;
|
|
35345
35356
|
provider: OAuthProviders;
|
|
35357
|
+
clientId: string;
|
|
35358
|
+
clientSecret: string;
|
|
35359
|
+
refreshToken: string;
|
|
35346
35360
|
metadata?: string | null;
|
|
35347
35361
|
} | null;
|
|
35348
35362
|
arcade?: {
|
|
@@ -35425,8 +35439,10 @@ export type GetUserByIdentifierQuery = {
|
|
|
35425
35439
|
} | null;
|
|
35426
35440
|
oauth?: {
|
|
35427
35441
|
__typename?: 'OAuthAuthenticationProperties';
|
|
35428
|
-
refreshToken: string;
|
|
35429
35442
|
provider: OAuthProviders;
|
|
35443
|
+
clientId: string;
|
|
35444
|
+
clientSecret: string;
|
|
35445
|
+
refreshToken: string;
|
|
35430
35446
|
metadata?: string | null;
|
|
35431
35447
|
} | null;
|
|
35432
35448
|
arcade?: {
|
|
@@ -35512,8 +35528,10 @@ export type QueryUsersQuery = {
|
|
|
35512
35528
|
} | null;
|
|
35513
35529
|
oauth?: {
|
|
35514
35530
|
__typename?: 'OAuthAuthenticationProperties';
|
|
35515
|
-
refreshToken: string;
|
|
35516
35531
|
provider: OAuthProviders;
|
|
35532
|
+
clientId: string;
|
|
35533
|
+
clientSecret: string;
|
|
35534
|
+
refreshToken: string;
|
|
35517
35535
|
metadata?: string | null;
|
|
35518
35536
|
} | null;
|
|
35519
35537
|
arcade?: {
|