@wix/referral 1.0.47 → 1.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/referral",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.48",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/referral_customers": "1.0.18",
|
|
25
|
-
"@wix/referral_friends": "1.0.
|
|
25
|
+
"@wix/referral_friends": "1.0.18",
|
|
26
26
|
"@wix/referral_programs": "1.0.25",
|
|
27
27
|
"@wix/referral_rewards": "1.0.16",
|
|
28
28
|
"@wix/referral_tracker": "1.0.21"
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "a9667a99e39e4740bc8f8e59ed62a847206ad09c7a11924a41dd8e09"
|
|
54
54
|
}
|
|
@@ -4195,8 +4195,9 @@ interface GetReferredFriendSignature {
|
|
|
4195
4195
|
/**
|
|
4196
4196
|
* Retrieves a referred friend by ID.
|
|
4197
4197
|
* @param - ID of the referred friend to retrieve.
|
|
4198
|
+
* @returns Retrieved referred friend.
|
|
4198
4199
|
*/
|
|
4199
|
-
(referredFriendId: string): Promise<
|
|
4200
|
+
(referredFriendId: string): Promise<ReferredFriend & ReferredFriendNonNullableFields>;
|
|
4200
4201
|
}
|
|
4201
4202
|
declare function getReferredFriendByContactId$1(httpClient: HttpClient): GetReferredFriendByContactIdSignature;
|
|
4202
4203
|
interface GetReferredFriendByContactIdSignature {
|
|
@@ -4205,9 +4206,8 @@ interface GetReferredFriendByContactIdSignature {
|
|
|
4205
4206
|
*
|
|
4206
4207
|
* You can use `me` instead of a specific contact ID to get the referred friend for the current identity's contact.
|
|
4207
4208
|
* @param - Contact ID or "me" to get the current identity's contact.
|
|
4208
|
-
* @returns Retrieved referred friend.
|
|
4209
4209
|
*/
|
|
4210
|
-
(contactId: string): Promise<
|
|
4210
|
+
(contactId: string): Promise<GetReferredFriendByContactIdResponse & GetReferredFriendByContactIdResponseNonNullableFields>;
|
|
4211
4211
|
}
|
|
4212
4212
|
declare function updateReferredFriend$1(httpClient: HttpClient): UpdateReferredFriendSignature;
|
|
4213
4213
|
interface UpdateReferredFriendSignature {
|
|
@@ -4195,8 +4195,9 @@ interface GetReferredFriendSignature {
|
|
|
4195
4195
|
/**
|
|
4196
4196
|
* Retrieves a referred friend by ID.
|
|
4197
4197
|
* @param - ID of the referred friend to retrieve.
|
|
4198
|
+
* @returns Retrieved referred friend.
|
|
4198
4199
|
*/
|
|
4199
|
-
(referredFriendId: string): Promise<
|
|
4200
|
+
(referredFriendId: string): Promise<ReferredFriend & ReferredFriendNonNullableFields>;
|
|
4200
4201
|
}
|
|
4201
4202
|
declare function getReferredFriendByContactId$1(httpClient: HttpClient): GetReferredFriendByContactIdSignature;
|
|
4202
4203
|
interface GetReferredFriendByContactIdSignature {
|
|
@@ -4205,9 +4206,8 @@ interface GetReferredFriendByContactIdSignature {
|
|
|
4205
4206
|
*
|
|
4206
4207
|
* You can use `me` instead of a specific contact ID to get the referred friend for the current identity's contact.
|
|
4207
4208
|
* @param - Contact ID or "me" to get the current identity's contact.
|
|
4208
|
-
* @returns Retrieved referred friend.
|
|
4209
4209
|
*/
|
|
4210
|
-
(contactId: string): Promise<
|
|
4210
|
+
(contactId: string): Promise<GetReferredFriendByContactIdResponse & GetReferredFriendByContactIdResponseNonNullableFields>;
|
|
4211
4211
|
}
|
|
4212
4212
|
declare function updateReferredFriend$1(httpClient: HttpClient): UpdateReferredFriendSignature;
|
|
4213
4213
|
interface UpdateReferredFriendSignature {
|