@maxim_mazurok/gapi.client.tagmanager-v2 0.2.20260626 → 0.3.20260629
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 +5 -68
- package/package.json +1 -1
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://tagmanager.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260629
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -43,10 +43,7 @@ declare namespace gapi.client {
|
|
|
43
43
|
interface AccountAccess {
|
|
44
44
|
/** Whether the user has no access, user access, or admin access to an account. */
|
|
45
45
|
permission?:
|
|
46
|
-
| '
|
|
47
|
-
| 'noAccess'
|
|
48
|
-
| 'user'
|
|
49
|
-
| 'admin';
|
|
46
|
+
'accountPermissionUnspecified' | 'noAccess' | 'user' | 'admin';
|
|
50
47
|
}
|
|
51
48
|
interface AccountFeatures {
|
|
52
49
|
/** Whether this Account supports multiple Containers. */
|
|
@@ -217,57 +214,6 @@ declare namespace gapi.client {
|
|
|
217
214
|
/** GTM Workspace ID. */
|
|
218
215
|
workspaceId?: string;
|
|
219
216
|
}
|
|
220
|
-
interface CompilerErrorLite {
|
|
221
|
-
errorMessage?: string;
|
|
222
|
-
errorType?:
|
|
223
|
-
| 'unknownErrorType'
|
|
224
|
-
| 'duplicateAutoEventName'
|
|
225
|
-
| 'duplicateConditionId'
|
|
226
|
-
| 'duplicateDefaultMacro'
|
|
227
|
-
| 'duplicateTagName'
|
|
228
|
-
| 'internalCompilerError'
|
|
229
|
-
| 'invalidMacroKey'
|
|
230
|
-
| 'invalidNumberPredicateArgs'
|
|
231
|
-
| 'invalidMacroFormat'
|
|
232
|
-
| 'invalidMacroNameReference'
|
|
233
|
-
| 'invalidMacroParameter'
|
|
234
|
-
| 'invalidUsageContext'
|
|
235
|
-
| 'invalidRegex'
|
|
236
|
-
| 'macroCycle'
|
|
237
|
-
| 'unknownConditionId'
|
|
238
|
-
| 'unknownMacroInstance'
|
|
239
|
-
| 'invalidManualEscaping'
|
|
240
|
-
| 'invalidHtmlCssJs'
|
|
241
|
-
| 'macroInCommentsError'
|
|
242
|
-
| 'jsCompilerError'
|
|
243
|
-
| 'jsonError'
|
|
244
|
-
| 'invalidTagParameter'
|
|
245
|
-
| 'javascriptTooLong'
|
|
246
|
-
| 'unknownTagInstance'
|
|
247
|
-
| 'invalidTagReference'
|
|
248
|
-
| 'unknownTriggerId'
|
|
249
|
-
| 'customTriggerMissingEventFilter'
|
|
250
|
-
| 'duplicateTriggerId'
|
|
251
|
-
| 'unsupportedTriggerType'
|
|
252
|
-
| 'invalidTriggerParameter'
|
|
253
|
-
| 'duplicateExperimentId'
|
|
254
|
-
| 'pixieCompilerError'
|
|
255
|
-
| 'macroNotServerSideResolvable'
|
|
256
|
-
| 'invalidBlockingTrigger'
|
|
257
|
-
| 'lineTooLong'
|
|
258
|
-
| 'invalidTypeInSelect'
|
|
259
|
-
| 'gaExperimentMacroIsDeprecated'
|
|
260
|
-
| 'unsafeHtmlContent'
|
|
261
|
-
| 'unsafeHtmlAttributeValue'
|
|
262
|
-
| 'unsafeCssContent'
|
|
263
|
-
| 'parameterReferenceNotFound'
|
|
264
|
-
| 'invalidCustomTemplateRuntimeCode'
|
|
265
|
-
| 'conflictingDestinationRouting'
|
|
266
|
-
| 'missingRequiredActivity'
|
|
267
|
-
| 'unresolvableDestinationTag'
|
|
268
|
-
| 'invalidDestinationTag'
|
|
269
|
-
| 'tosRequiredForThirdPartyTags';
|
|
270
|
-
}
|
|
271
217
|
interface Condition {
|
|
272
218
|
/** 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. */
|
|
273
219
|
parameter?: Parameter[];
|
|
@@ -449,8 +395,6 @@ declare namespace gapi.client {
|
|
|
449
395
|
interface CreateContainerVersionResponse {
|
|
450
396
|
/** Compiler errors or not. */
|
|
451
397
|
compilerError?: boolean;
|
|
452
|
-
/** Compiler error details. */
|
|
453
|
-
compilerErrors?: CompilerErrorLite[];
|
|
454
398
|
/** The container version created. */
|
|
455
399
|
containerVersion?: ContainerVersion;
|
|
456
400
|
/** Auto generated workspace path created as a result of version creation. This field should only be populated if the created version was not a quick preview. */
|
|
@@ -503,11 +447,7 @@ declare namespace gapi.client {
|
|
|
503
447
|
builtInVariable?: BuiltInVariable;
|
|
504
448
|
/** Represents how the entity has been changed in the workspace. */
|
|
505
449
|
changeStatus?:
|
|
506
|
-
| '
|
|
507
|
-
| 'none'
|
|
508
|
-
| 'added'
|
|
509
|
-
| 'deleted'
|
|
510
|
-
| 'updated';
|
|
450
|
+
'changeStatusUnspecified' | 'none' | 'added' | 'deleted' | 'updated';
|
|
511
451
|
/** The client being represented by the entity. */
|
|
512
452
|
client?: Client;
|
|
513
453
|
/** The custom template being represented by the entity. */
|
|
@@ -776,16 +716,12 @@ declare namespace gapi.client {
|
|
|
776
716
|
interface PublishContainerVersionResponse {
|
|
777
717
|
/** Compiler errors or not. */
|
|
778
718
|
compilerError?: boolean;
|
|
779
|
-
/** Compiler error details. */
|
|
780
|
-
compilerErrors?: CompilerErrorLite[];
|
|
781
719
|
/** The container version created. */
|
|
782
720
|
containerVersion?: ContainerVersion;
|
|
783
721
|
}
|
|
784
722
|
interface QuickPreviewResponse {
|
|
785
723
|
/** Were there compiler errors or not. */
|
|
786
724
|
compilerError?: boolean;
|
|
787
|
-
/** Compiler error details. */
|
|
788
|
-
compilerErrors?: CompilerErrorLite[];
|
|
789
725
|
/** The quick previewed container version. */
|
|
790
726
|
containerVersion?: ContainerVersion;
|
|
791
727
|
/** Whether quick previewing failed when syncing the workspace to the latest container version. */
|
|
@@ -1098,7 +1034,8 @@ declare namespace gapi.client {
|
|
|
1098
1034
|
/** The option to convert a variable value to a boolean. */
|
|
1099
1035
|
convertToBoolean?: boolean;
|
|
1100
1036
|
/** The option to convert a variable value to a number. */
|
|
1101
|
-
convertToNumber?:
|
|
1037
|
+
convertToNumber?:
|
|
1038
|
+
'decimalSeparatorTypeUnspecified' | 'period' | 'comma' | 'automatic';
|
|
1102
1039
|
/** The value to convert if a variable value is true. */
|
|
1103
1040
|
convertTrueToValue?: Parameter;
|
|
1104
1041
|
/** The value to convert if a variable value is undefined. */
|