@tolinax/ayoune-interfaces 2024.2.9 → 2024.2.10

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.
@@ -0,0 +1,19 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ export interface IaYOUneGoogleAdsAccount 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 });
@@ -278,7 +278,7 @@ export * from "./IGlobalSetting";
278
278
  export * from "./IGlossary";
279
279
  export * from "./IGoal";
280
280
  export * from "./IGoodsReceipt";
281
- export * from "./IGoogleAdsAccount";
281
+ export * from "./IaYOUneGoogleAdsAccount";
282
282
  export * from "./IGoogleAssistantIntent";
283
283
  export * from "./IGridsterOption";
284
284
  export * from "./IHashTag";
@@ -294,7 +294,7 @@ __exportStar(require("./IGlobalSetting"), exports);
294
294
  __exportStar(require("./IGlossary"), exports);
295
295
  __exportStar(require("./IGoal"), exports);
296
296
  __exportStar(require("./IGoodsReceipt"), exports);
297
- __exportStar(require("./IGoogleAdsAccount"), exports);
297
+ __exportStar(require("./IaYOUneGoogleAdsAccount"), exports);
298
298
  __exportStar(require("./IGoogleAssistantIntent"), exports);
299
299
  __exportStar(require("./IGridsterOption"), exports);
300
300
  __exportStar(require("./IHashTag"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.2.9",
3
+ "version": "2024.2.10",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",