@squidcloud/google-calendar-client 1.0.420 → 1.0.422

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.
@@ -4,25 +4,6 @@
4
4
  *
5
5
  */
6
6
  export declare const GOOGLE_CALENDAR_SCOPES: readonly ["openid", "email", "https://www.googleapis.com/auth/calendar.events"];
7
- /**
8
- * Request to exchange a Google OAuth2 authorization code for access and refresh tokens, which are then saved in the
9
- * Squid backend for future use.
10
- * This is called after the user completes the Google OAuth flow and receives an authorization code.
11
- */
12
- export interface SaveAuthCodeRequest {
13
- /**
14
- * OAuth2 authorization code received from Google after user consent.
15
- * This is a one-time use code that can be exchanged for access/refresh tokens.
16
- */
17
- authCode: string;
18
- /** The ID of the Google Calendar integration in the Squid console. */
19
- integrationId: string;
20
- /**
21
- * User-specific identifier to associate the tokens with a particular user.
22
- * This identifier will be used later to retrieve the correct tokens for API calls.
23
- */
24
- identifier: string;
25
- }
26
7
  /**
27
8
  * Represents an attendee of a calendar event
28
9
  */
@@ -1,2 +1,2 @@
1
- export { GOOGLE_CALENDAR_SCOPES, SaveAuthCodeRequest } from '../../common/src/google-calendar-types';
1
+ export * from '../../common/src/google-calendar-types';
2
2
  export * from './google-calendar-client';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/google-calendar-client",
3
- "version": "1.0.420",
3
+ "version": "1.0.422",
4
4
  "description": "Squid Google Calendar Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/client/src/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "assertic": "^1.3.0",
21
21
  "lodash": "^4.17.21",
22
- "@squidcloud/client": "^1.0.420"
22
+ "@squidcloud/client": "^1.0.422"
23
23
  },
24
24
  "engines": {
25
25
  "node": ">=20.0.0"