@tolinax/ayoune-interfaces 2025.8.0 → 2025.10.0

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.
@@ -5,6 +5,7 @@ export interface IJournalEntry extends IDefaultFields {
5
5
  _clientID?: ObjectId[];
6
6
  _subID?: ObjectId[];
7
7
  _journal?: ObjectId;
8
+ _user?: ObjectId;
8
9
  description?: string;
9
10
  emotion: Emotion;
10
11
  }
@@ -13,6 +13,10 @@ export interface IaYOUneProxyUserKeyword {
13
13
  export interface IaYOUneProxyUserAccount {
14
14
  username: string;
15
15
  password: string;
16
+ accessToken: string;
17
+ refreshToken: string;
18
+ expiresIn: number;
19
+ apiKey: string;
16
20
  lastLogin: Date;
17
21
  }
18
22
  export interface IaYOUneProxyUserActiveTimes {
@@ -0,0 +1,19 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ export interface IaYOUneSocialAccount extends IDefaultFields {
3
+ name: string;
4
+ meta: {
5
+ active: boolean;
6
+ oAuthLink: string;
7
+ keyGenLink: string;
8
+ };
9
+ googleAdsClient: {
10
+ client_id: string;
11
+ client_secret: string;
12
+ developer_token: string;
13
+ };
14
+ customerClient: {
15
+ customer_id: string;
16
+ login_customer_id: string;
17
+ refresh_token: string;
18
+ };
19
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2025.8.0",
3
+ "version": "2025.10.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",