@tolinax/ayoune-interfaces 2024.2.9 → 2024.2.11
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.
- package/interfaces/IAd.d.ts +1 -1
- package/interfaces/IAdResult.d.ts +1 -0
- package/interfaces/ICollectionItem.d.ts +4 -4
- package/interfaces/IaYOUneGoogleAdsAccount.d.ts +19 -0
- package/interfaces/IaYOUneGoogleAdsAccount.js +2 -0
- package/interfaces/index.d.ts +1 -1
- package/interfaces/index.js +1 -1
- package/package.json +1 -1
package/interfaces/IAd.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/interfaces/index.d.ts
CHANGED
|
@@ -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 "./
|
|
281
|
+
export * from "./IaYOUneGoogleAdsAccount";
|
|
282
282
|
export * from "./IGoogleAssistantIntent";
|
|
283
283
|
export * from "./IGridsterOption";
|
|
284
284
|
export * from "./IHashTag";
|
package/interfaces/index.js
CHANGED
|
@@ -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("./
|
|
297
|
+
__exportStar(require("./IaYOUneGoogleAdsAccount"), exports);
|
|
298
298
|
__exportStar(require("./IGoogleAssistantIntent"), exports);
|
|
299
299
|
__exportStar(require("./IGridsterOption"), exports);
|
|
300
300
|
__exportStar(require("./IHashTag"), exports);
|