@maxim_mazurok/gapi.client.dfareporting-v5 0.1.20260310 → 0.1.20260605
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/index.d.ts +6 -12
- package/package.json +1 -1
- package/readme.md +17 -0
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://dfareporting.googleapis.com/$discovery/rest?version=v5
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260605
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -992,7 +992,8 @@ declare namespace gapi.client {
|
|
|
992
992
|
| 'CREATIVE_AUTHORING_SOURCE_TYPEFACE_AI'
|
|
993
993
|
| 'CREATIVE_AUTHORING_SOURCE_REMBRAND'
|
|
994
994
|
| 'CREATIVE_AUTHORING_SOURCE_TRACKTO_STUDIO'
|
|
995
|
-
| 'CREATIVE_AUTHORING_SOURCE_BORNLOGIC'
|
|
995
|
+
| 'CREATIVE_AUTHORING_SOURCE_BORNLOGIC'
|
|
996
|
+
| 'CREATIVE_AUTHORING_SOURCE_BEGEN_AI';
|
|
996
997
|
/** Authoring tool for HTML5 banner creatives. This is a read-only field. Applicable to the following creative types: HTML5_BANNER. */
|
|
997
998
|
authoringTool?: 'NINJA' | 'SWIFFY';
|
|
998
999
|
/** Whether images are automatically advanced for image gallery creatives. Applicable to the following creative types: DISPLAY_IMAGE_GALLERY. */
|
|
@@ -1968,6 +1969,8 @@ declare namespace gapi.client {
|
|
|
1968
1969
|
| 'AD_PRIORITY_16';
|
|
1969
1970
|
}
|
|
1970
1971
|
interface DependentFieldValue {
|
|
1972
|
+
/** Optional. The ID of the dynamic feed that value's field will match against. */
|
|
1973
|
+
dynamicFeedId?: string;
|
|
1971
1974
|
/** Optional. The ID of the element that value's field will match against. */
|
|
1972
1975
|
elementId?: string;
|
|
1973
1976
|
/** Optional. The field id of the dependent field. */
|
|
@@ -2545,27 +2548,18 @@ declare namespace gapi.client {
|
|
|
2545
2548
|
| 'CONVERSION_CATEGORY_SIGNUP'
|
|
2546
2549
|
| 'CONVERSION_CATEGORY_PAGE_VIEW'
|
|
2547
2550
|
| 'CONVERSION_CATEGORY_DOWNLOAD'
|
|
2548
|
-
| 'CONVERSION_CATEGORY_BOOM_EVENT'
|
|
2549
2551
|
| 'CONVERSION_CATEGORY_ADD_TO_CART'
|
|
2550
2552
|
| 'CONVERSION_CATEGORY_BEGIN_CHECKOUT'
|
|
2551
2553
|
| 'CONVERSION_CATEGORY_SUBSCRIBE_PAID'
|
|
2552
|
-
| 'CONVERSION_CATEGORY_SUBSCRIBE_FREE'
|
|
2553
|
-
| 'CONVERSION_CATEGORY_PHONE_CALL_LEAD'
|
|
2554
|
-
| 'CONVERSION_CATEGORY_IMPORTED_LEAD'
|
|
2555
2554
|
| 'CONVERSION_CATEGORY_SUBMIT_LEAD_FORM'
|
|
2556
2555
|
| 'CONVERSION_CATEGORY_BOOK_APPOINTMENT'
|
|
2557
2556
|
| 'CONVERSION_CATEGORY_REQUEST_QUOTE'
|
|
2558
2557
|
| 'CONVERSION_CATEGORY_GET_DIRECTIONS'
|
|
2559
2558
|
| 'CONVERSION_CATEGORY_OUTBOUND_CLICK'
|
|
2560
2559
|
| 'CONVERSION_CATEGORY_CONTACT'
|
|
2561
|
-
| 'CONVERSION_CATEGORY_VIEW_KEY_PAGE'
|
|
2562
|
-
| 'CONVERSION_CATEGORY_ENGAGEMENT'
|
|
2563
|
-
| 'CONVERSION_CATEGORY_STORE_VISIT'
|
|
2564
|
-
| 'CONVERSION_CATEGORY_STORE_SALE'
|
|
2565
2560
|
| 'CONVERSION_CATEGORY_QUALIFIED_LEAD'
|
|
2566
2561
|
| 'CONVERSION_CATEGORY_CONVERTED_LEAD'
|
|
2567
|
-
| 'CONVERSION_CATEGORY_IN_APP_AD_REVENUE'
|
|
2568
|
-
| 'CONVERSION_CATEGORY_MESSAGE_LEAD';
|
|
2562
|
+
| 'CONVERSION_CATEGORY_IN_APP_AD_REVENUE';
|
|
2569
2563
|
/** Counting method for conversions for this floodlight activity. This is a required field. */
|
|
2570
2564
|
countingMethod?:
|
|
2571
2565
|
| 'STANDARD_COUNTING'
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -11,6 +11,23 @@ Install typings for Campaign Manager 360 API:
|
|
|
11
11
|
npm install @types/gapi.client.dfareporting-v5 --save-dev
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
## TypeScript 6.0+
|
|
15
|
+
|
|
16
|
+
TypeScript 6.0 changed `types` to default to `[]`. You must now explicitly list type packages in `tsconfig.json`:
|
|
17
|
+
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"compilerOptions": {
|
|
21
|
+
"types": [
|
|
22
|
+
"gapi",
|
|
23
|
+
"gapi.auth2",
|
|
24
|
+
"gapi.client",
|
|
25
|
+
"gapi.client.dfareporting-v5"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
14
31
|
## Usage
|
|
15
32
|
|
|
16
33
|
You need to initialize Google API client in your code:
|