forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gapi.urlshortener.d.ts
146 lines (139 loc) · 4.6 KB
/
gapi.urlshortener.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Type definitions for Google Url Shortener API
// Project: https://developers.google.com/url-shortener/
// Definitions by: Frank M <https://github.com/sgtfrankieboy>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../gapi/gapi.d.ts" />
declare module gapi.client.urlshortener {
export interface url {
/**
* Expands a short URL or gets creation time and analytics.
*/
get(object: {
/**
* The short URL, including the protocol.
*/
'shortUrl': string;
/**
* Additional information to return. ANALYTICS_CLICKS, ANALYTICS_TOP_STRINGS, FULL
*/
'projection'?: string;
/**
* Selector specifying which fields to include in a partial response.
*/
'fields'?: string
}): HttpRequest<GoogleApiUrlShortenerUrlResource>;
/**
* Creates a new short URL.
*/
insert(object: {
/**
* Selector specifying which fields to include in a partial response.
*/
'fields'?: string;
/**
* HTTP Request Body
*/
'RequestBody'?: string
}): HttpRequest<GoogleApiUrlShortenerUrlResource>;
/**
* Retrieves a list of URLs shortened by a user.
*/
list(object: {
/**
* Additional information to return. ANALYTICS_CLICKS, FULL
*/
'projection'?: string;
/**
* Token for requesting successive pages of results.
*/
'start-token'?: string;
/**
* Selector specifying which fields to include in a partial response.
*/
'fields'?: string
}): HttpRequest<GoogleApiUrlShortenerUrlResource>;
}
}
interface GoogleApiUrlShortenerUrlResource {
/**
* The fixed string "urlshortener#url".
*/
kind: string;
/**
* Short URL
*/
id: string;
/**
* Long URL
*/
longUrl: string;
/**
* Status of the target URL. Possible values: "OK", "MALWARE", "PHISHING", or "REMOVED".
*/
status: string;
/**
* Time the short URL was created; ISO 8601 representation using the yyyy-MM-dd'T'HH:mm:ss.SSSZZ format.
*/
created: string;
/**
* A summary of the click analytics for the short and long URL. Might not be present if not requested or currently unavailable.
*/
analytics: {
/**
* Click analytics over all time.
*/
allTime: GoogleApiUrlShortenerUrlResourceAnalyticsObject;
/**
* Click analytics over the last month.
*/
month: GoogleApiUrlShortenerUrlResourceAnalyticsObject;
/**
* Click analytics over the last week.
*/
week: GoogleApiUrlShortenerUrlResourceAnalyticsObject;
/**
* Click analytics over the last day.
*/
day: GoogleApiUrlShortenerUrlResourceAnalyticsObject;
/**
* Click analytics over the last two hours.
*/
twoHours: GoogleApiUrlShortenerUrlResourceAnalyticsObject;
}
}
interface GoogleApiUrlShortenerUrlResourceAnalyticsObject {
/**
* Number of clicks on this short URL.
*/
shortUrlClicks: string;
/**
* Number of clicks on all goo.gl short URLs pointing to this long URL.
*/
longUrlClicks: string;
/**
* Top referring hosts, e.g. "www.google.com"; sorted by (descending) click counts. Only present if this data is available.
*/
referrers: GoogleApiUrlShortenerUrlResourceAnalyticsArrayObject[];
/**
* Top countries (expressed as country codes), e.g. "US" or "DE"; sorted by (descending) click counts. Only present if this data is available.
*/
countries: GoogleApiUrlShortenerUrlResourceAnalyticsArrayObject[];
/**
* Top browsers, e.g. "Chrome"; sorted by (descending) click counts. Only present if this data is available.
*/
browsers: GoogleApiUrlShortenerUrlResourceAnalyticsArrayObject[];
/**
* Top platforms or OSes, e.g. "Windows"; sorted by (descending) click counts. Only present if this data is available.
*/
platforms: GoogleApiUrlShortenerUrlResourceAnalyticsArrayObject[];
}
interface GoogleApiUrlShortenerUrlResourceAnalyticsArrayObject {
/**
* Number of clicks for this top entry, e.g. for this particular country or browser.
*/
count: string;
/**
* Label assigned to this top entry, e.g. "US" or "Chrome".
*/
id: string;
}