graphlit-client 1.0.20250930002 → 1.0.20250930003

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.
@@ -6606,7 +6606,6 @@ export const GetFeed = gql `
6606
6606
  appKey
6607
6607
  appSecret
6608
6608
  refreshToken
6609
- redirectUri
6610
6609
  }
6611
6610
  box {
6612
6611
  authenticationType
@@ -6951,7 +6950,6 @@ export const QueryFeeds = gql `
6951
6950
  appKey
6952
6951
  appSecret
6953
6952
  refreshToken
6954
- redirectUri
6955
6953
  }
6956
6954
  box {
6957
6955
  authenticationType
@@ -3366,7 +3366,10 @@ export type DropboxFeedProperties = {
3366
3366
  authenticationType?: Maybe<DropboxAuthenticationTypes>;
3367
3367
  /** Dropbox folder path. */
3368
3368
  path?: Maybe<Scalars['ID']['output']>;
3369
- /** Dropbox redirect URI. */
3369
+ /**
3370
+ * Dropbox redirect URI.
3371
+ * @deprecated No longer required. Will be removed in future.
3372
+ */
3370
3373
  redirectUri?: Maybe<Scalars['String']['output']>;
3371
3374
  /** Dropbox refresh token. */
3372
3375
  refreshToken?: Maybe<Scalars['String']['output']>;
@@ -3381,8 +3384,6 @@ export type DropboxFeedPropertiesInput = {
3381
3384
  authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
3382
3385
  /** Dropbox folder path. */
3383
3386
  path?: InputMaybe<Scalars['ID']['input']>;
3384
- /** Dropbox redirect URI. */
3385
- redirectUri?: InputMaybe<Scalars['String']['input']>;
3386
3387
  /** Dropbox refresh token. */
3387
3388
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3388
3389
  };
@@ -3396,8 +3397,6 @@ export type DropboxFeedPropertiesUpdateInput = {
3396
3397
  authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
3397
3398
  /** Dropbox folder path. */
3398
3399
  path?: InputMaybe<Scalars['ID']['input']>;
3399
- /** Dropbox redirect URI. */
3400
- redirectUri?: InputMaybe<Scalars['String']['input']>;
3401
3400
  /** Dropbox refresh token. */
3402
3401
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3403
3402
  };
@@ -22898,7 +22897,6 @@ export type GetFeedQuery = {
22898
22897
  appKey?: string | null;
22899
22898
  appSecret?: string | null;
22900
22899
  refreshToken?: string | null;
22901
- redirectUri?: string | null;
22902
22900
  } | null;
22903
22901
  box?: {
22904
22902
  __typename?: 'BoxFeedProperties';
@@ -23311,7 +23309,6 @@ export type QueryFeedsQuery = {
23311
23309
  appKey?: string | null;
23312
23310
  appSecret?: string | null;
23313
23311
  refreshToken?: string | null;
23314
- redirectUri?: string | null;
23315
23312
  } | null;
23316
23313
  box?: {
23317
23314
  __typename?: 'BoxFeedProperties';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250930002",
3
+ "version": "1.0.20250930003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",