Skip to content

Commit ce7d935

Browse files
committed
Publish sdk.
1 parent 790a782 commit ce7d935

File tree

4 files changed

+126
-4
lines changed

4 files changed

+126
-4
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-10-24 Version: 1.1.13
2+
- Publish sdk.
3+
14
2024-10-23 Version: 3.13.18
25
- Update API Push and MassPush: add param AndroidNotificationThreadId
36

aliyun-net-sdk-dypnsapi/Dypnsapi/Model/V20170525/CreateVerifySchemeRequest.cs

+45
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,14 @@ public CreateVerifySchemeRequest()
5454

5555
private string email;
5656

57+
private string hmSignName;
58+
5759
private string packSign;
5860

5961
private string packName;
6062

63+
private string hmAppIdentifier;
64+
6165
private long? cuApiCode;
6266

6367
private string sceneType;
@@ -78,6 +82,8 @@ public CreateVerifySchemeRequest()
7882

7983
private string smsSignName;
8084

85+
private string hmPackageName;
86+
8187
public long? ResourceOwnerId
8288
{
8389
get
@@ -169,6 +175,19 @@ public string Email
169175
}
170176
}
171177

178+
public string HmSignName
179+
{
180+
get
181+
{
182+
return hmSignName;
183+
}
184+
set
185+
{
186+
hmSignName = value;
187+
DictionaryUtil.Add(QueryParameters, "HmSignName", value);
188+
}
189+
}
190+
172191
public string PackSign
173192
{
174193
get
@@ -195,6 +214,19 @@ public string PackName
195214
}
196215
}
197216

217+
public string HmAppIdentifier
218+
{
219+
get
220+
{
221+
return hmAppIdentifier;
222+
}
223+
set
224+
{
225+
hmAppIdentifier = value;
226+
DictionaryUtil.Add(QueryParameters, "HmAppIdentifier", value);
227+
}
228+
}
229+
198230
public long? CuApiCode
199231
{
200232
get
@@ -325,6 +357,19 @@ public string SmsSignName
325357
}
326358
}
327359

360+
public string HmPackageName
361+
{
362+
get
363+
{
364+
return hmPackageName;
365+
}
366+
set
367+
{
368+
hmPackageName = value;
369+
DictionaryUtil.Add(QueryParameters, "HmPackageName", value);
370+
}
371+
}
372+
328373
public override bool CheckShowJsonItemName()
329374
{
330375
return false;

aliyun-net-sdk-dypnsapi/Dypnsapi/Model/V20170525/GetAuthTokenRequest.cs

+75
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,22 @@ public GetAuthTokenRequest()
4646

4747
private string sceneCode;
4848

49+
private int? cuApiCode;
50+
4951
private string resourceOwnerAccount;
5052

53+
private int? ctApiCode;
54+
5155
private long? ownerId;
5256

57+
private string version;
58+
5359
private string url;
5460

61+
private int? bizType;
62+
63+
private int? cmApiCode;
64+
5565
public long? ResourceOwnerId
5666
{
5767
get
@@ -91,6 +101,19 @@ public string SceneCode
91101
}
92102
}
93103

104+
public int? CuApiCode
105+
{
106+
get
107+
{
108+
return cuApiCode;
109+
}
110+
set
111+
{
112+
cuApiCode = value;
113+
DictionaryUtil.Add(QueryParameters, "CuApiCode", value.ToString());
114+
}
115+
}
116+
94117
public string ResourceOwnerAccount
95118
{
96119
get
@@ -104,6 +127,19 @@ public string ResourceOwnerAccount
104127
}
105128
}
106129

130+
public int? CtApiCode
131+
{
132+
get
133+
{
134+
return ctApiCode;
135+
}
136+
set
137+
{
138+
ctApiCode = value;
139+
DictionaryUtil.Add(QueryParameters, "CtApiCode", value.ToString());
140+
}
141+
}
142+
107143
public long? OwnerId
108144
{
109145
get
@@ -117,6 +153,19 @@ public long? OwnerId
117153
}
118154
}
119155

156+
public string Version
157+
{
158+
get
159+
{
160+
return version;
161+
}
162+
set
163+
{
164+
version = value;
165+
DictionaryUtil.Add(QueryParameters, "Version", value);
166+
}
167+
}
168+
120169
public string Url
121170
{
122171
get
@@ -130,6 +179,32 @@ public string Url
130179
}
131180
}
132181

182+
public int? BizType
183+
{
184+
get
185+
{
186+
return bizType;
187+
}
188+
set
189+
{
190+
bizType = value;
191+
DictionaryUtil.Add(QueryParameters, "BizType", value.ToString());
192+
}
193+
}
194+
195+
public int? CmApiCode
196+
{
197+
get
198+
{
199+
return cmApiCode;
200+
}
201+
set
202+
{
203+
cmApiCode = value;
204+
DictionaryUtil.Add(QueryParameters, "CmApiCode", value.ToString());
205+
}
206+
}
207+
133208
public override bool CheckShowJsonItemName()
134209
{
135210
return false;

aliyun-net-sdk-dypnsapi/aliyun-net-sdk-dypnsapi.vs2017.csproj

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.Dypnsapi</RootNamespace>
6-
<Version>1.1.12</Version>
6+
<Version>1.1.13</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
@@ -24,11 +24,10 @@
2424
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2525
</PackageReference>
2626
</ItemGroup>
27-
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
28-
<PackageReference Include="Newtonsoft.Json" Version="[9.0.1,)"/>
27+
<ItemGroup>
28+
<PackageReference Include="Newtonsoft.Json" Version="[13.0.1,)"/>
2929
</ItemGroup>
3030
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
31-
<PackageReference Include="Newtonsoft.Json" Version="[6.0.1,)"/>
3231
<Reference Include="mscorlib"/>
3332
<Reference Include="System"/>
3433
<Reference Include="System.Core"/>

0 commit comments

Comments
 (0)