-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathtypes.ts
1099 lines (972 loc) · 21.9 KB
/
types.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
export type JsonValue =
| string
| number
| boolean
| null
| JsonObject
| JsonArray;
export type JsonObject = {
[key: string]: JsonValue | undefined;
};
export type JsonArray = JsonValue[];
export interface ChannelCreatedEvent {
/**
* The channel ID.
*/
channelId: string;
}
export interface PushTokenReceivedEvent {
/**
* The push token.
*/
pushToken: string;
}
/**
* Event fired when a push is received.
*/
export interface PushReceivedEvent {
pushPayload: PushPayload;
}
/**
* Event fired whenever any of the Live Activities update, create, or end.
*/
export interface LiveActivitiesUpdatedEvent {
/**
* The Live Activities.
*/
activities: LiveActivity[];
}
/**
* The push payload.
*/
export interface PushPayload {
/**
* The alert.
*/
alert?: string;
/**
* The title.
*/
title?: string;
/**
* The subtitle.
*/
subtitle?: string;
/**
* The notification ID.
*/
notificationId?: string;
/**
* The notification extras.
*/
extras: JsonObject;
}
/**
* Event fired when the user initiates a notification response.
*/
export interface NotificationResponseEvent {
/**
* The push notification.
*/
pushPayload: PushPayload;
/**
* The action button ID, if available.
*/
actionId?: string;
/**
* Indicates whether the response was a foreground action.
* This value is always if the user taps the main notification,
* otherwise it is defined by the notification action button.
*/
isForeground: boolean;
}
/**
* Push notification status.
*/
export interface PushNotificationStatus {
/**
* If user notifications are enabled on [Airship.push].
*/
isUserNotificationsEnabled: boolean;
/**
* If notifications are allowed at the system level for the application.
*/
areNotificationsAllowed: boolean;
/**
* If the push feature is enabled on [Airship.privacyManager].
*/
isPushPrivacyFeatureEnabled: boolean;
/*
* If push registration was able to generate a token.
*/
isPushTokenRegistered: boolean;
/*
* If Airship is able to send and display a push notification.
*/
isOptedIn: boolean;
/*
* Checks for isUserNotificationsEnabled, areNotificationsAllowed, and isPushPrivacyFeatureEnabled. If this flag
* is true but `isOptedIn` is false, that means push token was not able to be registered.
*/
isUserOptedIn: boolean;
/**
* The notification permission status.
*/
notificationPermissionStatus: PermissionStatus;
}
/**
* Enum of permission status.
*/
export enum PermissionStatus {
/**
* Permission is granted.
*/
Granted = 'granted',
/**
* Permission is denied.
*/
Denied = 'denied',
/**
* Permission has not yet been requested.
*/
NotDetermined = 'not_determined',
}
/**
* Fallback when prompting for permission and the permission is
* already denied on iOS or is denied silently on Android.
*/
export enum PromptPermissionFallback {
/**
* Take the user to the system settings to enable the permission.
*/
SystemSettings = 'systemSettings',
}
/**
* Event fired when the notification status changes.
*/
export interface PushNotificationStatusChangedEvent {
/**
* The push notification status.
*/
status: PushNotificationStatus;
}
/**
* Event fired when the Message Center is updated.
*/
export interface MessageCenterUpdatedEvent {
/**
* The unread message count.
*/
messageUnreadCount: number;
/**
* The total message count.
*/
messageCount: number;
}
/**
* Event fired when the Message Center is requested to be displayed.
*/
export interface DisplayMessageCenterEvent {
/**
* The message ID, if available.
*/
messageId?: string;
}
/**
* Event fired when a deep link is opened.
*/
export interface DeepLinkEvent {
/**
* The deep link string.
*/
deepLink: string;
}
/**
* Event fired when a preference center is requested to be displayed.
*/
export interface DisplayPreferenceCenterEvent {
/**
* The preference center Id.
*/
preferenceCenterId: string;
}
export enum EventType {
ChannelCreated = 'com.airship.channel_created',
NotificationResponse = 'com.airship.notification_response',
PushReceived = 'com.airship.push_received',
DeepLink = 'com.airship.deep_link',
MessageCenterUpdated = 'com.airship.message_center_updated',
PushNotificationStatusChangedStatus = 'com.airship.notification_status_changed',
DisplayMessageCenter = 'com.airship.display_message_center',
DisplayPreferenceCenter = 'com.airship.display_preference_center',
PushTokenReceived = 'com.airship.push_token_received',
IOSAuthorizedNotificationSettingsChanged = 'com.airship.authorized_notification_settings_changed',
IOSLiveActivitiesUpdated = 'com.airship.live_activities_updated',
}
export interface EventTypeMap {
[EventType.ChannelCreated]: ChannelCreatedEvent;
[EventType.NotificationResponse]: NotificationResponseEvent;
[EventType.PushReceived]: PushReceivedEvent;
[EventType.DeepLink]: DeepLinkEvent;
[EventType.MessageCenterUpdated]: MessageCenterUpdatedEvent;
[EventType.PushNotificationStatusChangedStatus]: PushNotificationStatusChangedEvent;
[EventType.IOSAuthorizedNotificationSettingsChanged]: iOS.AuthorizedNotificationSettingsChangedEvent;
[EventType.DisplayMessageCenter]: DisplayMessageCenterEvent;
[EventType.DisplayPreferenceCenter]: DisplayPreferenceCenterEvent;
[EventType.PushTokenReceived]: PushTokenReceivedEvent;
[EventType.IOSLiveActivitiesUpdated]: LiveActivitiesUpdatedEvent;
}
/**
* iOS options
*/
export namespace iOS {
/**
* Enum of notification options. iOS only.
*/
export enum NotificationOption {
/**
* Alerts.
*/
Alert = 'alert',
/**
* Sounds.
*/
Sound = 'sound',
/**
* Badges.
*/
Badge = 'badge',
/**
* Car play.
*/
CarPlay = 'car_play',
/**
* Critical Alert.
*/
CriticalAlert = 'critical_alert',
/**
* Provides app notification settings.
*/
ProvidesAppNotificationSettings = 'provides_app_notification_settings',
/**
* Provisional.
*/
Provisional = 'provisional',
}
/**
* Enum of foreground notification options.
*/
export enum ForegroundPresentationOption {
/**
* Play the sound associated with the notification.
*/
Sound = 'sound',
/**
* Apply the notification's badge value to the app’s icon.
*/
Badge = 'badge',
/**
* Show the notification in Notification Center. On iOS 13 an older,
* this will also show the notification as a banner.
*/
List = 'list',
/**
* Present the notification as a banner. On iOS 13 an older,
* this will also show the notification in the Notification Center.
*/
Banner = 'banner',
}
/**
* Enum of authorized notification options.
*/
export enum AuthorizedNotificationSetting {
/**
* Alerts.
*/
Alert = 'alert',
/**
* Sounds.
*/
Sound = 'sound',
/**
* Badges.
*/
Badge = 'badge',
/**
* CarPlay.
*/
CarPlay = 'car_play',
/**
* Lock screen.
*/
LockScreen = 'lock_screen',
/**
* Notification center.
*/
NotificationCenter = 'notification_center',
/**
* Critical alert.
*/
CriticalAlert = 'critical_alert',
/**
* Announcement.
*/
Announcement = 'announcement',
/**
* Scheduled delivery.
*/
ScheduledDelivery = 'scheduled_delivery',
/**
* Time sensitive.
*/
TimeSensitive = 'time_sensitive',
}
/**
* Enum of authorized status.
*/
export enum AuthorizedNotificationStatus {
/**
* Not determined.
*/
NotDetermined = 'not_determined',
/**
* Denied.
*/
Denied = 'denied',
/**
* Authorized.
*/
Authorized = 'authorized',
/**
* Provisional.
*/
Provisional = 'provisional',
/**
* Ephemeral.
*/
Ephemeral = 'ephemeral',
}
export interface AuthorizedNotificationSettingsChangedEvent {
/**
* Authorized settings.
*/
authorizedSettings: AuthorizedNotificationSetting[];
}
}
/**
* Airship config environment
*/
export interface ConfigEnvironment {
/**
* App key.
*/
appKey: string;
/**
* App secret.
*/
appSecret: string;
/**
* Optional log level.
*/
logLevel?: LogLevel;
/**
* Optional iOS config
*/
ios?: {
/**
* Log privacy level. By default it logs at `private`, not logging anything lower than info to the console
* and redacting logs with string interpolation. `public` will log all configured log levels to the console
* without redacting any of the log lines.
*/
logPrivacyLevel?: 'private' | 'public';
};
}
/**
* Possible sites.
*/
export type Site = 'us' | 'eu';
/**
* Log levels.
*/
export type LogLevel =
| 'verbose'
| 'debug'
| 'info'
| 'warning'
| 'error'
| 'none';
/**
* Airship config
*/
export interface AirshipConfig {
/**
* Default environment.
*/
default?: ConfigEnvironment;
/**
* Development environment. Overrides default environment if inProduction is false.
*/
development?: ConfigEnvironment;
/**
* Production environment. Overrides default environment if inProduction is true.
*/
production?: ConfigEnvironment;
/**
* Cloud site.
*/
site?: Site;
/**
* Switches the environment from development or production. If the value is not
* set, Airship will determine the value at runtime.
*/
inProduction?: boolean;
/**
* URL allow list.
*/
urlAllowList?: string[];
/**
* URL allow list for open URL scope.
*/
urlAllowListScopeOpenUrl?: string[];
/**
* URL allow list for JS bridge injection.
*/
urlAllowListScopeJavaScriptInterface?: string[];
/**
* Enables delayed channel creation.
* Deprecated. Use the Private Manager to disable all features instead.
*/
isChannelCreationDelayEnabled?: boolean;
/**
* Initial config URL for custom Airship domains. The URL
* should also be added to the urlAllowList.
*/
initialConfigUrl?: string;
/**
* Enabled features. Defaults to all.
*/
enabledFeatures?: Feature[];
/**
* Enables channel capture feature.
* This config is enabled by default.
*/
isChannelCaptureEnabled?: boolean;
/**
* Whether to suppress console error messages about missing allow list entries during takeOff.
* This config is disabled by default.
*/
suppressAllowListError?: boolean;
/**
* Pauses In-App Automation on launch.
*/
autoPauseInAppAutomationOnLaunch?: boolean;
/**
* iOS config.
*/
ios?: {
/**
* itunesId for rate app and app store deep links.
*/
itunesId?: string;
/**
* If set to `true`, the SDK will use the preferred locale. Otherwise it will use the app's locale.
*/
useUserPreferredLocale?: boolean;
/**
* Allows the WebViews to be inspected in Safari.
*/
isWebViewInspectionEnabled?: boolean;
};
/**
* Android config.
*/
android?: {
/**
* App store URI
*/
appStoreUri?: string;
/**
* Fcm app name if using multiple FCM projects.
*/
fcmFirebaseAppName?: string;
/**
* Notification config.
*/
notificationConfig?: Android.NotificationConfig;
};
}
export namespace Android {
/**
* Android notification config.
*/
export interface NotificationConfig {
/**
* The icon resource name.
*/
icon?: string;
/**
* The large icon resource name.
*/
largeIcon?: string;
/**
* The default android notification channel ID.
*/
defaultChannelId?: string;
/**
* The accent color. Must be a hex value #AARRGGBB.
*/
accentColor?: string;
}
}
/**
* Enum of authorized Features.
*/
export enum Feature {
InAppAutomation = 'in_app_automation',
MessageCenter = 'message_center',
Push = 'push',
Analytics = 'analytics',
TagsAndAttributes = 'tags_and_attributes',
Contacts = 'contacts',
FeatureFlags = 'feature_flags',
Location = 'location', // No longer used. To be removed in version 20.0.0.
Chat = 'chat', // No longer used. To be removed in version 20.0.0.
}
/**
* All available features.
*/
export const FEATURES_ALL = Object.values(Feature).filter(
(feature) => feature !== Feature.Location && feature !== Feature.Chat
);
/**
* Subscription Scope types.
*/
export enum SubscriptionScope {
App = 'app',
Web = 'web',
Sms = 'sms',
Email = 'email',
}
/**
* Custom event
*/
export interface CustomEvent {
/**
* Event name
*/
eventName: string;
/**
* Event value
*/
eventValue?: number;
/**
* Event properties
*/
properties: JsonObject;
/**
* Transaction ID
*/
transactionId?: string;
/**
* Interaction ID
*/
interactionId?: string;
/**
* Interaction type
*/
interactionType?: string;
}
export interface InboxMessage {
/**
* The message ID. Needed to display, mark as read, or delete the message.
*/
id: string;
/**
* The message title.
*/
title: string;
/**
* The message sent date in milliseconds.
*/
sentDate: number;
/**
* Optional - The message expiration date in milliseconds.
*/
expirationDate?: number;
/**
* Optional - The icon url for the message.
*/
listIconUrl?: string;
/**
* The unread / read status of the message.
*/
isRead: boolean;
/**
* String to String map of any message extras.
*/
extras: Record<string, string>;
}
// ---
// See: https://github.com/urbanairship/web-push-sdk/blob/master/src/remote-data/preference-center.ts
// ---
/**
* A preference center definition.
*
* @typedef {object} PreferenceCenter
* @property {string} id the ID of the preference center
* @property {Array<PreferenceCenter.CommonSection>} sections a list of sections
* @property {?CommonDisplay} display display information
*/
export type PreferenceCenter = {
id: string;
sections: Section[];
display?: CommonDisplay;
};
/**
* Preference center display information.
* @typedef {object} CommonDisplay
* @property {string} name
* @property {?string} description
*/
export type CommonDisplay = {
name: string;
description?: string;
};
export type Icon = {
icon: string;
};
export type IconDisplay = CommonDisplay & Partial<Icon>;
export interface ItemBase {
type: unknown;
id: string;
display: CommonDisplay;
conditions?: Condition[];
}
/**
* A channel subscription item.
* @typedef {object} ChannelSubscriptionItem
* @memberof PreferenceCenter
* @property {"channel_subscription"} type
* @property {string} id the item identifier
* @property {?CommonDisplay} display display information
* @property {string} subscription_id the subscription list id
*/
export interface ChannelSubscriptionItem extends ItemBase {
type: 'channel_subscription';
subscription_id: string;
}
export interface ContactSubscriptionGroupItem extends ItemBase {
type: 'contact_subscription_group';
id: string;
subscription_id: string;
components: ContactSubscriptionGroupItemComponent[];
}
export interface ContactSubscriptionGroupItemComponent {
scopes: SubscriptionScope[];
display: Omit<CommonDisplay, 'description'>;
}
export interface ContactSubscriptionItem extends ItemBase {
type: 'contact_subscription';
scopes: SubscriptionScope[];
subscription_id: string;
}
export interface AlertItem extends ItemBase {
type: 'alert';
display: IconDisplay;
button?: Button;
}
export interface ConditionBase {
type: unknown;
}
export interface NotificationOptInCondition extends ConditionBase {
type: 'notification_opt_in';
when_status: 'opt_in' | 'opt_out';
}
export type Condition = NotificationOptInCondition;
// Changed from `unknown` in spec
export type Actions = {
[key: string]: JsonValue;
};
export interface Button {
text: string;
content_description?: string;
actions: Actions;
}
export interface SectionBase {
type: unknown;
id: string;
display?: CommonDisplay;
items: Item[];
}
/**
* @typedef {object} CommonSection
* @memberof PreferenceCenter
* @property {"section"} type
* @property {string} id the section identifier
* @property {?CommonDisplay} display display information
* @property {Array<PreferenceCenter.ChannelSubscriptionItem>} items list of
* section items
*/
export interface CommonSection extends SectionBase {
type: 'section';
}
export interface LabeledSectionBreak extends SectionBase {
type: 'labeled_section_break';
items: never;
}
export type Item =
| ChannelSubscriptionItem
| ContactSubscriptionGroupItem
| ContactSubscriptionItem
| AlertItem;
export type Section = CommonSection | LabeledSectionBreak;
/**
* An interface representing the eligibility status of a flag, and optional
* variables associated with the flag.
*/
export interface FeatureFlag {
/**
* A boolean representing flag eligibility; will be `true` if the current
* contact is eligible for the flag.
*/
readonly isEligible: boolean;
/**
* A variables associated with the flag, if any. Will be `null` if no data
* is associated with the flag, or if the flag does not exist.
*/
readonly variables: unknown | null;
/**
* A boolean representing if the flag exists or not. For ease of use and
* deployment, asking for a flag by any name will return a `FeatureFlag`
* interface, even if the flag was not found to exist. However this property
* may be checked to determine if the flag was actually resolved to a known
* flag name.
*/
readonly exists: boolean;
/**
* Reporting Metadata, the shape of which is private and not to be relied
* upon. When not provided, an interaction cannot be tracked on the flag.
* @ignore
*/
readonly _internal: unknown;
}
/**
* Live Activity info.
*/
export interface LiveActivity {
/**
* The activity ID.
*/
id: string;
/**
* The attribute types.
*/
attributeTypes: string;
/**
* The content.
*/
content: LiveActivityContent;
/**
* The attributes.
*/
attributes: JsonObject;
}
/**
* Live Activity content.
*/
export interface LiveActivityContent {
/**
* The content state.
*/
state: JsonObject;
/**
* Optional ISO 8601 date string that defines when the Live Activity will be stale.
*/
staleDate?: string;
/**
* The relevance score.
*/
relevanceScore: number;
}
/**
* Base Live Activity request.
*/
export interface LiveActivityRequest {
/**
* Attributes types. This should match the Activity type of your Live Activity.
*/
attributesType: string;
}
/**
* Live Activity list request.
*/
export interface LiveActivityListRequest extends LiveActivityRequest {}
/**
* Live Activity start request.
*/
export interface LiveActivityStartRequest extends LiveActivityRequest {
/**
* Dynamic content.
*/
content: LiveActivityContent;
/**
* Fixed attributes.
*/
attributes: JsonObject;
}
/**
* Live Activity update request.
*/
export interface LiveActivityUpdateRequest extends LiveActivityRequest {
/**
* The Live Activity ID to update.
*/
activityId: string;
/**
* Dynamic content.
*/
content: LiveActivityContent;
}
/**
* Live Activity end request.
*/
export interface LiveActivityEndRequest extends LiveActivityRequest {
/**
* The Live Activity ID to update.
*/
activityId: string;
/**
* Dynamic content.
*/
content?: LiveActivityContent;
/**
* Dismissal policy. Defaults to `LiveActivityDismissalPolicyDefault`.
*/
dismissalPolicy?: LiveActivityDismissalPolicy;
}
export type LiveActivityDismissalPolicy =
| LiveActivityDismissalPolicyImmediate
| LiveActivityDismissalPolicyDefault
| LiveActivityDismissalPolicyAfterDate;
/**
* Dismissal policy to immediately dismiss the Live Activity on end.
*/
export interface LiveActivityDismissalPolicyImmediate {
type: 'immediate';
}
/**
* Dismissal policy to dismiss the Live Activity after the expiration.
*/
export interface LiveActivityDismissalPolicyDefault {
type: 'default';
}
/**
* Dismissal policy to dismiss the Live Activity after a given date.
*/
export interface LiveActivityDismissalPolicyAfterDate {
type: 'after';
// ISO 8601 date string.
date: string;
}
/**
* Live Update info.
*/
export interface LiveUpdate {
/**
* The Live Update name.
*/
name: string;
/**
* The Live Update type.
*/
type: string;
/**
* Dynamic content.
*/
content: JsonObject;
/**
* ISO 8601 date string of the last content update.
*/