@wix/referral 1.0.44 → 1.0.45
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.45",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,10 +22,10 @@
|
|
|
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.16",
|
|
26
26
|
"@wix/referral_programs": "1.0.25",
|
|
27
27
|
"@wix/referral_rewards": "1.0.16",
|
|
28
|
-
"@wix/referral_tracker": "1.0.
|
|
28
|
+
"@wix/referral_tracker": "1.0.20"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"glob": "^10.4.1",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": ""
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "0f83973bec951a4f945d622c7ecf1fe5ba3a32c47d0af6d01a9502c4"
|
|
54
54
|
}
|
|
@@ -2825,12 +2825,12 @@ interface ReferralEventsQueryBuilder {
|
|
|
2825
2825
|
* @param value - Value to compare against.
|
|
2826
2826
|
* @documentationMaturity preview
|
|
2827
2827
|
*/
|
|
2828
|
-
eq: (propertyName: '
|
|
2828
|
+
eq: (propertyName: '_createdDate' | '_updatedDate', value: any) => ReferralEventsQueryBuilder;
|
|
2829
2829
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2830
2830
|
* @param value - Value to compare against.
|
|
2831
2831
|
* @documentationMaturity preview
|
|
2832
2832
|
*/
|
|
2833
|
-
ne: (propertyName: '
|
|
2833
|
+
ne: (propertyName: '_createdDate' | '_updatedDate', value: any) => ReferralEventsQueryBuilder;
|
|
2834
2834
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2835
2835
|
* @param value - Value to compare against.
|
|
2836
2836
|
* @documentationMaturity preview
|
|
@@ -2855,19 +2855,19 @@ interface ReferralEventsQueryBuilder {
|
|
|
2855
2855
|
* @param values - List of values to compare against.
|
|
2856
2856
|
* @documentationMaturity preview
|
|
2857
2857
|
*/
|
|
2858
|
-
hasSome: (propertyName: '
|
|
2858
|
+
hasSome: (propertyName: '_createdDate' | '_updatedDate', value: any[]) => ReferralEventsQueryBuilder;
|
|
2859
2859
|
/** @documentationMaturity preview */
|
|
2860
|
-
in: (propertyName: '
|
|
2860
|
+
in: (propertyName: '_createdDate' | '_updatedDate', value: any) => ReferralEventsQueryBuilder;
|
|
2861
2861
|
/** @documentationMaturity preview */
|
|
2862
|
-
exists: (propertyName: '
|
|
2862
|
+
exists: (propertyName: '_createdDate' | '_updatedDate', value: boolean) => ReferralEventsQueryBuilder;
|
|
2863
2863
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
2864
2864
|
* @documentationMaturity preview
|
|
2865
2865
|
*/
|
|
2866
|
-
ascending: (...propertyNames: Array<'
|
|
2866
|
+
ascending: (...propertyNames: Array<'_createdDate' | '_updatedDate'>) => ReferralEventsQueryBuilder;
|
|
2867
2867
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
2868
2868
|
* @documentationMaturity preview
|
|
2869
2869
|
*/
|
|
2870
|
-
descending: (...propertyNames: Array<'
|
|
2870
|
+
descending: (...propertyNames: Array<'_createdDate' | '_updatedDate'>) => ReferralEventsQueryBuilder;
|
|
2871
2871
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
2872
2872
|
* @documentationMaturity preview
|
|
2873
2873
|
*/
|
|
@@ -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 {
|
|
@@ -2825,12 +2825,12 @@ interface ReferralEventsQueryBuilder {
|
|
|
2825
2825
|
* @param value - Value to compare against.
|
|
2826
2826
|
* @documentationMaturity preview
|
|
2827
2827
|
*/
|
|
2828
|
-
eq: (propertyName: '
|
|
2828
|
+
eq: (propertyName: '_createdDate' | '_updatedDate', value: any) => ReferralEventsQueryBuilder;
|
|
2829
2829
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2830
2830
|
* @param value - Value to compare against.
|
|
2831
2831
|
* @documentationMaturity preview
|
|
2832
2832
|
*/
|
|
2833
|
-
ne: (propertyName: '
|
|
2833
|
+
ne: (propertyName: '_createdDate' | '_updatedDate', value: any) => ReferralEventsQueryBuilder;
|
|
2834
2834
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
2835
2835
|
* @param value - Value to compare against.
|
|
2836
2836
|
* @documentationMaturity preview
|
|
@@ -2855,19 +2855,19 @@ interface ReferralEventsQueryBuilder {
|
|
|
2855
2855
|
* @param values - List of values to compare against.
|
|
2856
2856
|
* @documentationMaturity preview
|
|
2857
2857
|
*/
|
|
2858
|
-
hasSome: (propertyName: '
|
|
2858
|
+
hasSome: (propertyName: '_createdDate' | '_updatedDate', value: any[]) => ReferralEventsQueryBuilder;
|
|
2859
2859
|
/** @documentationMaturity preview */
|
|
2860
|
-
in: (propertyName: '
|
|
2860
|
+
in: (propertyName: '_createdDate' | '_updatedDate', value: any) => ReferralEventsQueryBuilder;
|
|
2861
2861
|
/** @documentationMaturity preview */
|
|
2862
|
-
exists: (propertyName: '
|
|
2862
|
+
exists: (propertyName: '_createdDate' | '_updatedDate', value: boolean) => ReferralEventsQueryBuilder;
|
|
2863
2863
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
2864
2864
|
* @documentationMaturity preview
|
|
2865
2865
|
*/
|
|
2866
|
-
ascending: (...propertyNames: Array<'
|
|
2866
|
+
ascending: (...propertyNames: Array<'_createdDate' | '_updatedDate'>) => ReferralEventsQueryBuilder;
|
|
2867
2867
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
2868
2868
|
* @documentationMaturity preview
|
|
2869
2869
|
*/
|
|
2870
|
-
descending: (...propertyNames: Array<'
|
|
2870
|
+
descending: (...propertyNames: Array<'_createdDate' | '_updatedDate'>) => ReferralEventsQueryBuilder;
|
|
2871
2871
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
2872
2872
|
* @documentationMaturity preview
|
|
2873
2873
|
*/
|
|
@@ -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 {
|