@maxim_mazurok/gapi.client.tagmanager-v2 0.2.20260626 → 0.3.20260626
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 +2 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -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. */
|
|
@@ -503,11 +500,7 @@ declare namespace gapi.client {
|
|
|
503
500
|
builtInVariable?: BuiltInVariable;
|
|
504
501
|
/** Represents how the entity has been changed in the workspace. */
|
|
505
502
|
changeStatus?:
|
|
506
|
-
| '
|
|
507
|
-
| 'none'
|
|
508
|
-
| 'added'
|
|
509
|
-
| 'deleted'
|
|
510
|
-
| 'updated';
|
|
503
|
+
'changeStatusUnspecified' | 'none' | 'added' | 'deleted' | 'updated';
|
|
511
504
|
/** The client being represented by the entity. */
|
|
512
505
|
client?: Client;
|
|
513
506
|
/** The custom template being represented by the entity. */
|