graphlit-client 1.0.20250930001 → 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
@@ -1165,10 +1165,14 @@ export type BoxFolderResults = {
1165
1165
  };
1166
1166
  /** Represents Box folders properties. */
1167
1167
  export type BoxFoldersInput = {
1168
+ /** Box authentication type. */
1169
+ authenticationType?: InputMaybe<BoxAuthenticationTypes>;
1168
1170
  /** Box client identifier. */
1169
1171
  clientId?: InputMaybe<Scalars['String']['input']>;
1170
1172
  /** Box client secret. */
1171
1173
  clientSecret?: InputMaybe<Scalars['String']['input']>;
1174
+ /** Box redirect URI. */
1175
+ redirectUri?: InputMaybe<Scalars['String']['input']>;
1172
1176
  /** Box refresh token. */
1173
1177
  refreshToken?: InputMaybe<Scalars['String']['input']>;
1174
1178
  };
@@ -3362,7 +3366,10 @@ export type DropboxFeedProperties = {
3362
3366
  authenticationType?: Maybe<DropboxAuthenticationTypes>;
3363
3367
  /** Dropbox folder path. */
3364
3368
  path?: Maybe<Scalars['ID']['output']>;
3365
- /** Dropbox redirect URI. */
3369
+ /**
3370
+ * Dropbox redirect URI.
3371
+ * @deprecated No longer required. Will be removed in future.
3372
+ */
3366
3373
  redirectUri?: Maybe<Scalars['String']['output']>;
3367
3374
  /** Dropbox refresh token. */
3368
3375
  refreshToken?: Maybe<Scalars['String']['output']>;
@@ -3377,8 +3384,6 @@ export type DropboxFeedPropertiesInput = {
3377
3384
  authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
3378
3385
  /** Dropbox folder path. */
3379
3386
  path?: InputMaybe<Scalars['ID']['input']>;
3380
- /** Dropbox redirect URI. */
3381
- redirectUri?: InputMaybe<Scalars['String']['input']>;
3382
3387
  /** Dropbox refresh token. */
3383
3388
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3384
3389
  };
@@ -3392,8 +3397,6 @@ export type DropboxFeedPropertiesUpdateInput = {
3392
3397
  authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
3393
3398
  /** Dropbox folder path. */
3394
3399
  path?: InputMaybe<Scalars['ID']['input']>;
3395
- /** Dropbox redirect URI. */
3396
- redirectUri?: InputMaybe<Scalars['String']['input']>;
3397
3400
  /** Dropbox refresh token. */
3398
3401
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3399
3402
  };
@@ -3417,6 +3420,8 @@ export type DropboxFoldersInput = {
3417
3420
  appKey?: InputMaybe<Scalars['String']['input']>;
3418
3421
  /** Dropbox app secret. */
3419
3422
  appSecret?: InputMaybe<Scalars['String']['input']>;
3423
+ /** Dropbox authentication type. */
3424
+ authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
3420
3425
  /** Dropbox refresh token. */
3421
3426
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3422
3427
  };
@@ -22892,7 +22897,6 @@ export type GetFeedQuery = {
22892
22897
  appKey?: string | null;
22893
22898
  appSecret?: string | null;
22894
22899
  refreshToken?: string | null;
22895
- redirectUri?: string | null;
22896
22900
  } | null;
22897
22901
  box?: {
22898
22902
  __typename?: 'BoxFeedProperties';
@@ -23305,7 +23309,6 @@ export type QueryFeedsQuery = {
23305
23309
  appKey?: string | null;
23306
23310
  appSecret?: string | null;
23307
23311
  refreshToken?: string | null;
23308
- redirectUri?: string | null;
23309
23312
  } | null;
23310
23313
  box?: {
23311
23314
  __typename?: 'BoxFeedProperties';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250930001",
3
+ "version": "1.0.20250930003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",