@maxim_mazurok/gapi.client.cloudsupport-v2 0.0.20231213 → 0.0.20231219
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 +4 -2
- 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://cloudsupport.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -27,10 +27,12 @@ declare namespace gapi.client {
|
|
|
27
27
|
interface Actor {
|
|
28
28
|
/** The name to display for the actor. If not provided, it is inferred from credentials supplied during case creation. When an email is provided, a display name must also be provided. This will be obfuscated if the user is a Google Support agent. */
|
|
29
29
|
displayName?: string;
|
|
30
|
-
/** The email address of the actor. If not provided, it is inferred from credentials supplied during case creation.
|
|
30
|
+
/** The email address of the actor. If not provided, it is inferred from the credentials supplied during case creation. When a name is provided, an email must also be provided. If the user is a Google Support agent, this is obfuscated. This field is deprecated. Use **username** field instead. */
|
|
31
31
|
email?: string;
|
|
32
32
|
/** Output only. Whether the actor is a Google support actor. */
|
|
33
33
|
googleSupport?: boolean;
|
|
34
|
+
/** Output only. The username of the actor. It may look like an email or other format provided by the identity provider. If not provided, it is inferred from the credentials supplied. When a name is provided, a username must also be provided. If the user is a Google Support agent, this will not be set. */
|
|
35
|
+
username?: string;
|
|
34
36
|
}
|
|
35
37
|
interface Attachment {
|
|
36
38
|
/** Output only. The time at which the attachment was created. */
|