@wix/referral 1.0.32 → 1.0.34
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.34",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/referral_customers": "1.0.
|
|
22
|
-
"@wix/referral_friends": "1.0.
|
|
21
|
+
"@wix/referral_customers": "1.0.14",
|
|
22
|
+
"@wix/referral_friends": "1.0.11",
|
|
23
23
|
"@wix/referral_programs": "1.0.19",
|
|
24
24
|
"@wix/referral_rewards": "1.0.13",
|
|
25
25
|
"@wix/referral_tracker": "1.0.15"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"fqdn": ""
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "1a7df3244e3a998ad4bbc7303820de5c4f7c73688c40faf2801f29f2"
|
|
51
51
|
}
|
|
@@ -3732,10 +3732,11 @@ interface UpdateReferredFriendResponse {
|
|
|
3732
3732
|
referredFriend?: ReferredFriend;
|
|
3733
3733
|
}
|
|
3734
3734
|
interface DeleteReferredFriendRequest {
|
|
3735
|
+
/** ID of the referred friend to delete. */
|
|
3735
3736
|
referredFriendId: string;
|
|
3736
3737
|
/**
|
|
3737
3738
|
* Revision number, which increments by 1 each time the referred friend is updated.
|
|
3738
|
-
* To prevent conflicting changes, the current revision must be passed when
|
|
3739
|
+
* To prevent conflicting changes, the current revision must be passed when deleting the referred friend.
|
|
3739
3740
|
*/
|
|
3740
3741
|
revision?: string;
|
|
3741
3742
|
}
|
|
@@ -4073,7 +4074,7 @@ interface UpdateReferredFriend {
|
|
|
4073
4074
|
interface DeleteReferredFriendOptions {
|
|
4074
4075
|
/**
|
|
4075
4076
|
* Revision number, which increments by 1 each time the referred friend is updated.
|
|
4076
|
-
* To prevent conflicting changes, the current revision must be passed when
|
|
4077
|
+
* To prevent conflicting changes, the current revision must be passed when deleting the referred friend.
|
|
4077
4078
|
*/
|
|
4078
4079
|
revision?: string;
|
|
4079
4080
|
}
|
|
@@ -4202,20 +4203,27 @@ declare function deleteReferredFriend$1(httpClient: HttpClient): DeleteReferredF
|
|
|
4202
4203
|
interface DeleteReferredFriendSignature {
|
|
4203
4204
|
/**
|
|
4204
4205
|
* Deletes a referred friend.
|
|
4206
|
+
* @param - ID of the referred friend to delete.
|
|
4205
4207
|
*/
|
|
4206
4208
|
(referredFriendId: string, options?: DeleteReferredFriendOptions | undefined): Promise<void>;
|
|
4207
4209
|
}
|
|
4208
4210
|
declare function queryReferredFriend$1(httpClient: HttpClient): QueryReferredFriendSignature;
|
|
4209
4211
|
interface QueryReferredFriendSignature {
|
|
4210
4212
|
/**
|
|
4211
|
-
*
|
|
4213
|
+
* Creates a query to retrieve a list of referred friends.
|
|
4212
4214
|
*
|
|
4213
|
-
*
|
|
4215
|
+
* The `queryReferredFriend()` function builds a query to retrieve a list of events and returns a `ReferredFriendsQueryBuilder` object.
|
|
4214
4216
|
*
|
|
4215
|
-
*
|
|
4216
|
-
*
|
|
4217
|
-
*
|
|
4218
|
-
*
|
|
4217
|
+
* The returned object contains the query definition, which is typically used to run the query using the `find()` function.
|
|
4218
|
+
*
|
|
4219
|
+
* You can refine the query by chaining `ReferredFriendsQueryBuilder` functions onto the query. `ReferredFriendsQueryBuilder` functions enable you to sort, filter, and control the results `queryReferredFriend()` returns.
|
|
4220
|
+
*
|
|
4221
|
+
* `queryReferredFriend()` runs with these `ReferredFriendQueryBuilder` defaults, which you can override:
|
|
4222
|
+
*
|
|
4223
|
+
* - `limit(50)`
|
|
4224
|
+
* - `descending("_createdDate")`
|
|
4225
|
+
*
|
|
4226
|
+
* The functions that are chained to `queryReferredFriend()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('referringCustomerId'), the results are sorted first by the status, and then, if there are multiple results with the same status, the items are sorted by referring customer ID.
|
|
4219
4227
|
*/
|
|
4220
4228
|
(): ReferredFriendsQueryBuilder;
|
|
4221
4229
|
}
|
|
@@ -4310,7 +4318,6 @@ declare namespace context$1 {
|
|
|
4310
4318
|
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type context$1_CreateReferredFriendOptions as CreateReferredFriendOptions, type context$1_CreateReferredFriendRequest as CreateReferredFriendRequest, type context$1_CreateReferredFriendResponse as CreateReferredFriendResponse, type context$1_CreateReferredFriendResponseNonNullableFields as CreateReferredFriendResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type context$1_DeleteReferredFriendOptions as DeleteReferredFriendOptions, type context$1_DeleteReferredFriendRequest as DeleteReferredFriendRequest, type context$1_DeleteReferredFriendResponse as DeleteReferredFriendResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type context$1_Empty as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type context$1_GetReferredFriendByContactIdRequest as GetReferredFriendByContactIdRequest, type context$1_GetReferredFriendByContactIdResponse as GetReferredFriendByContactIdResponse, type context$1_GetReferredFriendByContactIdResponseNonNullableFields as GetReferredFriendByContactIdResponseNonNullableFields, type context$1_GetReferredFriendRequest as GetReferredFriendRequest, type context$1_GetReferredFriendResponse as GetReferredFriendResponse, type context$1_GetReferredFriendResponseNonNullableFields as GetReferredFriendResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type MessageEnvelope$1 as MessageEnvelope, type context$1_QueryReferredFriendRequest as QueryReferredFriendRequest, type context$1_QueryReferredFriendResponse as QueryReferredFriendResponse, type context$1_QueryReferredFriendResponseNonNullableFields as QueryReferredFriendResponseNonNullableFields, type context$1_ReferredFriend as ReferredFriend, type context$1_ReferredFriendCreatedEnvelope as ReferredFriendCreatedEnvelope, type context$1_ReferredFriendDeletedEnvelope as ReferredFriendDeletedEnvelope, type context$1_ReferredFriendDetails as ReferredFriendDetails, type context$1_ReferredFriendNonNullableFields as ReferredFriendNonNullableFields, type context$1_ReferredFriendUpdatedEnvelope as ReferredFriendUpdatedEnvelope, type context$1_ReferredFriendsQueryBuilder as ReferredFriendsQueryBuilder, type context$1_ReferredFriendsQueryResult as ReferredFriendsQueryResult, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, context$1_Status as Status, type context$1_SuccessfulReferralEvent as SuccessfulReferralEvent, type context$1_UpdateReferredFriend as UpdateReferredFriend, type context$1_UpdateReferredFriendRequest as UpdateReferredFriendRequest, type context$1_UpdateReferredFriendResponse as UpdateReferredFriendResponse, type context$1_UpdateReferredFriendResponseNonNullableFields as UpdateReferredFriendResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, type context$1__publicOnReferredFriendCreatedType as _publicOnReferredFriendCreatedType, type context$1__publicOnReferredFriendDeletedType as _publicOnReferredFriendDeletedType, type context$1__publicOnReferredFriendUpdatedType as _publicOnReferredFriendUpdatedType, context$1_createReferredFriend as createReferredFriend, context$1_deleteReferredFriend as deleteReferredFriend, context$1_getReferredFriend as getReferredFriend, context$1_getReferredFriendByContactId as getReferredFriendByContactId, context$1_onReferredFriendCreated as onReferredFriendCreated, context$1_onReferredFriendDeleted as onReferredFriendDeleted, context$1_onReferredFriendUpdated as onReferredFriendUpdated, onReferredFriendCreated$1 as publicOnReferredFriendCreated, onReferredFriendDeleted$1 as publicOnReferredFriendDeleted, onReferredFriendUpdated$1 as publicOnReferredFriendUpdated, context$1_queryReferredFriend as queryReferredFriend, context$1_updateReferredFriend as updateReferredFriend };
|
|
4311
4319
|
}
|
|
4312
4320
|
|
|
4313
|
-
/** ReferringCustomer is the main entity of ReferringCustomers. */
|
|
4314
4321
|
interface ReferringCustomer {
|
|
4315
4322
|
/**
|
|
4316
4323
|
* ID of the referring customer.
|
|
@@ -4748,12 +4755,19 @@ interface GetReferringCustomerByReferralCodeSignature {
|
|
|
4748
4755
|
declare function queryReferringCustomers$1(httpClient: HttpClient): QueryReferringCustomersSignature;
|
|
4749
4756
|
interface QueryReferringCustomersSignature {
|
|
4750
4757
|
/**
|
|
4751
|
-
*
|
|
4758
|
+
* Creates a query to retrieve a list of referring customers.
|
|
4752
4759
|
*
|
|
4753
|
-
*
|
|
4754
|
-
*
|
|
4755
|
-
*
|
|
4756
|
-
*
|
|
4760
|
+
* The `queryReferringCustomers()` function builds a query to retrieve a list of events and returns a `ReferringCustomersQueryBuilder` object.
|
|
4761
|
+
*
|
|
4762
|
+
* The returned object contains the query definition, which is typically used to run the query using the `find()` function.
|
|
4763
|
+
*
|
|
4764
|
+
* You can refine the query by chaining `ReferringCustomersQueryBuilder` functions onto the query. `ReferringCustomersQueryBuilder` functions enable you to sort, filter, and control the results `queryReferringCustomers()` returns.
|
|
4765
|
+
*
|
|
4766
|
+
* `queryReferringCustomers()` runs with these `ReferringCustomersQueryBuilder` defaults, which you can override:
|
|
4767
|
+
*
|
|
4768
|
+
* - `limit(50)`
|
|
4769
|
+
* - `descending("_createdDate")`
|
|
4770
|
+
* The functions that are chained to `queryReferringCustomers()` are applied in the order they're called. For example, if you apply ascending('referralCode') and then descending('contactID'), the results are sorted first by the referral code, and then, if there are multiple results with the same referral code, the items are sorted by contact ID.
|
|
4757
4771
|
*/
|
|
4758
4772
|
(): ReferringCustomersQueryBuilder;
|
|
4759
4773
|
}
|
|
@@ -3732,10 +3732,11 @@ interface UpdateReferredFriendResponse {
|
|
|
3732
3732
|
referredFriend?: ReferredFriend;
|
|
3733
3733
|
}
|
|
3734
3734
|
interface DeleteReferredFriendRequest {
|
|
3735
|
+
/** ID of the referred friend to delete. */
|
|
3735
3736
|
referredFriendId: string;
|
|
3736
3737
|
/**
|
|
3737
3738
|
* Revision number, which increments by 1 each time the referred friend is updated.
|
|
3738
|
-
* To prevent conflicting changes, the current revision must be passed when
|
|
3739
|
+
* To prevent conflicting changes, the current revision must be passed when deleting the referred friend.
|
|
3739
3740
|
*/
|
|
3740
3741
|
revision?: string;
|
|
3741
3742
|
}
|
|
@@ -4073,7 +4074,7 @@ interface UpdateReferredFriend {
|
|
|
4073
4074
|
interface DeleteReferredFriendOptions {
|
|
4074
4075
|
/**
|
|
4075
4076
|
* Revision number, which increments by 1 each time the referred friend is updated.
|
|
4076
|
-
* To prevent conflicting changes, the current revision must be passed when
|
|
4077
|
+
* To prevent conflicting changes, the current revision must be passed when deleting the referred friend.
|
|
4077
4078
|
*/
|
|
4078
4079
|
revision?: string;
|
|
4079
4080
|
}
|
|
@@ -4202,20 +4203,27 @@ declare function deleteReferredFriend$1(httpClient: HttpClient): DeleteReferredF
|
|
|
4202
4203
|
interface DeleteReferredFriendSignature {
|
|
4203
4204
|
/**
|
|
4204
4205
|
* Deletes a referred friend.
|
|
4206
|
+
* @param - ID of the referred friend to delete.
|
|
4205
4207
|
*/
|
|
4206
4208
|
(referredFriendId: string, options?: DeleteReferredFriendOptions | undefined): Promise<void>;
|
|
4207
4209
|
}
|
|
4208
4210
|
declare function queryReferredFriend$1(httpClient: HttpClient): QueryReferredFriendSignature;
|
|
4209
4211
|
interface QueryReferredFriendSignature {
|
|
4210
4212
|
/**
|
|
4211
|
-
*
|
|
4213
|
+
* Creates a query to retrieve a list of referred friends.
|
|
4212
4214
|
*
|
|
4213
|
-
*
|
|
4215
|
+
* The `queryReferredFriend()` function builds a query to retrieve a list of events and returns a `ReferredFriendsQueryBuilder` object.
|
|
4214
4216
|
*
|
|
4215
|
-
*
|
|
4216
|
-
*
|
|
4217
|
-
*
|
|
4218
|
-
*
|
|
4217
|
+
* The returned object contains the query definition, which is typically used to run the query using the `find()` function.
|
|
4218
|
+
*
|
|
4219
|
+
* You can refine the query by chaining `ReferredFriendsQueryBuilder` functions onto the query. `ReferredFriendsQueryBuilder` functions enable you to sort, filter, and control the results `queryReferredFriend()` returns.
|
|
4220
|
+
*
|
|
4221
|
+
* `queryReferredFriend()` runs with these `ReferredFriendQueryBuilder` defaults, which you can override:
|
|
4222
|
+
*
|
|
4223
|
+
* - `limit(50)`
|
|
4224
|
+
* - `descending("_createdDate")`
|
|
4225
|
+
*
|
|
4226
|
+
* The functions that are chained to `queryReferredFriend()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('referringCustomerId'), the results are sorted first by the status, and then, if there are multiple results with the same status, the items are sorted by referring customer ID.
|
|
4219
4227
|
*/
|
|
4220
4228
|
(): ReferredFriendsQueryBuilder;
|
|
4221
4229
|
}
|
|
@@ -4310,7 +4318,6 @@ declare namespace index_d$1 {
|
|
|
4310
4318
|
export { type ActionEvent$1 as ActionEvent, type BaseEventMetadata$1 as BaseEventMetadata, type index_d$1_CreateReferredFriendOptions as CreateReferredFriendOptions, type index_d$1_CreateReferredFriendRequest as CreateReferredFriendRequest, type index_d$1_CreateReferredFriendResponse as CreateReferredFriendResponse, type index_d$1_CreateReferredFriendResponseNonNullableFields as CreateReferredFriendResponseNonNullableFields, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type CursorQuery$1 as CursorQuery, type CursorQueryPagingMethodOneOf$1 as CursorQueryPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$1_DeleteReferredFriendOptions as DeleteReferredFriendOptions, type index_d$1_DeleteReferredFriendRequest as DeleteReferredFriendRequest, type index_d$1_DeleteReferredFriendResponse as DeleteReferredFriendResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type index_d$1_Empty as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type index_d$1_GetReferredFriendByContactIdRequest as GetReferredFriendByContactIdRequest, type index_d$1_GetReferredFriendByContactIdResponse as GetReferredFriendByContactIdResponse, type index_d$1_GetReferredFriendByContactIdResponseNonNullableFields as GetReferredFriendByContactIdResponseNonNullableFields, type index_d$1_GetReferredFriendRequest as GetReferredFriendRequest, type index_d$1_GetReferredFriendResponse as GetReferredFriendResponse, type index_d$1_GetReferredFriendResponseNonNullableFields as GetReferredFriendResponseNonNullableFields, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type MessageEnvelope$1 as MessageEnvelope, type index_d$1_QueryReferredFriendRequest as QueryReferredFriendRequest, type index_d$1_QueryReferredFriendResponse as QueryReferredFriendResponse, type index_d$1_QueryReferredFriendResponseNonNullableFields as QueryReferredFriendResponseNonNullableFields, type index_d$1_ReferredFriend as ReferredFriend, type index_d$1_ReferredFriendCreatedEnvelope as ReferredFriendCreatedEnvelope, type index_d$1_ReferredFriendDeletedEnvelope as ReferredFriendDeletedEnvelope, type index_d$1_ReferredFriendDetails as ReferredFriendDetails, type index_d$1_ReferredFriendNonNullableFields as ReferredFriendNonNullableFields, type index_d$1_ReferredFriendUpdatedEnvelope as ReferredFriendUpdatedEnvelope, type index_d$1_ReferredFriendsQueryBuilder as ReferredFriendsQueryBuilder, type index_d$1_ReferredFriendsQueryResult as ReferredFriendsQueryResult, type RestoreInfo$1 as RestoreInfo, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, index_d$1_Status as Status, type index_d$1_SuccessfulReferralEvent as SuccessfulReferralEvent, type index_d$1_UpdateReferredFriend as UpdateReferredFriend, type index_d$1_UpdateReferredFriendRequest as UpdateReferredFriendRequest, type index_d$1_UpdateReferredFriendResponse as UpdateReferredFriendResponse, type index_d$1_UpdateReferredFriendResponseNonNullableFields as UpdateReferredFriendResponseNonNullableFields, WebhookIdentityType$1 as WebhookIdentityType, type index_d$1__publicOnReferredFriendCreatedType as _publicOnReferredFriendCreatedType, type index_d$1__publicOnReferredFriendDeletedType as _publicOnReferredFriendDeletedType, type index_d$1__publicOnReferredFriendUpdatedType as _publicOnReferredFriendUpdatedType, index_d$1_createReferredFriend as createReferredFriend, index_d$1_deleteReferredFriend as deleteReferredFriend, index_d$1_getReferredFriend as getReferredFriend, index_d$1_getReferredFriendByContactId as getReferredFriendByContactId, index_d$1_onReferredFriendCreated as onReferredFriendCreated, index_d$1_onReferredFriendDeleted as onReferredFriendDeleted, index_d$1_onReferredFriendUpdated as onReferredFriendUpdated, onReferredFriendCreated$1 as publicOnReferredFriendCreated, onReferredFriendDeleted$1 as publicOnReferredFriendDeleted, onReferredFriendUpdated$1 as publicOnReferredFriendUpdated, index_d$1_queryReferredFriend as queryReferredFriend, index_d$1_updateReferredFriend as updateReferredFriend };
|
|
4311
4319
|
}
|
|
4312
4320
|
|
|
4313
|
-
/** ReferringCustomer is the main entity of ReferringCustomers. */
|
|
4314
4321
|
interface ReferringCustomer {
|
|
4315
4322
|
/**
|
|
4316
4323
|
* ID of the referring customer.
|
|
@@ -4748,12 +4755,19 @@ interface GetReferringCustomerByReferralCodeSignature {
|
|
|
4748
4755
|
declare function queryReferringCustomers$1(httpClient: HttpClient): QueryReferringCustomersSignature;
|
|
4749
4756
|
interface QueryReferringCustomersSignature {
|
|
4750
4757
|
/**
|
|
4751
|
-
*
|
|
4758
|
+
* Creates a query to retrieve a list of referring customers.
|
|
4752
4759
|
*
|
|
4753
|
-
*
|
|
4754
|
-
*
|
|
4755
|
-
*
|
|
4756
|
-
*
|
|
4760
|
+
* The `queryReferringCustomers()` function builds a query to retrieve a list of events and returns a `ReferringCustomersQueryBuilder` object.
|
|
4761
|
+
*
|
|
4762
|
+
* The returned object contains the query definition, which is typically used to run the query using the `find()` function.
|
|
4763
|
+
*
|
|
4764
|
+
* You can refine the query by chaining `ReferringCustomersQueryBuilder` functions onto the query. `ReferringCustomersQueryBuilder` functions enable you to sort, filter, and control the results `queryReferringCustomers()` returns.
|
|
4765
|
+
*
|
|
4766
|
+
* `queryReferringCustomers()` runs with these `ReferringCustomersQueryBuilder` defaults, which you can override:
|
|
4767
|
+
*
|
|
4768
|
+
* - `limit(50)`
|
|
4769
|
+
* - `descending("_createdDate")`
|
|
4770
|
+
* The functions that are chained to `queryReferringCustomers()` are applied in the order they're called. For example, if you apply ascending('referralCode') and then descending('contactID'), the results are sorted first by the referral code, and then, if there are multiple results with the same referral code, the items are sorted by contact ID.
|
|
4757
4771
|
*/
|
|
4758
4772
|
(): ReferringCustomersQueryBuilder;
|
|
4759
4773
|
}
|
|
@@ -2669,10 +2669,11 @@ interface UpdateReferredFriendResponse$1 {
|
|
|
2669
2669
|
referredFriend?: ReferredFriend$1;
|
|
2670
2670
|
}
|
|
2671
2671
|
interface DeleteReferredFriendRequest$1 {
|
|
2672
|
+
/** ID of the referred friend to delete. */
|
|
2672
2673
|
referredFriendId: string;
|
|
2673
2674
|
/**
|
|
2674
2675
|
* Revision number, which increments by 1 each time the referred friend is updated.
|
|
2675
|
-
* To prevent conflicting changes, the current revision must be passed when
|
|
2676
|
+
* To prevent conflicting changes, the current revision must be passed when deleting the referred friend.
|
|
2676
2677
|
*/
|
|
2677
2678
|
revision?: string;
|
|
2678
2679
|
}
|
|
@@ -2855,10 +2856,11 @@ interface UpdateReferredFriendResponse {
|
|
|
2855
2856
|
referredFriend?: ReferredFriend;
|
|
2856
2857
|
}
|
|
2857
2858
|
interface DeleteReferredFriendRequest {
|
|
2859
|
+
/** ID of the referred friend to delete. */
|
|
2858
2860
|
referredFriendId: string;
|
|
2859
2861
|
/**
|
|
2860
2862
|
* Revision number, which increments by 1 each time the referred friend is updated.
|
|
2861
|
-
* To prevent conflicting changes, the current revision must be passed when
|
|
2863
|
+
* To prevent conflicting changes, the current revision must be passed when deleting the referred friend.
|
|
2862
2864
|
*/
|
|
2863
2865
|
revision?: string;
|
|
2864
2866
|
}
|
|
@@ -3000,7 +3002,6 @@ declare namespace meta$1 {
|
|
|
3000
3002
|
export { type __PublicMethodMetaInfo$1 as __PublicMethodMetaInfo, meta$1_createReferredFriend as createReferredFriend, meta$1_deleteReferredFriend as deleteReferredFriend, meta$1_getReferredFriend as getReferredFriend, meta$1_getReferredFriendByContactId as getReferredFriendByContactId, meta$1_queryReferredFriend as queryReferredFriend, meta$1_updateReferredFriend as updateReferredFriend };
|
|
3001
3003
|
}
|
|
3002
3004
|
|
|
3003
|
-
/** ReferringCustomer is the main entity of ReferringCustomers. */
|
|
3004
3005
|
interface ReferringCustomer$1 {
|
|
3005
3006
|
/**
|
|
3006
3007
|
* ID of the referring customer.
|
|
@@ -3162,7 +3163,6 @@ interface QueryReferringCustomersResponseNonNullableFields$1 {
|
|
|
3162
3163
|
referringCustomers: ReferringCustomerNonNullableFields$1[];
|
|
3163
3164
|
}
|
|
3164
3165
|
|
|
3165
|
-
/** ReferringCustomer is the main entity of ReferringCustomers. */
|
|
3166
3166
|
interface ReferringCustomer {
|
|
3167
3167
|
/**
|
|
3168
3168
|
* ID of the referring customer.
|