Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
873 changes: 453 additions & 420 deletions types/google-apps-script/apis/adsense_v1_4.d.ts

Large diffs are not rendered by default.

2,982 changes: 1,647 additions & 1,335 deletions types/google-apps-script/apis/analytics_v3.d.ts

Large diffs are not rendered by default.

700 changes: 351 additions & 349 deletions types/google-apps-script/apis/analyticsreporting_v4.d.ts

Large diffs are not rendered by default.

144 changes: 72 additions & 72 deletions types/google-apps-script/apis/appsactivity_v1.d.ts
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
declare namespace GoogleAppsScript {
namespace Appsactivity {
namespace Collection {
interface ActivitiesCollection {
// Returns a list of activities visible to the current logged in user. Visible activities are determined by the visiblity settings of the object that was acted on, e.g. Drive files a user can see. An activity is a record of past events. Multiple events may be merged if they are similar. A request is scoped to activities from a given Google service using the source parameter.
list(): Appsactivity.Schema.ListActivitiesResponse;
// Returns a list of activities visible to the current logged in user. Visible activities are determined by the visiblity settings of the object that was acted on, e.g. Drive files a user can see. An activity is a record of past events. Multiple events may be merged if they are similar. A request is scoped to activities from a given Google service using the source parameter.
list(optionalArgs: object): Appsactivity.Schema.ListActivitiesResponse;
}
namespace Appsactivity {
namespace Collection {
interface ActivitiesCollection {
// Returns a list of activities visible to the current logged in user. Visible activities are determined by the visiblity settings of the object that was acted on, e.g. Drive files a user can see. An activity is a record of past events. Multiple events may be merged if they are similar. A request is scoped to activities from a given Google service using the source parameter.
list(): Appsactivity.Schema.ListActivitiesResponse;
// Returns a list of activities visible to the current logged in user. Visible activities are determined by the visiblity settings of the object that was acted on, e.g. Drive files a user can see. An activity is a record of past events. Multiple events may be merged if they are similar. A request is scoped to activities from a given Google service using the source parameter.
list(optionalArgs: object): Appsactivity.Schema.ListActivitiesResponse;
}
}
namespace Schema {
interface Activity {
combinedEvent?: Appsactivity.Schema.Event | undefined;
singleEvents?: Appsactivity.Schema.Event[] | undefined;
}
interface Event {
additionalEventTypes?: string[] | undefined;
eventTimeMillis?: string | undefined;
fromUserDeletion?: boolean | undefined;
move?: Appsactivity.Schema.Move | undefined;
permissionChanges?: Appsactivity.Schema.PermissionChange[] | undefined;
primaryEventType?: string | undefined;
rename?: Appsactivity.Schema.Rename | undefined;
target?: Appsactivity.Schema.Target | undefined;
user?: Appsactivity.Schema.User | undefined;
}
interface ListActivitiesResponse {
activities?: Appsactivity.Schema.Activity[] | undefined;
nextPageToken?: string | undefined;
}
interface Move {
addedParents?: Appsactivity.Schema.Parent[] | undefined;
removedParents?: Appsactivity.Schema.Parent[] | undefined;
}
interface Parent {
id?: string | undefined;
isRoot?: boolean | undefined;
title?: string | undefined;
}
interface Permission {
name?: string | undefined;
permissionId?: string | undefined;
role?: string | undefined;
type?: string | undefined;
user?: Appsactivity.Schema.User | undefined;
withLink?: boolean | undefined;
}
interface PermissionChange {
addedPermissions?: Appsactivity.Schema.Permission[] | undefined;
removedPermissions?: Appsactivity.Schema.Permission[] | undefined;
}
interface Photo {
url?: string | undefined;
}
interface Rename {
newTitle?: string | undefined;
oldTitle?: string | undefined;
}
interface Target {
id?: string | undefined;
mimeType?: string | undefined;
name?: string | undefined;
}
interface User {
isDeleted?: boolean | undefined;
isMe?: boolean | undefined;
name?: string | undefined;
permissionId?: string | undefined;
photo?: Appsactivity.Schema.Photo | undefined;
}
}
}
namespace Schema {
interface Activity {
combinedEvent?: Appsactivity.Schema.Event | undefined;
singleEvents?: Appsactivity.Schema.Event[] | undefined;
}
interface Event {
additionalEventTypes?: string[] | undefined;
eventTimeMillis?: string | undefined;
fromUserDeletion?: boolean | undefined;
move?: Appsactivity.Schema.Move | undefined;
permissionChanges?: Appsactivity.Schema.PermissionChange[] | undefined;
primaryEventType?: string | undefined;
rename?: Appsactivity.Schema.Rename | undefined;
target?: Appsactivity.Schema.Target | undefined;
user?: Appsactivity.Schema.User | undefined;
}
interface ListActivitiesResponse {
activities?: Appsactivity.Schema.Activity[] | undefined;
nextPageToken?: string | undefined;
}
interface Move {
addedParents?: Appsactivity.Schema.Parent[] | undefined;
removedParents?: Appsactivity.Schema.Parent[] | undefined;
}
interface Parent {
id?: string | undefined;
isRoot?: boolean | undefined;
title?: string | undefined;
}
interface Permission {
name?: string | undefined;
permissionId?: string | undefined;
role?: string | undefined;
type?: string | undefined;
user?: Appsactivity.Schema.User | undefined;
withLink?: boolean | undefined;
}
interface PermissionChange {
addedPermissions?: Appsactivity.Schema.Permission[] | undefined;
removedPermissions?: Appsactivity.Schema.Permission[] | undefined;
}
interface Photo {
url?: string | undefined;
}
interface Rename {
newTitle?: string | undefined;
oldTitle?: string | undefined;
}
interface Target {
id?: string | undefined;
mimeType?: string | undefined;
name?: string | undefined;
}
interface User {
isDeleted?: boolean | undefined;
isMe?: boolean | undefined;
name?: string | undefined;
permissionId?: string | undefined;
photo?: Appsactivity.Schema.Photo | undefined;
}
interface Appsactivity {
Activities?: Appsactivity.Collection.ActivitiesCollection | undefined;
}
}
interface Appsactivity {
Activities?: Appsactivity.Collection.ActivitiesCollection | undefined;
}
}

declare var Appsactivity: GoogleAppsScript.Appsactivity;
Loading