com.taptap.sdk.relationlite 4.10.1-beta.1 → 4.10.2

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.
Files changed (44) hide show
  1. package/Mobile/Editor/BuidPostProcessor.cs +56 -56
  2. package/Mobile/Editor/BuidPostProcessor.cs.meta +11 -11
  3. package/Mobile/Editor/NativeDependencies.xml +14 -14
  4. package/Mobile/Editor/NativeDependencies.xml.meta +7 -7
  5. package/Mobile/Editor/TapRelationLiteMobileProcessBuild.cs.meta +11 -11
  6. package/Mobile/Editor/TapSDK.RelationLite.Mobile.Editor.asmdef +18 -18
  7. package/Mobile/Editor/TapSDK.RelationLite.Mobile.Editor.asmdef.meta +7 -7
  8. package/Mobile/Editor.meta +8 -8
  9. package/Mobile/Runtime/TapSDK.RelationLite.Mobile.Runtime.asmdef +22 -22
  10. package/Mobile/Runtime/TapSDK.RelationLite.Mobile.Runtime.asmdef.meta +7 -7
  11. package/Mobile/Runtime/TapTapRelationLiteImpl.cs +385 -385
  12. package/Mobile/Runtime/TapTapRelationLiteImpl.cs.meta +11 -11
  13. package/Mobile/Runtime.meta +8 -8
  14. package/Mobile.meta +8 -8
  15. package/Runtime/Internal/Init/RelationLiteInitTask.cs +19 -19
  16. package/Runtime/Internal/Init/RelationLiteInitTask.cs.meta +11 -11
  17. package/Runtime/Internal/Init.meta +8 -8
  18. package/Runtime/Internal/TapTapRelationLiteManager.cs +98 -98
  19. package/Runtime/Internal/TapTapRelationLiteManager.cs.meta +11 -11
  20. package/Runtime/Internal.meta +8 -8
  21. package/Runtime/Public/FollowStatus.cs +19 -19
  22. package/Runtime/Public/FollowStatus.cs.meta +11 -11
  23. package/Runtime/Public/ITapTapRelationLite.cs +30 -30
  24. package/Runtime/Public/ITapTapRelationLite.cs.meta +11 -11
  25. package/Runtime/Public/ITapTapRelationLiteCallback.cs +8 -8
  26. package/Runtime/Public/ITapTapRelationLiteCallback.cs.meta +11 -11
  27. package/Runtime/Public/ITapTapRelationLiteRequestCallback.cs +15 -15
  28. package/Runtime/Public/ITapTapRelationLiteRequestCallback.cs.meta +11 -11
  29. package/Runtime/Public/RelationLiteUserInfo.cs +19 -19
  30. package/Runtime/Public/RelationLiteUserInfo.cs.meta +11 -11
  31. package/Runtime/Public/RelationLiteUserItem.cs +17 -17
  32. package/Runtime/Public/RelationLiteUserItem.cs.meta +11 -11
  33. package/Runtime/Public/TapRelationLiteUserResult.cs +17 -17
  34. package/Runtime/Public/TapRelationLiteUserResult.cs.meta +7 -7
  35. package/Runtime/Public/TapTapRelationLite.cs +77 -77
  36. package/Runtime/Public/TapTapRelationLite.cs.meta +11 -11
  37. package/Runtime/Public.meta +8 -8
  38. package/Runtime/TapSDK.RelationLite.Runtime.asmdef +14 -14
  39. package/Runtime/TapSDK.RelationLite.Runtime.asmdef.meta +7 -7
  40. package/Runtime.meta +8 -8
  41. package/link.xml +3 -3
  42. package/link.xml.meta +7 -7
  43. package/package.json +11 -11
  44. package/package.json.meta +7 -7
@@ -1,11 +1,11 @@
1
- fileFormatVersion: 2
2
- guid: af1c5d94c142b47f4b10fac9333806d8
3
- MonoImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- defaultReferences: []
7
- executionOrder: 0
8
- icon: {instanceID: 0}
9
- userData:
10
- assetBundleName:
11
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: af1c5d94c142b47f4b10fac9333806d8
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -1,18 +1,18 @@
1
- using System;
2
- using Newtonsoft.Json;
3
-
4
- namespace TapSDK.RelationLite
5
- {
6
- [Serializable]
7
- public class RelationLiteUserItem
8
- {
9
- [JsonProperty("follow_status")]
10
- public FollowStatus followStatus;
11
-
12
- [JsonProperty("created_at")]
13
- public long createdAt;
14
-
15
- [JsonProperty("user")]
16
- public RelationLiteUserInfo user;
17
- }
1
+ using System;
2
+ using Newtonsoft.Json;
3
+
4
+ namespace TapSDK.RelationLite
5
+ {
6
+ [Serializable]
7
+ public class RelationLiteUserItem
8
+ {
9
+ [JsonProperty("follow_status")]
10
+ public FollowStatus followStatus;
11
+
12
+ [JsonProperty("created_at")]
13
+ public long createdAt;
14
+
15
+ [JsonProperty("user")]
16
+ public RelationLiteUserInfo user;
17
+ }
18
18
  }
@@ -1,11 +1,11 @@
1
- fileFormatVersion: 2
2
- guid: 46adf4ef48e094ee59c36721f746dcad
3
- MonoImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- defaultReferences: []
7
- executionOrder: 0
8
- icon: {instanceID: 0}
9
- userData:
10
- assetBundleName:
11
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 46adf4ef48e094ee59c36721f746dcad
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -1,18 +1,18 @@
1
- using System;
2
- using System.Collections.Generic;
3
-
4
- namespace TapSDK.RelationLite
5
- {
6
- public class RelationLiteUserResult
7
- {
8
- public List<RelationLiteUserItem> list;
9
-
10
- public string nextPageToken;
11
-
12
- public RelationLiteUserResult(List<RelationLiteUserItem> data, string token)
13
- {
14
- this.list = data;
15
- this.nextPageToken = token;
16
- }
17
- }
1
+ using System;
2
+ using System.Collections.Generic;
3
+
4
+ namespace TapSDK.RelationLite
5
+ {
6
+ public class RelationLiteUserResult
7
+ {
8
+ public List<RelationLiteUserItem> list;
9
+
10
+ public string nextPageToken;
11
+
12
+ public RelationLiteUserResult(List<RelationLiteUserItem> data, string token)
13
+ {
14
+ this.list = data;
15
+ this.nextPageToken = token;
16
+ }
17
+ }
18
18
  }
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: f0bc0e8fb5db44ee6b3214bd6eeb4260
3
- DefaultImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: f0bc0e8fb5db44ee6b3214bd6eeb4260
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -1,78 +1,78 @@
1
- using System;
2
- using System.Collections.Generic;
3
- using TapSDK.RelationLite.Internal;
4
- using TapSDK.Core;
5
- using TapSDK.Core.Internal.Utils;
6
- using System.Threading.Tasks;
7
-
8
- namespace TapSDK.RelationLite
9
- {
10
- public class TapTapRelationLiteConstants
11
- {
12
- public static readonly int CALLBACK_CODE_ON_STOP = 500;
13
-
14
- // Relation action constants
15
- public static readonly int ACTION_FOLLOW = 1;
16
- public static readonly int ACTION_UNFOLLOW = 2;
17
- }
18
-
19
- public class TapTapRelationLite
20
- {
21
- public static void Init(string clientId, TapTapRegionType regionType)
22
- {
23
- TapTapRelationLiteManager.Instance.Init(clientId, regionType);
24
- }
25
-
26
- public static void InviteGame()
27
- {
28
- TapTapRelationLiteManager.Instance.InviteGame();
29
- }
30
-
31
- public static void InviteTeam(string teamId)
32
- {
33
- TapTapRelationLiteManager.Instance.InviteTeam(teamId);
34
- }
35
-
36
- public static Task<RelationLiteUserResult> GetFriendsList(string nextPageToken)
37
- {
38
- return TapTapRelationLiteManager.Instance.GetFriendsList(nextPageToken);
39
- }
40
-
41
- public static Task<RelationLiteUserResult> GetFollowingList(string nextPageToken)
42
- {
43
- return TapTapRelationLiteManager.Instance.GetFollowingList(nextPageToken);
44
- }
45
-
46
- public static Task<RelationLiteUserResult> GetFansList(string nextPageToken)
47
- {
48
- return TapTapRelationLiteManager.Instance.GetFansList(nextPageToken);
49
- }
50
-
51
- public static Task SyncRelationshipWithOpenId(int action, string nickname, string friendNickname, string friendOpenId)
52
- {
53
- return TapTapRelationLiteManager.Instance.SyncRelationshipWithOpenId(action, nickname, friendNickname, friendOpenId);
54
- }
55
-
56
- public static Task SyncRelationshipWithUnionId(int action, string nickname, string friendNickname, string friendUnionId)
57
- {
58
- return TapTapRelationLiteManager.Instance.SyncRelationshipWithUnionId(action, nickname, friendNickname, friendUnionId);
59
- }
60
-
61
- public static void ShowTapUserProfile(string openId, string unionId)
62
- {
63
- TapTapRelationLiteManager.Instance.ShowTapUserProfile(openId, unionId);
64
- }
65
-
66
- public static void RegisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
67
- {
68
- TapTapRelationLiteManager.Instance.RegisterRelationLiteCallback(callback);
69
- }
70
-
71
- public static void UnregisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
72
- {
73
- TapTapRelationLiteManager.Instance.UnregisterRelationLiteCallback(callback);
74
- }
75
-
76
- public static readonly string Version = "4.10.1-beta.1";
77
- }
1
+ using System;
2
+ using System.Collections.Generic;
3
+ using TapSDK.RelationLite.Internal;
4
+ using TapSDK.Core;
5
+ using TapSDK.Core.Internal.Utils;
6
+ using System.Threading.Tasks;
7
+
8
+ namespace TapSDK.RelationLite
9
+ {
10
+ public class TapTapRelationLiteConstants
11
+ {
12
+ public static readonly int CALLBACK_CODE_ON_STOP = 500;
13
+
14
+ // Relation action constants
15
+ public static readonly int ACTION_FOLLOW = 1;
16
+ public static readonly int ACTION_UNFOLLOW = 2;
17
+ }
18
+
19
+ public class TapTapRelationLite
20
+ {
21
+ public static void Init(string clientId, TapTapRegionType regionType)
22
+ {
23
+ TapTapRelationLiteManager.Instance.Init(clientId, regionType);
24
+ }
25
+
26
+ public static void InviteGame()
27
+ {
28
+ TapTapRelationLiteManager.Instance.InviteGame();
29
+ }
30
+
31
+ public static void InviteTeam(string teamId)
32
+ {
33
+ TapTapRelationLiteManager.Instance.InviteTeam(teamId);
34
+ }
35
+
36
+ public static Task<RelationLiteUserResult> GetFriendsList(string nextPageToken)
37
+ {
38
+ return TapTapRelationLiteManager.Instance.GetFriendsList(nextPageToken);
39
+ }
40
+
41
+ public static Task<RelationLiteUserResult> GetFollowingList(string nextPageToken)
42
+ {
43
+ return TapTapRelationLiteManager.Instance.GetFollowingList(nextPageToken);
44
+ }
45
+
46
+ public static Task<RelationLiteUserResult> GetFansList(string nextPageToken)
47
+ {
48
+ return TapTapRelationLiteManager.Instance.GetFansList(nextPageToken);
49
+ }
50
+
51
+ public static Task SyncRelationshipWithOpenId(int action, string nickname, string friendNickname, string friendOpenId)
52
+ {
53
+ return TapTapRelationLiteManager.Instance.SyncRelationshipWithOpenId(action, nickname, friendNickname, friendOpenId);
54
+ }
55
+
56
+ public static Task SyncRelationshipWithUnionId(int action, string nickname, string friendNickname, string friendUnionId)
57
+ {
58
+ return TapTapRelationLiteManager.Instance.SyncRelationshipWithUnionId(action, nickname, friendNickname, friendUnionId);
59
+ }
60
+
61
+ public static void ShowTapUserProfile(string openId, string unionId)
62
+ {
63
+ TapTapRelationLiteManager.Instance.ShowTapUserProfile(openId, unionId);
64
+ }
65
+
66
+ public static void RegisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
67
+ {
68
+ TapTapRelationLiteManager.Instance.RegisterRelationLiteCallback(callback);
69
+ }
70
+
71
+ public static void UnregisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
72
+ {
73
+ TapTapRelationLiteManager.Instance.UnregisterRelationLiteCallback(callback);
74
+ }
75
+
76
+ public static readonly string Version = "4.10.2";
77
+ }
78
78
  }
@@ -1,11 +1,11 @@
1
- fileFormatVersion: 2
2
- guid: 174475d58cd804709a7c2c75096455f9
3
- MonoImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- defaultReferences: []
7
- executionOrder: 0
8
- icon: {instanceID: 0}
9
- userData:
10
- assetBundleName:
11
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 174475d58cd804709a7c2c75096455f9
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -1,8 +1,8 @@
1
- fileFormatVersion: 2
2
- guid: 8556603e2afd5496390c7eb288ed379e
3
- folderAsset: yes
4
- DefaultImporter:
5
- externalObjects: {}
6
- userData:
7
- assetBundleName:
8
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 8556603e2afd5496390c7eb288ed379e
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -1,15 +1,15 @@
1
- {
2
- "name": "TapSDK.RelationLite.Runtime",
3
- "references": [
4
- "GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7"
5
- ],
6
- "includePlatforms": [],
7
- "excludePlatforms": [],
8
- "allowUnsafeCode": false,
9
- "overrideReferences": false,
10
- "precompiledReferences": [],
11
- "autoReferenced": true,
12
- "defineConstraints": [],
13
- "versionDefines": [],
14
- "noEngineReferences": false
1
+ {
2
+ "name": "TapSDK.RelationLite.Runtime",
3
+ "references": [
4
+ "GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7"
5
+ ],
6
+ "includePlatforms": [],
7
+ "excludePlatforms": [],
8
+ "allowUnsafeCode": false,
9
+ "overrideReferences": false,
10
+ "precompiledReferences": [],
11
+ "autoReferenced": true,
12
+ "defineConstraints": [],
13
+ "versionDefines": [],
14
+ "noEngineReferences": false
15
15
  }
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: 8880fb2a8006d444dbd9edc4ab2647af
3
- AssemblyDefinitionImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 8880fb2a8006d444dbd9edc4ab2647af
3
+ AssemblyDefinitionImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
package/Runtime.meta CHANGED
@@ -1,8 +1,8 @@
1
- fileFormatVersion: 2
2
- guid: c12b65975cd8c457dac75db0e82b032b
3
- folderAsset: yes
4
- DefaultImporter:
5
- externalObjects: {}
6
- userData:
7
- assetBundleName:
8
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: c12b65975cd8c457dac75db0e82b032b
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
package/link.xml CHANGED
@@ -1,4 +1,4 @@
1
- <linker>
2
- <assembly fullname="TapSDK.RelationLite.Runtime" preserve="all" />
3
- <assembly fullname="TapSDK.RelationLite.Mobile.Runtime" preserve="all" />
1
+ <linker>
2
+ <assembly fullname="TapSDK.RelationLite.Runtime" preserve="all" />
3
+ <assembly fullname="TapSDK.RelationLite.Mobile.Runtime" preserve="all" />
4
4
  </linker>
package/link.xml.meta CHANGED
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: ee67fbdc707b241dda5d2107f37df0fe
3
- TextScriptImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: ee67fbdc707b241dda5d2107f37df0fe
3
+ TextScriptImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
- {
2
- "name": "com.taptap.sdk.relationlite",
3
- "displayName": "TapTapSDK RelationLite",
4
- "description": "TapTapSDK RelationLite",
5
- "version": "4.10.1-beta.1",
6
- "unity": "2019.4",
7
- "license": "MIT",
8
- "dependencies": {
9
- "com.taptap.sdk.core": "4.10.1-beta.1",
10
- "com.taptap.sdk.login": "4.10.1-beta.1"
11
- }
1
+ {
2
+ "name": "com.taptap.sdk.relationlite",
3
+ "displayName": "TapTapSDK RelationLite",
4
+ "description": "TapTapSDK RelationLite",
5
+ "version": "4.10.2",
6
+ "unity": "2019.4",
7
+ "license": "MIT",
8
+ "dependencies": {
9
+ "com.taptap.sdk.core": "4.10.2",
10
+ "com.taptap.sdk.login": "4.10.2"
11
+ }
12
12
  }
package/package.json.meta CHANGED
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: c3c19870c550d4bd19214dd380f5ac6c
3
- TextScriptImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: c3c19870c550d4bd19214dd380f5ac6c
3
+ TextScriptImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant: