graphlit-client 1.0.20251210001 → 1.0.20251210002

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.
@@ -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. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251210001",
3
+ "version": "1.0.20251210002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",