Skip to content

Commit e1b3a35

Browse files
committed
form view sdk changes
1 parent 2ec8cd6 commit e1b3a35

File tree

1,319 files changed

+5971
-4908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,319 files changed

+5971
-4908
lines changed

openapi-raw.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7697,7 +7697,7 @@ components:
76977697
type: array
76987698
items:
76997699
type: string
7700-
maxItems: 2
7700+
maxItems: 10
77017701
minItems: 1
77027702
name:
77037703
description: '_t__ApiAppCreate::NAME'
@@ -7723,7 +7723,7 @@ components:
77237723
type: array
77247724
items:
77257725
type: string
7726-
maxItems: 2
7726+
maxItems: 10
77277727
name:
77287728
description: '_t__ApiAppUpdate::NAME'
77297729
type: string
@@ -8025,6 +8025,7 @@ components:
80258025
enum:
80268026
- user_activity
80278027
- document_status
8028+
- sms_activity
80288029
maxItems: 2
80298030
minItems: 1
80308031
start_date:
@@ -11260,6 +11261,7 @@ components:
1126011261
enum:
1126111262
- user_activity
1126211263
- document_status
11264+
- sms_activity
1126311265
type: object
1126411266
x-internal-class: true
1126511267
SignatureRequestResponse:

openapi-sdk.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7797,7 +7797,7 @@ components:
77977797
type: array
77987798
items:
77997799
type: string
7800-
maxItems: 2
7800+
maxItems: 10
78017801
minItems: 1
78027802
name:
78037803
description: 'The name you want to assign to the ApiApp.'
@@ -7823,7 +7823,7 @@ components:
78237823
type: array
78247824
items:
78257825
type: string
7826-
maxItems: 2
7826+
maxItems: 10
78277827
name:
78287828
description: 'The name you want to assign to the ApiApp.'
78297829
type: string
@@ -8139,6 +8139,7 @@ components:
81398139
enum:
81408140
- user_activity
81418141
- document_status
8142+
- sms_activity
81428143
maxItems: 2
81438144
minItems: 1
81448145
start_date:
@@ -11899,6 +11900,7 @@ components:
1189911900
enum:
1190011901
- user_activity
1190111902
- document_status
11903+
- sms_activity
1190211904
type: object
1190311905
x-internal-class: true
1190411906
SignatureRequestResponse:

openapi.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7797,7 +7797,7 @@ components:
77977797
type: array
77987798
items:
77997799
type: string
7800-
maxItems: 2
7800+
maxItems: 10
78017801
minItems: 1
78027802
name:
78037803
description: 'The name you want to assign to the ApiApp.'
@@ -7823,7 +7823,7 @@ components:
78237823
type: array
78247824
items:
78257825
type: string
7826-
maxItems: 2
7826+
maxItems: 10
78277827
name:
78287828
description: 'The name you want to assign to the ApiApp.'
78297829
type: string
@@ -8139,6 +8139,7 @@ components:
81398139
enum:
81408140
- user_activity
81418141
- document_status
8142+
- sms_activity
81428143
maxItems: 2
81438144
minItems: 1
81448145
start_date:
@@ -11877,6 +11878,7 @@ components:
1187711878
enum:
1187811879
- user_activity
1187911880
- document_status
11881+
- sms_activity
1188011882
type: object
1188111883
x-internal-class: true
1188211884
SignatureRequestResponse:

sdks/dotnet/src/Dropbox.Sign/Model/ReportCreateRequest.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ public enum ReportTypeEnum
4949
/// Enum DocumentStatus for value: document_status
5050
/// </summary>
5151
[EnumMember(Value = "document_status")]
52-
DocumentStatus = 2
52+
DocumentStatus = 2,
53+
54+
/// <summary>
55+
/// Enum SmsActivity for value: sms_activity
56+
/// </summary>
57+
[EnumMember(Value = "sms_activity")]
58+
SmsActivity = 3
5359
}
5460

5561
/// <summary>

sdks/dotnet/src/Dropbox.Sign/Model/ReportResponse.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ public enum ReportTypeEnum
4949
/// Enum DocumentStatus for value: document_status
5050
/// </summary>
5151
[EnumMember(Value = "document_status")]
52-
DocumentStatus = 2
52+
DocumentStatus = 2,
53+
54+
/// <summary>
55+
/// Enum SmsActivity for value: sms_activity
56+
/// </summary>
57+
[EnumMember(Value = "sms_activity")]
58+
SmsActivity = 3
5359
}
5460

5561
/// <summary>

sdks/java-v1/docs/ReportCreateRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
---- | -----
2121
| USER_ACTIVITY | &quot;user_activity&quot; |
2222
| DOCUMENT_STATUS | &quot;document_status&quot; |
23+
| SMS_ACTIVITY | &quot;sms_activity&quot; |
2324

2425

2526

sdks/java-v1/docs/ReportResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ _t__ReportResponse::DESCRIPTION
2121
---- | -----
2222
| USER_ACTIVITY | &quot;user_activity&quot; |
2323
| DOCUMENT_STATUS | &quot;document_status&quot; |
24+
| SMS_ACTIVITY | &quot;sms_activity&quot; |
2425

2526

2627

sdks/java-v1/src/main/java/com/dropbox/sign/model/ReportCreateRequest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ public class ReportCreateRequest {
4545
public enum ReportTypeEnum {
4646
USER_ACTIVITY(String.valueOf("user_activity")),
4747

48-
DOCUMENT_STATUS(String.valueOf("document_status"));
48+
DOCUMENT_STATUS(String.valueOf("document_status")),
49+
50+
SMS_ACTIVITY(String.valueOf("sms_activity"));
4951

5052
private String value;
5153

sdks/java-v1/src/main/java/com/dropbox/sign/model/ReportResponse.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ public class ReportResponse {
5252
public enum ReportTypeEnum {
5353
USER_ACTIVITY(String.valueOf("user_activity")),
5454

55-
DOCUMENT_STATUS(String.valueOf("document_status"));
55+
DOCUMENT_STATUS(String.valueOf("document_status")),
56+
57+
SMS_ACTIVITY(String.valueOf("sms_activity"));
5658

5759
private String value;
5860

sdks/java-v2/docs/AccountCreateResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
|------------ | ------------- | ------------- | -------------|
1111
| `account`<sup>*_required_</sup> | [```AccountResponse```](AccountResponse.md) | | |
1212
| `oauthData` | [```OAuthTokenResponse```](OAuthTokenResponse.md) | | |
13-
| `warnings` | [```List<WarningResponse>```](WarningResponse.md) | A list of warnings. | |
13+
| `warnings` | [```List<WarningResponse>```](WarningResponse.md) | _t__WarningResponse::LIST_DESCRIPTION | |
1414

1515

1616

0 commit comments

Comments
 (0)