-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
1441 lines (1258 loc) · 35.4 KB
/
index.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* TypeScript type definitions for Facebook Graph API version 2.8
* https://developers.facebook.com/docs/graph-api/reference
*
* Definitions by: Alex Siman https://github.com/siman
*/
declare module FbGraphApi {
export type FbDateTime = string;
export type FbProfile =
FbUser | FbPage | FbGroup | FbEvent | FbApp;
export type FbPrivacy =
"CLOSED" | "OPEN" | "SECRET";
export type FbAlbumType =
"app" | "cover" | "profile" | "mobile" | "wall" | "normal" | "album";
export type FbEntityAtTextRangeType =
"user" | "page" | "event" | "group" | "application";
export type FbPriceRange =
"$" | "$$" | "$$$" | "$$$$" | "Unspecified";
export type FbVideoStatusEnum =
"ready" | "processing" | "error";
export type FbAppSupportedPlatforms =
"WEB" | "CANVAS" | "MOBILE_WEB" | "IPHONE" | "IPAD" | "ANDROID" | "WINDOWS" |
"AMAZON" | "SUPPLEMENTARY_IMAGES" | "GAMEROOM";
/** Fields for a Facebook User */
export interface FbUser {
/** The ID of this person's user account. This ID is unique to each app and
* cannot be used across different apps. Our upgrade guide provides more
* information about app-specific IDs */
id: string;
/** @deprecated Returns no data as of April 4, 2018. */
about: string;
/** The User's address. */
address: FbLocation;
/** Notes added by viewing page on this User. */
admin_notes: FbPageAdminNote[];
/** The age segment for this person expressed as a minimum and maximum age.
* For example, more than 18, less than 21. */
age_range: FbAgeRange;
/** The authentication method a Workplace User has configured for their
* account. It can be either "password" or "sso". */
auth_method: 'password' | 'sso';
/** The person's birthday. This is a fixed format string, like MM/DD/YYYY.
* However, people can control who can see the year they were born
* separately from the month and day so this string can be only the year
* (YYYY) or the month + day (MM/DD) */
birthday: string;
/** Can the person review brand polls */
can_review_measurement_request: boolean;
context: FbUserContext;
/** @deprecated The person's cover photo */
cover: FbCoverPhoto;
/** @deprecated The person's local currency information */
currency: FbCurrency;
/** @deprecated The list of devices the person is using. This will return
* only iOS and Android devices */
devices: FbUserDevice[];
/** @deprecated Returns no data as of April 4, 2018. */
education: FbEducationExperience[];
/** The User's primary email address listed on their profile. This field
* will not be returned if no valid email address is available. */
email: string;
employee_number: string;
/** Athletes the User likes. */
favorite_athletes: FbExperience[];
/** Sports teams the User likes. */
favorite_teams: FbExperience[];
/** The person's first name */
first_name: string;
/** The gender selected by this person, male or female. If the gender is set
* to a custom value, this value will be based off of the preferred pronoun;
* it will be omitted if the preferred pronoun is neutral */
gender: string;
/** The person's hometown */
hometown: FbPage;
/** The person's inspirational people */
inspirational_people: FbExperience[];
/** Install type (this is an enum, presumably a string enum, but its values
* are not documented) */
install_type: string;
/** Is the app making the request installed */
installed: boolean;
/** @deprecated Returns no data as of April 4, 2018. */
interested_in: string[];
/** If the user has used FAME deeplinking */
is_famedeeplinkinguser: boolean;
/** @deprecated Is the user eligible for messenger platform payment */
is_payment_enabled: boolean;
/** Is this a shared login (e.g. a gray user) */
is_shared_login: boolean;
/** @deprecated People with large numbers of followers can have the
* authenticity of their identity manually verified by Facebook. This field
* indicates whether the person's profile is verified in this way. This is
* distinct from the verified field */
is_verified: boolean;
/** Labels applied by viewing page on this person */
labels: FbPageLabel[];
/** Facebook Pages representing the languages this person knows */
languages: FbExperience[];
/** @deprecated Last Ad referral for the user. */
last_ad_referral: FbMessengerPlatformReferral;
/** The person's last name */
last_name: string;
/** A link to the person's Timeline. The link will only resolve if the
* person clicking the link is logged into Facebook and is a friend of the
* person whose profile is being viewed. */
link: string;
/** @deprecated Display megaphone for local news bookmark */
local_news_megaphone_dismiss_status: boolean;
/** @deprecated Daily local news notification */
local_news_subscription_status: boolean;
/** @deprecated The person's locale */
locale: string;
/** The person's current location as entered by them on their profile. This
* field is not related to check-ins */
location: FbPage;
/** What the person is interested in meeting for */
meeting_for: string[];
/** The person's middle name */
middle_name: string;
/** The person's full name */
name: string;
/** The person's name formatted to correctly handle Chinese, Japanese, or
* Korean ordering */
name_format: string;
/** The person's payment pricepoints */
payment_pricepoints: FbPaymentPricepoints;
/** @deprecated Returns no data as of April 4, 2018. */
political: string;
/** The profile picture URL of the Messenger user. The URL will expire. */
profile_pic: string;
/** The person's PGP public key */
public_key: string;
/** The person's favorite quotes */
quotes: string;
/** @deprecated Returns no data as of April 4, 2018. */
relationship_status: string;
/** @deprecated Returns no data as of April 4, 2018. */
religion: string;
/** Security settings */
security_settings: FbSecuritySettings;
/** The time that the shared login needs to be upgraded to Business Manager
* by. Will be ISO-8601 string format, or UNIX epoch format if
* `date_format=U` used in Graph API call. */
shared_login_upgrade_required_by: FbDateTime;
/** Shortened, locale-aware name for the person */
short_name: string;
/** The person's significant other */
significant_other: FbUser;
/** Sports played by the person */
sports: FbExperience[];
/** Platform test group (this is an unsigned, 32-bit integer) */
test_group: number;
/** @deprecated A string containing an anonymous, unique identifier for the
* User, for use with third-parties. Deprecated for versions 3.0+. Apps
* using older versions of the API can get this field until January 8, 2019.
* Apps installed by the User on or after May 1st, 2018, cannot get this
* field. */
third_party_id: string;
/** @deprecated The person's current timezone offset from UTC (range: -24 to
* 24) */
timezone: number;
/** A token that is the same across a business's apps. Access to this token
* requires that the person be logged into your app or have a role on your
* app. This token will change if the business owning the app changes */
token_for_business: string;
/** @deprecated Updated time. Will be ISO-8601 string format, or UNIX epoch
* format if `date_format=U` used in Graph API call. */
updated_time: FbDateTime;
/** @deprecated Indicates whether the account has been verified. This is
* distinct from the `is_verified` field. Someone is considered verified if
* they take any of the following actions: Register for mobile; Confirm
* their account via SMS; Enter a valid credit card */
verified: boolean;
/** Video upload limits */
video_upload_limits: FbVideoUploadLimits;
/** Can the viewer send a gift to this person? */
viewer_can_send_gift: boolean;
/** @deprecated Returns no data as of April 4, 2018. */
website: string;
/** @deprecated Returns no data as of April 4, 2018. */
work: FbWorkExperience[];
}
export interface FbMessengerPlatformReferral {
ad_id: string,
id: string,
ref: string,
source: string,
type: string,
}
export interface FbWorkExperience {
id: string;
description: string;
employer: FbPage;
end_date: string;
from: FbUser;
location: FbPage;
position: FbPage;
projects: FbProjectExperience[];
start_date: string;
with: FbUser[];
}
export interface FbProjectExperience {
id: string;
description: string;
end_date: string;
from: FbUser;
name: string;
start_date: string;
with: FbUser[];
}
export interface FbVideoUploadLimits {
length: number;
size: number;
}
export interface FbSecuritySettings {
secure_browsing: FbSecureBrowsing;
}
export interface FbSecureBrowsing {
enabled: boolean;
}
export interface FbPaymentPricepoints {
mobile: FbPaymentPricepoint[];
}
export interface FbPaymentPricepoint {
credits: number;
local_currency: string;
user_price: string;
}
export interface FbPageLabel {
creation_time: FbDateTime;
creator_id: FbProfile;
from: FbPage;
id: string;
name: string;
}
export interface FbPageInsights {
period: "day" | "week" | "days_28" | "month" | "lifetime"
metric: any[]
since: FbDateTime
until: FbDateTime
}
export interface FbExperience {
id: string;
description: string;
from: FbUser;
name: string;
with: FbUser[];
}
export interface FbEducationExperience {
id: string;
classes: FbExperience[];
concentration: FbPage[];
degree: FbPage;
school: FbPage;
type: string;
with: FbUser[];
year: FbPage;
}
export interface FbUserDevice {
hardware: string;
os: string;
}
export interface FbCurrency {
currency_offset: number;
usd_exchange: number;
usd_exchange_inverse: number;
user_currency: string;
}
export interface FbUserContext {
id: string;
}
export interface FbPageAdminNote {
body: string;
from: FbPage;
id: string;
user: FbUser;
}
export interface FbAgeRange {
max: number;
min: number;
}
export interface FbPage {
id: string;
about: string;
access_token: string;
ad_campaign: FbAdCampaign;
affiliation: string;
app_id: string;
app_links: FbAppLinks;
artists_we_like: string;
attire: string;
awards: string;
band_interests: string;
band_members: string;
best_page: FbPage;
bio: string;
birthday: string;
booking_agent: string;
built: string;
business: any; // Undocumented type.
can_checkin: boolean;
can_post: boolean;
category: string;
category_list: FbPageCategory[];
checkins: number;
company_overview: string;
contact_address: FbMailingAddress;
context: FbOpenGraphContext;
country_page_likes: number;
cover: FbCoverPhoto;
culinary_team: string;
current_location: string;
description: string;
description_html: string;
directed_by: string;
display_subtext: string;
displayed_message_response_time: string;
emails: string[];
engagement: FbEngagement[]
fan_count: number;
featured_video: FbVideo;
features: string;
food_styles: string[];
founded: string;
general_info: string;
general_manager: string;
genre: string;
global_brand_page_name: string;
global_brand_root_id: string;
has_added_app: boolean;
hometown: string;
hours: Map<string, string>;
impressum: string;
influences: string;
instant_articles_review_status: string;
is_always_open: boolean;
is_community_page: boolean;
is_permanently_closed: boolean;
is_published: boolean;
is_unclaimed: boolean;
is_verified: boolean;
is_webhooks_subscribed: boolean;
leadgen_form_preview_details: any; // Undocumented type: LeadGenFormPreviewDetails.
leadgen_tos_acceptance_time: FbDateTime;
leadgen_tos_accepted: boolean;
leadgen_tos_accepting_user: FbUser;
link: string;
location: FbLocation;
members: string;
merchant_id: string;
merchant_review_status: string;
mission: string;
mpg: string;
name: string;
name_with_location_descriptor: string;
network: string;
new_like_count: string;
offer_eligible: boolean;
overall_star_rating: number;
parent_page: FbPage;
parking: FbPageParking;
payment_options: FbPagePaymentOptions;
personal_info: string;
personal_interests: string;
pharma_safety_info: string;
phone: string;
place_type: string;
plot_outline: string;
preferred_audience: FbTargeting;
press_contact: string;
price_range: FbPriceRange;
produced_by: string;
products: string;
promotion_eligible: boolean;
promotion_ineligible_reason: string;
public_transit: string;
publisher_space: any; // Undocumented type: PublisherSpace.
rating_count: number;
recipient: string;
record_label: string;
release_date: string;
restaurant_services: FbPageRestaurantServices;
restaurant_specialties: FbPageRestaurantSpecialties;
schedule: string;
screenplay_by: string;
season: string;
single_line_address: string;
starring: string;
start_info: FbPageStartInfo;
store_location_descriptor: string;
store_number: number;
studio: string;
supports_instant_articles: boolean;
talking_about_count: number;
unread_message_count: number;
unread_notif_count: number;
unseen_message_count: number;
username: string;
verification_status: string;
voip_info: FbVoipInfo;
website: string;
were_here_count: number;
written_by: string;
}
export interface FbVoipInfo {
has_mobile_app: boolean;
has_permission: boolean;
is_callable: boolean;
is_callable_webrtc: boolean;
is_pushable: boolean;
reason_code: number;
reason_description: string;
}
export interface FbPageStartInfo {
date: FbPageStartDate;
type: string;
}
export interface FbPageStartDate {
day: number;
month: number;
year: number;
}
// TODO check number vs bool (use API explorer)
export interface FbPageRestaurantSpecialties {
breakfast: number;
coffee: number;
dinner: number;
drinks: number;
lunch: number;
}
// TODO check number vs bool (use API explorer)
export interface FbPageRestaurantServices {
catering: number;
delivery: number;
groups: number;
kids: number;
outdoor: number;
pickup: number;
reserve: number;
takeout: number;
waiter: number;
walkins: number;
}
/**
* See:
* https://developers.facebook.com/docs/marketing-api/targeting-specs/v2.8
* https://github.com/facebook/facebook-php-ads-sdk/tree/master/src/FacebookAds/Object
*/
export interface FbTargeting {
// TODO impl: big complex object
}
// TODO check number vs bool (use API explorer)
export interface FbPagePaymentOptions {
amex: number;
cash_only: number;
discover: number;
mastercard: number;
visa: number;
}
// TODO check number vs bool (use API explorer)
export interface FbPageParking {
lot: number
street: number
valet: number
}
export interface FbVideo {
backdated_time_granularity: string
content_category: string
created_time: FbDateTime
description: string
embed_html: string
id: string
backdated_time: FbDateTime
content_tags: string[]
embeddable: boolean
event: FbEvent
format: FbVideoFormat[]
from: FbProfile
icon: string
is_crossposting_eligible: boolean
is_instagram_eligible: boolean
is_reference_only: boolean
length: number
live_status: string
permalink_url: string
picture: string
place: FbPlace
privacy: FbPrivacy
published: boolean
scheduled_publish_time: FbDateTime
source: string
status: FbVideoStatus
title: string
universal_video_id: string
updated_time: FbDateTime
}
export interface FbLiveVideo {
id: string
broadcast_start_time: FbDateTime
copyright: FbVideoCopyright
creation_time: FbDateTime
dash_preview_url: string
description: string
embed_html: string
from: FbProfile
is_manual_mode: boolean
is_reference_only: boolean
live_views: number
motion_detection_settings: any // Undocumented type: MotionDetection
permalink_url: string
planned_start_time: FbDateTime
preview_url: string
seconds_left: number
secure_stream_url: string
status: string
stream_url: string
title: string
video: FbVideo
}
export interface FbVideoCopyright {
id: string
copyright_content_id: string
creator: FbUser
monitoring_status: "NOT_EXAMED" | "COPYRIGHTED" | "ERROR"
monitoring_type: string
ownership_countries: string[]
reference_owner_id: string
rule_ids: FbVideoCopyrightRule[]
whitelisted_ids: string[]
}
export interface FbVideoCopyrightRule {
id: string
condition_groups: any // Undocumented type: VideoCopyrightConditionGroup
copyrights: string[]
created_date: FbDateTime
creator: FbUser
name: string
}
export interface FbVideoList {
id: string
creation_time: FbDateTime
description: string
last_modified: FbDateTime
owner: FbUser | FbPage
title: string
}
export interface FbVideoStatus {
processing_progress: number;
video_status: FbVideoStatusEnum;
}
export interface FbVideoFormat {
embed_html: string;
filter: string;
height: number;
picture: string;
width: number;
}
export interface FbEngagement {
count: number;
count_string: string;
count_string_with_like: string;
count_string_without_like: string;
social_sentence: string;
social_sentence_with_like: string;
social_sentence_without_like: string;
}
export interface FbOpenGraphContext {
id: string;
}
export interface FbMailingAddress {
id: string;
city: string;
city_page: FbPage;
country: string;
postal_code: string;
region: string;
street1: string;
street2: string;
}
export interface FbMediaFingerprint {
id: string
duration_in_sec: number
fingerprint_content_type: string
fingerprint_type: string
metadata: any // Undocumented type: FingerprintMetadata
title: string
universal_content_id: string
}
export interface FbPageCategory {
id: string;
name: string;
}
export interface FbAppLinkHost {
name: string;
canonical_url: string;
android: FbAndroidAppLink[];
ios: FbIosAppLink[];
ipad: FbIosAppLink[];
iphone: FbIosAppLink[];
web: FbWebAppLink;
windows_phone: FbWindowsPhoneAppLink[];
}
export interface FbAppLinks {
id: string;
android: FbAndroidAppLink[];
ios: FbIosAppLink[];
ipad: FbIosAppLink[];
iphone: FbIosAppLink[];
web: FbWebAppLink;
windows: FbWindowsAppLink[];
windows_phone: FbWindowsPhoneAppLink[];
windows_universal: FbWindowsAppLink[];
}
export interface FbWebAppLink {
should_fallback: boolean;
url: string;
}
export interface FbAndroidAppLink {
app_name: string;
class: string;
package: string;
url: string;
}
export interface FbIosAppLink {
app_name: string;
app_store_id: string;
url: string;
}
export interface FbWindowsPhoneAppLink {
app_id: string;
app_name: string;
url: string;
}
export interface FbWindowsAppLink {
app_id: string;
app_name: string;
package_family_name: string;
url: string;
}
export interface FbAdCampaign {
// TODO impl
}
export interface FbApp {
id: string
an_platforms: string[]
app_ad_debug_info: FbApplicationAppAdDebugInfo
app_domains: string[]
app_install_tracked: boolean
app_name: string
app_type: number
auth_dialog_data_help_url: string
auth_dialog_headline: string
auth_dialog_perms_explanation: string
auth_referral_default_activity_privacy: string
auth_referral_enabled: number
auth_referral_extended_perms: string[]
auth_referral_friend_perms: string[]
auth_referral_response_type: string
auth_referral_user_perms: string[]
canvas_fluid_height: boolean
canvas_fluid_width: number
canvas_url: string
category: string
client_config: Map<any, any>
company: string
configured_ios_sso: boolean
contact_email: string
context: FbApplicationContext
created_time: FbDateTime
creator_uid: string
daily_active_users: string // numeric string
daily_active_users_rank: number
deauth_callback_url: string
default_share_mode: string
description: string
hosting_url: string
icon_url: string
ios_bundle_id: string[]
ios_supports_native_proxy_auth_flow: boolean
ios_supports_system_auth: boolean
ipad_app_store_id: string
iphone_app_store_id: string
link: string
logging_token: string
logo_url: string
migrations: Map<string, boolean>
mobile_profile_section_url: string
mobile_web_url: string
monthly_active_users: string // numeric string
monthly_active_users_rank: number
name: string
namespace: string
object_store_urls: FbApplicationObjectStoreUrls
page_tab_default_name: string
page_tab_url: string
privacy_policy_url: string
profile_section_url: string
restrictions: FbApplicationRestrictionInfo
secure_canvas_url: string
secure_page_tab_url: string
server_ip_whitelist: string
social_discovery: number
subcategory: string
supported_platforms: FbAppSupportedPlatforms[]
terms_of_service_url: string
url_scheme_suffix: string
user_support_email: string
user_support_url: string
website_url: string
weekly_active_users: string // numeric string
}
export interface FbApplicationAppAdDebugInfo {
android_installs_over_last_seven_days: number
android_missing_settings: string[]
android_support_status: string
ios_install_invalidation_schemes: string[]
ios_installs_over_last_seven_days: number
ios_missing_settings: string[]
ios_support_status: string
is_app_child_app: boolean
is_app_in_dev_mode: boolean
is_cpa_enabled_for_android: boolean
is_cpa_enabled_for_ios: boolean
is_ocpm_enabled: boolean
last_android_deferred_deep_link_call: FbDateTime
last_android_install: FbDateTime
last_ios_deferred_deep_link_call: FbDateTime
last_ios_install: FbDateTime
}
export interface FbApplicationContext {
id: string
}
export interface FbApplicationObjectStoreUrls {
amazon_app_store: string
fb_canvas: string
google_play: string
itunes: string
itunes_ipad: string
windows_10_store: string
}
export interface FbApplicationRestrictionInfo {
age: string
age_distribution: string
location: string
type: string
}
export interface FbRequest {
id: string
application: FbApp
to: FbUser
from: FbUser
message: string
created_time: FbDateTime
}
export interface FbPlace {
id: string;
location: FbLocation;
name: string;
overall_rating: number;
}
export interface FbPlaceTag {
id: string
created_time: FbDateTime
place: FbPage
}
export interface FbPlaceTopic {
id: string
count: number
has_children: boolean
icon_url: string
name: string
parent_ids: string[]
plural_name: string
top_subtopic_names: string[]
}
/**
* A cover photo for objects in the Graph API. Cover photos are used with Events, Groups,
* Pages and People.
*/
export interface FbCoverPhoto {
/** The ID of the cover photo. */
id: string
/** When non-zero, the cover image overflows horizontally. The value indicates
* the offset percentage of the total image width from the left [0-100].
*/
offset_x: number
/** When non-zero, the cover photo overflows vertically. The value indicates
* the offset percentage of the total image height from the top [0-100].
*/
offset_y: number
/** Direct URL for the person's cover photo image. */
source: string
}
export interface FbGroup {
id: string;
cover: FbCoverPhoto;
description: string;
email: string;
icon: string;
link: string;
member_request_count: number;
name: string;
owner: FbUser | FbPage;
parent: FbGroup | FbPage | FbApp;
privacy: FbPrivacy;
updated_time: FbDateTime;
}
export interface FbGroupDoc {
id: string
from: FbUser | FbPage
subject: string
message: string
icon: string
created_time: FbDateTime
updated_time: FbDateTime
revision: number
can_edit: boolean
can_delete: boolean
}
export interface FbInstagramComment {
comment_type: "CAPTION" | "NORMAL" | "UNKNOWN"
created_at: FbDateTime
id: string
instagram_comment_id: string
instagram_user: FbInstagramUser
mentioned_instagram_users: FbInstagramUser[]
message: string
}
export interface FbInstagramUser {
id: string
follow_count: number
followed_by_count: number
has_profile_picture: boolean
is_private: boolean
media_count: number
profile_pic: string
username: string
}
export interface FbLifeEvent {
created_time: FbDateTime
description: string
end_time: FbDateTime
from: FbPage
id: string
is_hidden: boolean
start_time: FbDateTime
title: string
updated_time: FbDateTime
}
/** Location node used with other objects in the Graph API. */
export interface FbLocation {
city: string;
city_id: number;
country: string;
country_code: string;
latitude: number;
located_in: string;
longitude: number;
name: string;
region: string;
region_id: number;