File tree 1 file changed +14
-0
lines changed
packages/firebase-dynamic-links
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -373,10 +373,19 @@ export class DynamicLinkParameters implements IDynamicLinkParameters {
373
373
return DynamicLinkITunesParameters . fromNative ( this . native . iTunesConnectParameters ) ;
374
374
}
375
375
376
+ set itunes ( value ) {
377
+ this . _itunes = value ;
378
+ this . native . iTunesConnectParameters = value ?. native ;
379
+ }
380
+
376
381
get link ( ) : string {
377
382
return this . native . link ?. absoluteString ;
378
383
}
379
384
385
+ set link ( value ) {
386
+ this . native . link = NSURL . URLWithString ( value ) ;
387
+ }
388
+
380
389
_navigation : DynamicLinkNavigationParameters ;
381
390
get navigation ( ) : DynamicLinkNavigationParameters {
382
391
if ( this . _navigation ) {
@@ -398,6 +407,11 @@ export class DynamicLinkParameters implements IDynamicLinkParameters {
398
407
return DynamicLinkSocialParameters . fromNative ( this . native . socialMetaTagParameters ) ;
399
408
}
400
409
410
+ set social ( value ) {
411
+ this . _social = value ;
412
+ this . native . socialMetaTagParameters = value ?. native ;
413
+ }
414
+
401
415
get native ( ) {
402
416
return this . _native ;
403
417
}
You can’t perform that action at this time.
0 commit comments