graphlit-client 1.0.20250930001 → 1.0.20250930002

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.
@@ -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
  };
@@ -3417,6 +3421,8 @@ export type DropboxFoldersInput = {
3417
3421
  appKey?: InputMaybe<Scalars['String']['input']>;
3418
3422
  /** Dropbox app secret. */
3419
3423
  appSecret?: InputMaybe<Scalars['String']['input']>;
3424
+ /** Dropbox authentication type. */
3425
+ authenticationType?: InputMaybe<DropboxAuthenticationTypes>;
3420
3426
  /** Dropbox refresh token. */
3421
3427
  refreshToken?: InputMaybe<Scalars['String']['input']>;
3422
3428
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250930001",
3
+ "version": "1.0.20250930002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",