@googleapis/tagmanager 4.1.1 → 5.0.1
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 +25 -0
- package/build/v1.js +49 -0
- package/build/v1.js.map +1 -1
- package/build/v2.d.ts +18 -2
- package/build/v2.js +104 -0
- package/build/v2.js.map +1 -1
- package/package.json +1 -1
- package/v1.ts +49 -0
- package/v2.ts +122 -2
package/build/v2.d.ts
CHANGED
|
@@ -627,6 +627,10 @@ export declare namespace tagmanager_v2 {
|
|
|
627
627
|
* A workspace entity that may represent a tag, trigger, variable, or folder in addition to its status in the workspace.
|
|
628
628
|
*/
|
|
629
629
|
export interface Schema$Entity {
|
|
630
|
+
/**
|
|
631
|
+
* The built in variable being represented by the entity.
|
|
632
|
+
*/
|
|
633
|
+
builtInVariable?: Schema$BuiltInVariable;
|
|
630
634
|
/**
|
|
631
635
|
* Represents how the entity has been changed in the workspace.
|
|
632
636
|
*/
|
|
@@ -635,10 +639,18 @@ export declare namespace tagmanager_v2 {
|
|
|
635
639
|
* The client being represented by the entity.
|
|
636
640
|
*/
|
|
637
641
|
client?: Schema$Client;
|
|
642
|
+
/**
|
|
643
|
+
* The custom template being represented by the entity.
|
|
644
|
+
*/
|
|
645
|
+
customTemplate?: Schema$CustomTemplate;
|
|
638
646
|
/**
|
|
639
647
|
* The folder being represented by the entity.
|
|
640
648
|
*/
|
|
641
649
|
folder?: Schema$Folder;
|
|
650
|
+
/**
|
|
651
|
+
* The gtag config being represented by the entity.
|
|
652
|
+
*/
|
|
653
|
+
gtagConfig?: Schema$GtagConfig;
|
|
642
654
|
/**
|
|
643
655
|
* The tag being represented by the entity.
|
|
644
656
|
*/
|
|
@@ -655,6 +667,10 @@ export declare namespace tagmanager_v2 {
|
|
|
655
667
|
* The variable being represented by the entity.
|
|
656
668
|
*/
|
|
657
669
|
variable?: Schema$Variable;
|
|
670
|
+
/**
|
|
671
|
+
* The zone being represented by the entity.
|
|
672
|
+
*/
|
|
673
|
+
zone?: Schema$Zone;
|
|
658
674
|
}
|
|
659
675
|
/**
|
|
660
676
|
* Represents a Google Tag Manager Environment. Note that a user can create, delete and update environments of type USER, but can only update the enable_debug and url fields of environments of other types.
|
|
@@ -1093,7 +1109,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1093
1109
|
*/
|
|
1094
1110
|
export interface Schema$Parameter {
|
|
1095
1111
|
/**
|
|
1096
|
-
* Whether or not a reference type parameter is strongly or weakly referenced. @mutable tagmanager.accounts.containers.workspaces.transformations.create @mutable tagmanager.accounts.containers.workspaces.transformations.update
|
|
1112
|
+
* Whether or not a reference type parameter is strongly or weakly referenced. Only used by Transformations. @mutable tagmanager.accounts.containers.workspaces.transformations.create @mutable tagmanager.accounts.containers.workspaces.transformations.update
|
|
1097
1113
|
*/
|
|
1098
1114
|
isWeakReference?: boolean | null;
|
|
1099
1115
|
/**
|
|
@@ -3145,7 +3161,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3145
3161
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Folders$List, callback: BodyResponseCallback<Schema$ListFoldersResponse>): void;
|
|
3146
3162
|
list(callback: BodyResponseCallback<Schema$ListFoldersResponse>): void;
|
|
3147
3163
|
/**
|
|
3148
|
-
* Moves entities to a GTM Folder.
|
|
3164
|
+
* Moves entities to a GTM Folder. If {folder_id\} in the request path equals 0, this will instead move entities out of the folder they currently belong to.
|
|
3149
3165
|
*
|
|
3150
3166
|
* @param params - Parameters for request
|
|
3151
3167
|
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
|