@googleapis/tagmanager 5.4.0 → 8.0.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.
- package/CHANGELOG.md +35 -0
- package/build/v1.d.ts +84 -84
- package/build/v2.d.ts +239 -195
- package/build/v2.js +33 -0
- package/build/v2.js.map +1 -1
- package/package.json +1 -1
- package/v1.ts +84 -84
- package/v2.ts +316 -195
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [8.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/tagmanager-v7.0.0...tagmanager-v8.0.0) (2025-03-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* **tagmanager:** This release has breaking changes.
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **tagmanager:** update the API ([c0991ed](https://github.com/googleapis/google-api-nodejs-client/commit/c0991ed37bc5e3738a05367f78124c194aa4c9a0))
|
|
13
|
+
* **tagmanager:** update the API ([e359783](https://github.com/googleapis/google-api-nodejs-client/commit/e359783cb2dcdd50b08a67ea38cab494b7eff0de))
|
|
14
|
+
|
|
15
|
+
## [7.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/tagmanager-v6.0.0...tagmanager-v7.0.0) (2025-03-18)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### ⚠ BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* **tagmanager:** This release has breaking changes.
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **tagmanager:** update the API ([c0991ed](https://github.com/googleapis/google-api-nodejs-client/commit/c0991ed37bc5e3738a05367f78124c194aa4c9a0))
|
|
25
|
+
* **tagmanager:** update the API ([e359783](https://github.com/googleapis/google-api-nodejs-client/commit/e359783cb2dcdd50b08a67ea38cab494b7eff0de))
|
|
26
|
+
|
|
27
|
+
## [6.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/tagmanager-v5.4.0...tagmanager-v6.0.0) (2025-03-18)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### ⚠ BREAKING CHANGES
|
|
31
|
+
|
|
32
|
+
* **tagmanager:** This release has breaking changes.
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* **tagmanager:** update the API ([c0991ed](https://github.com/googleapis/google-api-nodejs-client/commit/c0991ed37bc5e3738a05367f78124c194aa4c9a0))
|
|
37
|
+
|
|
3
38
|
## [5.4.0](https://github.com/googleapis/google-api-nodejs-client/compare/tagmanager-v5.3.0...tagmanager-v5.4.0) (2025-02-04)
|
|
4
39
|
|
|
5
40
|
|
package/build/v1.d.ts
CHANGED
|
@@ -84,11 +84,11 @@ export declare namespace tagmanager_v1 {
|
|
|
84
84
|
*/
|
|
85
85
|
fingerprint?: string | null;
|
|
86
86
|
/**
|
|
87
|
-
* Account display name.
|
|
87
|
+
* Account display name.
|
|
88
88
|
*/
|
|
89
89
|
name?: string | null;
|
|
90
90
|
/**
|
|
91
|
-
* Whether the account shares data anonymously with Google and others.
|
|
91
|
+
* Whether the account shares data anonymously with Google and others.
|
|
92
92
|
*/
|
|
93
93
|
shareData?: boolean | null;
|
|
94
94
|
}
|
|
@@ -97,7 +97,7 @@ export declare namespace tagmanager_v1 {
|
|
|
97
97
|
*/
|
|
98
98
|
export interface Schema$AccountAccess {
|
|
99
99
|
/**
|
|
100
|
-
* List of Account permissions. Valid account permissions are read and manage.
|
|
100
|
+
* List of Account permissions. Valid account permissions are read and manage.
|
|
101
101
|
*/
|
|
102
102
|
permission?: string[] | null;
|
|
103
103
|
}
|
|
@@ -106,11 +106,11 @@ export declare namespace tagmanager_v1 {
|
|
|
106
106
|
*/
|
|
107
107
|
export interface Schema$Condition {
|
|
108
108
|
/**
|
|
109
|
-
* A list of named parameters (key/value), depending on the condition's type. Notes: - For binary operators, include parameters named arg0 and arg1 for specifying the left and right operands, respectively. - At this time, the left operand (arg0) must be a reference to a variable. - For case-insensitive Regex matching, include a boolean parameter named ignore_case that is set to true. If not specified or set to any other value, the matching will be case sensitive. - To negate an operator, include a boolean parameter named negate boolean parameter that is set to true.
|
|
109
|
+
* A list of named parameters (key/value), depending on the condition's type. Notes: - For binary operators, include parameters named arg0 and arg1 for specifying the left and right operands, respectively. - At this time, the left operand (arg0) must be a reference to a variable. - For case-insensitive Regex matching, include a boolean parameter named ignore_case that is set to true. If not specified or set to any other value, the matching will be case sensitive. - To negate an operator, include a boolean parameter named negate boolean parameter that is set to true.
|
|
110
110
|
*/
|
|
111
111
|
parameter?: Schema$Parameter[];
|
|
112
112
|
/**
|
|
113
|
-
* The type of operator for this condition.
|
|
113
|
+
* The type of operator for this condition.
|
|
114
114
|
*/
|
|
115
115
|
type?: string | null;
|
|
116
116
|
}
|
|
@@ -127,11 +127,11 @@ export declare namespace tagmanager_v1 {
|
|
|
127
127
|
*/
|
|
128
128
|
containerId?: string | null;
|
|
129
129
|
/**
|
|
130
|
-
* Optional list of domain names associated with the Container.
|
|
130
|
+
* Optional list of domain names associated with the Container.
|
|
131
131
|
*/
|
|
132
132
|
domainName?: string[] | null;
|
|
133
133
|
/**
|
|
134
|
-
* List of enabled built-in variables. Valid values include: pageUrl, pageHostname, pagePath, referrer, event, clickElement, clickClasses, clickId, clickTarget, clickUrl, clickText, formElement, formClasses, formId, formTarget, formUrl, formText, errorMessage, errorUrl, errorLine, newHistoryFragment, oldHistoryFragment, newHistoryState, oldHistoryState, historySource, containerVersion, debugMode, randomNumber, containerId.
|
|
134
|
+
* List of enabled built-in variables. Valid values include: pageUrl, pageHostname, pagePath, referrer, event, clickElement, clickClasses, clickId, clickTarget, clickUrl, clickText, formElement, formClasses, formId, formTarget, formUrl, formText, errorMessage, errorUrl, errorLine, newHistoryFragment, oldHistoryFragment, newHistoryState, oldHistoryState, historySource, containerVersion, debugMode, randomNumber, containerId.
|
|
135
135
|
*/
|
|
136
136
|
enabledBuiltInVariable?: string[] | null;
|
|
137
137
|
/**
|
|
@@ -139,11 +139,11 @@ export declare namespace tagmanager_v1 {
|
|
|
139
139
|
*/
|
|
140
140
|
fingerprint?: string | null;
|
|
141
141
|
/**
|
|
142
|
-
* Container display name.
|
|
142
|
+
* Container display name.
|
|
143
143
|
*/
|
|
144
144
|
name?: string | null;
|
|
145
145
|
/**
|
|
146
|
-
* Container Notes.
|
|
146
|
+
* Container Notes.
|
|
147
147
|
*/
|
|
148
148
|
notes?: string | null;
|
|
149
149
|
/**
|
|
@@ -151,15 +151,15 @@ export declare namespace tagmanager_v1 {
|
|
|
151
151
|
*/
|
|
152
152
|
publicId?: string | null;
|
|
153
153
|
/**
|
|
154
|
-
* Container Country ID.
|
|
154
|
+
* Container Country ID.
|
|
155
155
|
*/
|
|
156
156
|
timeZoneCountryId?: string | null;
|
|
157
157
|
/**
|
|
158
|
-
* Container Time Zone ID.
|
|
158
|
+
* Container Time Zone ID.
|
|
159
159
|
*/
|
|
160
160
|
timeZoneId?: string | null;
|
|
161
161
|
/**
|
|
162
|
-
* List of Usage Contexts for the Container. Valid values include: web, android, ios.
|
|
162
|
+
* List of Usage Contexts for the Container. Valid values include: web, android, ios.
|
|
163
163
|
*/
|
|
164
164
|
usageContext?: string[] | null;
|
|
165
165
|
}
|
|
@@ -168,11 +168,11 @@ export declare namespace tagmanager_v1 {
|
|
|
168
168
|
*/
|
|
169
169
|
export interface Schema$ContainerAccess {
|
|
170
170
|
/**
|
|
171
|
-
* GTM Container ID.
|
|
171
|
+
* GTM Container ID.
|
|
172
172
|
*/
|
|
173
173
|
containerId?: string | null;
|
|
174
174
|
/**
|
|
175
|
-
* List of Container permissions. Valid container permissions are: read, edit, delete, publish.
|
|
175
|
+
* List of Container permissions. Valid container permissions are: read, edit, delete, publish.
|
|
176
176
|
*/
|
|
177
177
|
permission?: string[] | null;
|
|
178
178
|
}
|
|
@@ -213,11 +213,11 @@ export declare namespace tagmanager_v1 {
|
|
|
213
213
|
*/
|
|
214
214
|
macro?: Schema$Macro[];
|
|
215
215
|
/**
|
|
216
|
-
* Container version display name.
|
|
216
|
+
* Container version display name.
|
|
217
217
|
*/
|
|
218
218
|
name?: string | null;
|
|
219
219
|
/**
|
|
220
|
-
* User notes on how to apply this container version in the container.
|
|
220
|
+
* User notes on how to apply this container version in the container.
|
|
221
221
|
*/
|
|
222
222
|
notes?: string | null;
|
|
223
223
|
/**
|
|
@@ -334,11 +334,11 @@ export declare namespace tagmanager_v1 {
|
|
|
334
334
|
containerId?: string | null;
|
|
335
335
|
containerVersionId?: string | null;
|
|
336
336
|
/**
|
|
337
|
-
* The environment description. Can be set or changed only on USER type environments.
|
|
337
|
+
* The environment description. Can be set or changed only on USER type environments.
|
|
338
338
|
*/
|
|
339
339
|
description?: string | null;
|
|
340
340
|
/**
|
|
341
|
-
* Whether or not to enable debug by default on for the environment.
|
|
341
|
+
* Whether or not to enable debug by default on for the environment.
|
|
342
342
|
*/
|
|
343
343
|
enableDebug?: boolean | null;
|
|
344
344
|
/**
|
|
@@ -350,7 +350,7 @@ export declare namespace tagmanager_v1 {
|
|
|
350
350
|
*/
|
|
351
351
|
fingerprint?: string | null;
|
|
352
352
|
/**
|
|
353
|
-
* The environment display name. Can be set or changed only on USER type environments.
|
|
353
|
+
* The environment display name. Can be set or changed only on USER type environments.
|
|
354
354
|
*/
|
|
355
355
|
name?: string | null;
|
|
356
356
|
/**
|
|
@@ -358,7 +358,7 @@ export declare namespace tagmanager_v1 {
|
|
|
358
358
|
*/
|
|
359
359
|
type?: string | null;
|
|
360
360
|
/**
|
|
361
|
-
* Default preview page url for the environment.
|
|
361
|
+
* Default preview page url for the environment.
|
|
362
362
|
*/
|
|
363
363
|
url?: string | null;
|
|
364
364
|
}
|
|
@@ -383,7 +383,7 @@ export declare namespace tagmanager_v1 {
|
|
|
383
383
|
*/
|
|
384
384
|
folderId?: string | null;
|
|
385
385
|
/**
|
|
386
|
-
* Folder display name.
|
|
386
|
+
* Folder display name.
|
|
387
387
|
*/
|
|
388
388
|
name?: string | null;
|
|
389
389
|
}
|
|
@@ -502,11 +502,11 @@ export declare namespace tagmanager_v1 {
|
|
|
502
502
|
*/
|
|
503
503
|
containerId?: string | null;
|
|
504
504
|
/**
|
|
505
|
-
* For mobile containers only: A list of rule IDs for disabling conditional macros; the macro is enabled if one of the enabling rules is true while all the disabling rules are false. Treated as an unordered set.
|
|
505
|
+
* For mobile containers only: A list of rule IDs for disabling conditional macros; the macro is enabled if one of the enabling rules is true while all the disabling rules are false. Treated as an unordered set.
|
|
506
506
|
*/
|
|
507
507
|
disablingRuleId?: string[] | null;
|
|
508
508
|
/**
|
|
509
|
-
* For mobile containers only: A list of rule IDs for enabling conditional macros; the macro is enabled if one of the enabling rules is true while all the disabling rules are false. Treated as an unordered set.
|
|
509
|
+
* For mobile containers only: A list of rule IDs for enabling conditional macros; the macro is enabled if one of the enabling rules is true while all the disabling rules are false. Treated as an unordered set.
|
|
510
510
|
*/
|
|
511
511
|
enablingRuleId?: string[] | null;
|
|
512
512
|
/**
|
|
@@ -518,15 +518,15 @@ export declare namespace tagmanager_v1 {
|
|
|
518
518
|
*/
|
|
519
519
|
macroId?: string | null;
|
|
520
520
|
/**
|
|
521
|
-
* Macro display name.
|
|
521
|
+
* Macro display name.
|
|
522
522
|
*/
|
|
523
523
|
name?: string | null;
|
|
524
524
|
/**
|
|
525
|
-
* User notes on how to apply this macro in the container.
|
|
525
|
+
* User notes on how to apply this macro in the container.
|
|
526
526
|
*/
|
|
527
527
|
notes?: string | null;
|
|
528
528
|
/**
|
|
529
|
-
* The macro's parameters.
|
|
529
|
+
* The macro's parameters.
|
|
530
530
|
*/
|
|
531
531
|
parameter?: Schema$Parameter[];
|
|
532
532
|
/**
|
|
@@ -534,15 +534,15 @@ export declare namespace tagmanager_v1 {
|
|
|
534
534
|
*/
|
|
535
535
|
parentFolderId?: string | null;
|
|
536
536
|
/**
|
|
537
|
-
* The end timestamp in milliseconds to schedule a macro.
|
|
537
|
+
* The end timestamp in milliseconds to schedule a macro.
|
|
538
538
|
*/
|
|
539
539
|
scheduleEndMs?: string | null;
|
|
540
540
|
/**
|
|
541
|
-
* The start timestamp in milliseconds to schedule a macro.
|
|
541
|
+
* The start timestamp in milliseconds to schedule a macro.
|
|
542
542
|
*/
|
|
543
543
|
scheduleStartMs?: string | null;
|
|
544
544
|
/**
|
|
545
|
-
* GTM Macro Type.
|
|
545
|
+
* GTM Macro Type.
|
|
546
546
|
*/
|
|
547
547
|
type?: string | null;
|
|
548
548
|
}
|
|
@@ -551,23 +551,23 @@ export declare namespace tagmanager_v1 {
|
|
|
551
551
|
*/
|
|
552
552
|
export interface Schema$Parameter {
|
|
553
553
|
/**
|
|
554
|
-
* The named key that uniquely identifies a parameter. Required for top-level parameters, as well as map values. Ignored for list values.
|
|
554
|
+
* The named key that uniquely identifies a parameter. Required for top-level parameters, as well as map values. Ignored for list values.
|
|
555
555
|
*/
|
|
556
556
|
key?: string | null;
|
|
557
557
|
/**
|
|
558
|
-
* This list parameter's parameters (keys will be ignored).
|
|
558
|
+
* This list parameter's parameters (keys will be ignored).
|
|
559
559
|
*/
|
|
560
560
|
list?: Schema$Parameter[];
|
|
561
561
|
/**
|
|
562
|
-
* This map parameter's parameters (must have keys; keys must be unique).
|
|
562
|
+
* This map parameter's parameters (must have keys; keys must be unique).
|
|
563
563
|
*/
|
|
564
564
|
map?: Schema$Parameter[];
|
|
565
565
|
/**
|
|
566
|
-
* The parameter type. Valid values are: - boolean: The value represents a boolean, represented as 'true' or 'false' - integer: The value represents a 64-bit signed integer value, in base 10 - list: A list of parameters should be specified - map: A map of parameters should be specified - template: The value represents any text; this can include variable references (even variable references that might return non-string types) - trigger_reference: The value represents a trigger, represented as the trigger id - tag_reference: The value represents a tag, represented as the tag name
|
|
566
|
+
* The parameter type. Valid values are: - boolean: The value represents a boolean, represented as 'true' or 'false' - integer: The value represents a 64-bit signed integer value, in base 10 - list: A list of parameters should be specified - map: A map of parameters should be specified - template: The value represents any text; this can include variable references (even variable references that might return non-string types) - trigger_reference: The value represents a trigger, represented as the trigger id - tag_reference: The value represents a tag, represented as the tag name
|
|
567
567
|
*/
|
|
568
568
|
type?: string | null;
|
|
569
569
|
/**
|
|
570
|
-
* A parameter's value (may contain variable references
|
|
570
|
+
* A parameter's value (may contain variable references). as appropriate to the specified type.
|
|
571
571
|
*/
|
|
572
572
|
value?: string | null;
|
|
573
573
|
}
|
|
@@ -593,7 +593,7 @@ export declare namespace tagmanager_v1 {
|
|
|
593
593
|
*/
|
|
594
594
|
accountId?: string | null;
|
|
595
595
|
/**
|
|
596
|
-
* The list of conditions that make up this rule (implicit AND between them).
|
|
596
|
+
* The list of conditions that make up this rule (implicit AND between them).
|
|
597
597
|
*/
|
|
598
598
|
condition?: Schema$Condition[];
|
|
599
599
|
/**
|
|
@@ -605,11 +605,11 @@ export declare namespace tagmanager_v1 {
|
|
|
605
605
|
*/
|
|
606
606
|
fingerprint?: string | null;
|
|
607
607
|
/**
|
|
608
|
-
* Rule display name.
|
|
608
|
+
* Rule display name.
|
|
609
609
|
*/
|
|
610
610
|
name?: string | null;
|
|
611
611
|
/**
|
|
612
|
-
* User notes on how to apply this rule in the container.
|
|
612
|
+
* User notes on how to apply this rule in the container.
|
|
613
613
|
*/
|
|
614
614
|
notes?: string | null;
|
|
615
615
|
/**
|
|
@@ -636,11 +636,11 @@ export declare namespace tagmanager_v1 {
|
|
|
636
636
|
*/
|
|
637
637
|
accountId?: string | null;
|
|
638
638
|
/**
|
|
639
|
-
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
639
|
+
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
640
640
|
*/
|
|
641
641
|
blockingRuleId?: string[] | null;
|
|
642
642
|
/**
|
|
643
|
-
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
643
|
+
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
644
644
|
*/
|
|
645
645
|
blockingTriggerId?: string[] | null;
|
|
646
646
|
/**
|
|
@@ -652,27 +652,27 @@ export declare namespace tagmanager_v1 {
|
|
|
652
652
|
*/
|
|
653
653
|
fingerprint?: string | null;
|
|
654
654
|
/**
|
|
655
|
-
* Firing rule IDs. A tag will fire when any of the listed rules are true and all of its blockingRuleIds (if any specified) are false.
|
|
655
|
+
* Firing rule IDs. A tag will fire when any of the listed rules are true and all of its blockingRuleIds (if any specified) are false.
|
|
656
656
|
*/
|
|
657
657
|
firingRuleId?: string[] | null;
|
|
658
658
|
/**
|
|
659
|
-
* Firing trigger IDs. A tag will fire when any of the listed triggers are true and all of its blockingTriggerIds (if any specified) are false.
|
|
659
|
+
* Firing trigger IDs. A tag will fire when any of the listed triggers are true and all of its blockingTriggerIds (if any specified) are false.
|
|
660
660
|
*/
|
|
661
661
|
firingTriggerId?: string[] | null;
|
|
662
662
|
/**
|
|
663
|
-
* If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode).
|
|
663
|
+
* If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode).
|
|
664
664
|
*/
|
|
665
665
|
liveOnly?: boolean | null;
|
|
666
666
|
/**
|
|
667
|
-
* Tag display name.
|
|
667
|
+
* Tag display name.
|
|
668
668
|
*/
|
|
669
669
|
name?: string | null;
|
|
670
670
|
/**
|
|
671
|
-
* User notes on how to apply this tag in the container.
|
|
671
|
+
* User notes on how to apply this tag in the container.
|
|
672
672
|
*/
|
|
673
673
|
notes?: string | null;
|
|
674
674
|
/**
|
|
675
|
-
* The tag's parameters.
|
|
675
|
+
* The tag's parameters.
|
|
676
676
|
*/
|
|
677
677
|
parameter?: Schema$Parameter[];
|
|
678
678
|
/**
|
|
@@ -680,19 +680,19 @@ export declare namespace tagmanager_v1 {
|
|
|
680
680
|
*/
|
|
681
681
|
parentFolderId?: string | null;
|
|
682
682
|
/**
|
|
683
|
-
* True if the tag is paused.
|
|
683
|
+
* True if the tag is paused.
|
|
684
684
|
*/
|
|
685
685
|
paused?: boolean | null;
|
|
686
686
|
/**
|
|
687
|
-
* User defined numeric priority of the tag. Tags are fired asynchronously in order of priority. Tags with higher numeric value fire first. A tag's priority can be a positive or negative value. The default value is 0.
|
|
687
|
+
* User defined numeric priority of the tag. Tags are fired asynchronously in order of priority. Tags with higher numeric value fire first. A tag's priority can be a positive or negative value. The default value is 0.
|
|
688
688
|
*/
|
|
689
689
|
priority?: Schema$Parameter;
|
|
690
690
|
/**
|
|
691
|
-
* The end timestamp in milliseconds to schedule a tag.
|
|
691
|
+
* The end timestamp in milliseconds to schedule a tag.
|
|
692
692
|
*/
|
|
693
693
|
scheduleEndMs?: string | null;
|
|
694
694
|
/**
|
|
695
|
-
* The start timestamp in milliseconds to schedule a tag.
|
|
695
|
+
* The start timestamp in milliseconds to schedule a tag.
|
|
696
696
|
*/
|
|
697
697
|
scheduleStartMs?: string | null;
|
|
698
698
|
/**
|
|
@@ -712,7 +712,7 @@ export declare namespace tagmanager_v1 {
|
|
|
712
712
|
*/
|
|
713
713
|
teardownTag?: Schema$TeardownTag[];
|
|
714
714
|
/**
|
|
715
|
-
* GTM Tag Type.
|
|
715
|
+
* GTM Tag Type.
|
|
716
716
|
*/
|
|
717
717
|
type?: string | null;
|
|
718
718
|
}
|
|
@@ -735,11 +735,11 @@ export declare namespace tagmanager_v1 {
|
|
|
735
735
|
*/
|
|
736
736
|
accountId?: string | null;
|
|
737
737
|
/**
|
|
738
|
-
* Used in the case of auto event tracking.
|
|
738
|
+
* Used in the case of auto event tracking.
|
|
739
739
|
*/
|
|
740
740
|
autoEventFilter?: Schema$Condition[];
|
|
741
741
|
/**
|
|
742
|
-
* Whether or not we should only fire tags if the form submit or link click event is not cancelled by some other event handler (e.g. because of validation). Only valid for Form Submission and Link Click triggers.
|
|
742
|
+
* Whether or not we should only fire tags if the form submit or link click event is not cancelled by some other event handler (e.g. because of validation). Only valid for Form Submission and Link Click triggers.
|
|
743
743
|
*/
|
|
744
744
|
checkValidation?: Schema$Parameter;
|
|
745
745
|
/**
|
|
@@ -747,19 +747,19 @@ export declare namespace tagmanager_v1 {
|
|
|
747
747
|
*/
|
|
748
748
|
containerId?: string | null;
|
|
749
749
|
/**
|
|
750
|
-
* A visibility trigger minimum continuous visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
750
|
+
* A visibility trigger minimum continuous visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
751
751
|
*/
|
|
752
752
|
continuousTimeMinMilliseconds?: Schema$Parameter;
|
|
753
753
|
/**
|
|
754
|
-
* Used in the case of custom event, which is fired iff all Conditions are true.
|
|
754
|
+
* Used in the case of custom event, which is fired iff all Conditions are true.
|
|
755
755
|
*/
|
|
756
756
|
customEventFilter?: Schema$Condition[];
|
|
757
757
|
/**
|
|
758
|
-
* Name of the GTM event that is fired. Only valid for Timer triggers.
|
|
758
|
+
* Name of the GTM event that is fired. Only valid for Timer triggers.
|
|
759
759
|
*/
|
|
760
760
|
eventName?: Schema$Parameter;
|
|
761
761
|
/**
|
|
762
|
-
* The trigger will only fire iff all Conditions are true.
|
|
762
|
+
* The trigger will only fire iff all Conditions are true.
|
|
763
763
|
*/
|
|
764
764
|
filter?: Schema$Condition[];
|
|
765
765
|
/**
|
|
@@ -767,31 +767,31 @@ export declare namespace tagmanager_v1 {
|
|
|
767
767
|
*/
|
|
768
768
|
fingerprint?: string | null;
|
|
769
769
|
/**
|
|
770
|
-
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled horizontally. Only valid for AMP scroll triggers.
|
|
770
|
+
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled horizontally. Only valid for AMP scroll triggers.
|
|
771
771
|
*/
|
|
772
772
|
horizontalScrollPercentageList?: Schema$Parameter;
|
|
773
773
|
/**
|
|
774
|
-
* Time between triggering recurring Timer Events (in milliseconds). Only valid for Timer triggers.
|
|
774
|
+
* Time between triggering recurring Timer Events (in milliseconds). Only valid for Timer triggers.
|
|
775
775
|
*/
|
|
776
776
|
interval?: Schema$Parameter;
|
|
777
777
|
/**
|
|
778
|
-
* Time between Timer Events to fire (in seconds). Only valid for AMP Timer trigger.
|
|
778
|
+
* Time between Timer Events to fire (in seconds). Only valid for AMP Timer trigger.
|
|
779
779
|
*/
|
|
780
780
|
intervalSeconds?: Schema$Parameter;
|
|
781
781
|
/**
|
|
782
|
-
* Limit of the number of GTM events this Timer Trigger will fire. If no limit is set, we will continue to fire GTM events until the user leaves the page. Only valid for Timer triggers.
|
|
782
|
+
* Limit of the number of GTM events this Timer Trigger will fire. If no limit is set, we will continue to fire GTM events until the user leaves the page. Only valid for Timer triggers.
|
|
783
783
|
*/
|
|
784
784
|
limit?: Schema$Parameter;
|
|
785
785
|
/**
|
|
786
|
-
* Max time to fire Timer Events (in seconds). Only valid for AMP Timer trigger.
|
|
786
|
+
* Max time to fire Timer Events (in seconds). Only valid for AMP Timer trigger.
|
|
787
787
|
*/
|
|
788
788
|
maxTimerLengthSeconds?: Schema$Parameter;
|
|
789
789
|
/**
|
|
790
|
-
* Trigger display name.
|
|
790
|
+
* Trigger display name.
|
|
791
791
|
*/
|
|
792
792
|
name?: string | null;
|
|
793
793
|
/**
|
|
794
|
-
* Additional parameters.
|
|
794
|
+
* Additional parameters.
|
|
795
795
|
*/
|
|
796
796
|
parameter?: Schema$Parameter[];
|
|
797
797
|
/**
|
|
@@ -799,11 +799,11 @@ export declare namespace tagmanager_v1 {
|
|
|
799
799
|
*/
|
|
800
800
|
parentFolderId?: string | null;
|
|
801
801
|
/**
|
|
802
|
-
* A click trigger CSS selector (i.e. "a", "button" etc.). Only valid for AMP Click trigger.
|
|
802
|
+
* A click trigger CSS selector (i.e. "a", "button" etc.). Only valid for AMP Click trigger.
|
|
803
803
|
*/
|
|
804
804
|
selector?: Schema$Parameter;
|
|
805
805
|
/**
|
|
806
|
-
* A visibility trigger minimum total visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
806
|
+
* A visibility trigger minimum total visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
807
807
|
*/
|
|
808
808
|
totalTimeMinMilliseconds?: Schema$Parameter;
|
|
809
809
|
/**
|
|
@@ -811,35 +811,35 @@ export declare namespace tagmanager_v1 {
|
|
|
811
811
|
*/
|
|
812
812
|
triggerId?: string | null;
|
|
813
813
|
/**
|
|
814
|
-
* Defines the data layer event that causes this trigger.
|
|
814
|
+
* Defines the data layer event that causes this trigger.
|
|
815
815
|
*/
|
|
816
816
|
type?: string | null;
|
|
817
817
|
/**
|
|
818
|
-
* Globally unique id of the trigger that auto-generates this (a Form Submit, Link Click or Timer listener) if any. Used to make incompatible auto-events work together with trigger filtering based on trigger ids. This value is populated during output generation since the tags implied by triggers don't exist until then. Only valid for Form Submit, Link Click and Timer triggers.
|
|
818
|
+
* Globally unique id of the trigger that auto-generates this (a Form Submit, Link Click or Timer listener) if any. Used to make incompatible auto-events work together with trigger filtering based on trigger ids. This value is populated during output generation since the tags implied by triggers don't exist until then. Only valid for Form Submit, Link Click and Timer triggers.
|
|
819
819
|
*/
|
|
820
820
|
uniqueTriggerId?: Schema$Parameter;
|
|
821
821
|
/**
|
|
822
|
-
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled vertically. Only valid for AMP scroll triggers.
|
|
822
|
+
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled vertically. Only valid for AMP scroll triggers.
|
|
823
823
|
*/
|
|
824
824
|
verticalScrollPercentageList?: Schema$Parameter;
|
|
825
825
|
/**
|
|
826
|
-
* A visibility trigger CSS selector (i.e. "#id"). Only valid for AMP Visibility trigger.
|
|
826
|
+
* A visibility trigger CSS selector (i.e. "#id"). Only valid for AMP Visibility trigger.
|
|
827
827
|
*/
|
|
828
828
|
visibilitySelector?: Schema$Parameter;
|
|
829
829
|
/**
|
|
830
|
-
* A visibility trigger maximum percent visibility. Only valid for AMP Visibility trigger.
|
|
830
|
+
* A visibility trigger maximum percent visibility. Only valid for AMP Visibility trigger.
|
|
831
831
|
*/
|
|
832
832
|
visiblePercentageMax?: Schema$Parameter;
|
|
833
833
|
/**
|
|
834
|
-
* A visibility trigger minimum percent visibility. Only valid for AMP Visibility trigger.
|
|
834
|
+
* A visibility trigger minimum percent visibility. Only valid for AMP Visibility trigger.
|
|
835
835
|
*/
|
|
836
836
|
visiblePercentageMin?: Schema$Parameter;
|
|
837
837
|
/**
|
|
838
|
-
* Whether or not we should delay the form submissions or link opening until all of the tags have fired (by preventing the default action and later simulating the default action). Only valid for Form Submission and Link Click triggers.
|
|
838
|
+
* Whether or not we should delay the form submissions or link opening until all of the tags have fired (by preventing the default action and later simulating the default action). Only valid for Form Submission and Link Click triggers.
|
|
839
839
|
*/
|
|
840
840
|
waitForTags?: Schema$Parameter;
|
|
841
841
|
/**
|
|
842
|
-
* How long to wait (in milliseconds) for tags to fire when 'waits_for_tags' above evaluates to true. Only valid for Form Submission and Link Click triggers.
|
|
842
|
+
* How long to wait (in milliseconds) for tags to fire when 'waits_for_tags' above evaluates to true. Only valid for Form Submission and Link Click triggers.
|
|
843
843
|
*/
|
|
844
844
|
waitForTagsTimeout?: Schema$Parameter;
|
|
845
845
|
}
|
|
@@ -848,7 +848,7 @@ export declare namespace tagmanager_v1 {
|
|
|
848
848
|
*/
|
|
849
849
|
export interface Schema$UserAccess {
|
|
850
850
|
/**
|
|
851
|
-
* GTM Account access permissions.
|
|
851
|
+
* GTM Account access permissions.
|
|
852
852
|
*/
|
|
853
853
|
accountAccess?: Schema$AccountAccess;
|
|
854
854
|
/**
|
|
@@ -856,11 +856,11 @@ export declare namespace tagmanager_v1 {
|
|
|
856
856
|
*/
|
|
857
857
|
accountId?: string | null;
|
|
858
858
|
/**
|
|
859
|
-
* GTM Container access permissions.
|
|
859
|
+
* GTM Container access permissions.
|
|
860
860
|
*/
|
|
861
861
|
containerAccess?: Schema$ContainerAccess[];
|
|
862
862
|
/**
|
|
863
|
-
* User's email address.
|
|
863
|
+
* User's email address.
|
|
864
864
|
*/
|
|
865
865
|
emailAddress?: string | null;
|
|
866
866
|
/**
|
|
@@ -881,11 +881,11 @@ export declare namespace tagmanager_v1 {
|
|
|
881
881
|
*/
|
|
882
882
|
containerId?: string | null;
|
|
883
883
|
/**
|
|
884
|
-
* For mobile containers only: A list of trigger IDs for disabling conditional variables; the variable is enabled if one of the enabling trigger is true while all the disabling trigger are false. Treated as an unordered set.
|
|
884
|
+
* For mobile containers only: A list of trigger IDs for disabling conditional variables; the variable is enabled if one of the enabling trigger is true while all the disabling trigger are false. Treated as an unordered set.
|
|
885
885
|
*/
|
|
886
886
|
disablingTriggerId?: string[] | null;
|
|
887
887
|
/**
|
|
888
|
-
* For mobile containers only: A list of trigger IDs for enabling conditional variables; the variable is enabled if one of the enabling triggers is true while all the disabling triggers are false. Treated as an unordered set.
|
|
888
|
+
* For mobile containers only: A list of trigger IDs for enabling conditional variables; the variable is enabled if one of the enabling triggers is true while all the disabling triggers are false. Treated as an unordered set.
|
|
889
889
|
*/
|
|
890
890
|
enablingTriggerId?: string[] | null;
|
|
891
891
|
/**
|
|
@@ -893,15 +893,15 @@ export declare namespace tagmanager_v1 {
|
|
|
893
893
|
*/
|
|
894
894
|
fingerprint?: string | null;
|
|
895
895
|
/**
|
|
896
|
-
* Variable display name.
|
|
896
|
+
* Variable display name.
|
|
897
897
|
*/
|
|
898
898
|
name?: string | null;
|
|
899
899
|
/**
|
|
900
|
-
* User notes on how to apply this variable in the container.
|
|
900
|
+
* User notes on how to apply this variable in the container.
|
|
901
901
|
*/
|
|
902
902
|
notes?: string | null;
|
|
903
903
|
/**
|
|
904
|
-
* The variable's parameters.
|
|
904
|
+
* The variable's parameters.
|
|
905
905
|
*/
|
|
906
906
|
parameter?: Schema$Parameter[];
|
|
907
907
|
/**
|
|
@@ -909,15 +909,15 @@ export declare namespace tagmanager_v1 {
|
|
|
909
909
|
*/
|
|
910
910
|
parentFolderId?: string | null;
|
|
911
911
|
/**
|
|
912
|
-
* The end timestamp in milliseconds to schedule a variable.
|
|
912
|
+
* The end timestamp in milliseconds to schedule a variable.
|
|
913
913
|
*/
|
|
914
914
|
scheduleEndMs?: string | null;
|
|
915
915
|
/**
|
|
916
|
-
* The start timestamp in milliseconds to schedule a variable.
|
|
916
|
+
* The start timestamp in milliseconds to schedule a variable.
|
|
917
917
|
*/
|
|
918
918
|
scheduleStartMs?: string | null;
|
|
919
919
|
/**
|
|
920
|
-
* GTM Variable Type.
|
|
920
|
+
* GTM Variable Type.
|
|
921
921
|
*/
|
|
922
922
|
type?: string | null;
|
|
923
923
|
/**
|