graphlit-client 1.0.20241124001 → 1.0.20241125001

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.
@@ -10562,6 +10562,10 @@ export type SharePointFolderResults = {
10562
10562
  export type SharePointFoldersInput = {
10563
10563
  /** SharePoint authentication type. */
10564
10564
  authenticationType: SharePointAuthenticationTypes;
10565
+ /** Microsoft Entra ID client identifier, when using user authentication type. */
10566
+ clientId?: InputMaybe<Scalars['String']['input']>;
10567
+ /** Microsoft Entra ID client secret, when using user authentication type. */
10568
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
10565
10569
  /** Microsoft Entra ID refresh token, when using user authentication type. */
10566
10570
  refreshToken?: InputMaybe<Scalars['String']['input']>;
10567
10571
  /** Microsoft Entra ID tenant identifier, when using application authentication type. */
@@ -10571,6 +10575,10 @@ export type SharePointFoldersInput = {
10571
10575
  export type SharePointLibrariesInput = {
10572
10576
  /** SharePoint authentication type. */
10573
10577
  authenticationType: SharePointAuthenticationTypes;
10578
+ /** Microsoft Entra ID client identifier, when using user authentication type. */
10579
+ clientId?: InputMaybe<Scalars['String']['input']>;
10580
+ /** Microsoft Entra ID client secret, when using user authentication type. */
10581
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
10574
10582
  /** Microsoft Entra ID refresh token, when using user authentication type. */
10575
10583
  refreshToken?: InputMaybe<Scalars['String']['input']>;
10576
10584
  /** Microsoft Entra ID tenant identifier, when using application authentication type. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20241124001",
3
+ "version": "1.0.20241125001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",