dropbox-sign 1.1.0 → 1.1.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -1
- data/README.md +4 -4
- data/VERSION +1 -1
- data/docs/SignatureRequestCreateEmbeddedRequest.md +2 -2
- data/docs/SignatureRequestSendRequest.md +1 -1
- data/docs/SubFormFieldsPerDocumentBase.md +1 -1
- data/docs/TemplateCreateEmbeddedDraftRequest.md +1 -1
- data/docs/TemplateResponseDocumentCustomFieldBase.md +0 -1
- data/docs/TemplateResponseDocumentFormFieldBase.md +0 -1
- data/docs/TemplateResponseDocumentStaticFieldBase.md +0 -1
- data/docs/UnclaimedDraftCreateEmbeddedRequest.md +1 -1
- data/docs/UnclaimedDraftCreateRequest.md +1 -1
- data/lib/dropbox-sign/configuration.rb +1 -1
- data/lib/dropbox-sign/models/signature_request_create_embedded_request.rb +2 -2
- data/lib/dropbox-sign/models/signature_request_send_request.rb +1 -1
- data/lib/dropbox-sign/models/sub_form_fields_per_document_base.rb +1 -1
- data/lib/dropbox-sign/models/template_create_embedded_draft_request.rb +1 -1
- data/lib/dropbox-sign/models/template_response_document_custom_field_base.rb +5 -16
- data/lib/dropbox-sign/models/template_response_document_form_field_base.rb +5 -16
- data/lib/dropbox-sign/models/template_response_document_static_field_base.rb +5 -16
- data/lib/dropbox-sign/models/unclaimed_draft_create_embedded_request.rb +1 -1
- data/lib/dropbox-sign/models/unclaimed_draft_create_request.rb +1 -1
- data/lib/dropbox-sign/version.rb +1 -1
- data/openapi-config.yaml +1 -1
- data/openapi-sdk.yaml +902 -962
- data/spec/configuration_spec.rb +5 -7
- data/templates/configuration.mustache +1 -1
- data/templates/configuration_spec.mustache +5 -7
- data/test_fixtures/TemplateGetResponse.json +22 -84
- data/test_fixtures/TemplateListResponse.json +9 -39
- metadata +8 -8
data/spec/configuration_spec.rb
CHANGED
@@ -17,18 +17,16 @@ describe Dropbox::Sign::Configuration do
|
|
17
17
|
|
18
18
|
before(:each) do
|
19
19
|
# uncomment below to setup host and base_path
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
# c.base_path = uri.path
|
25
|
-
# end
|
20
|
+
Dropbox::Sign.configure do |c|
|
21
|
+
c.host = "api.hellosign.com"
|
22
|
+
c.base_path = "/v3"
|
23
|
+
end
|
26
24
|
end
|
27
25
|
|
28
26
|
describe '#base_url' do
|
29
27
|
it 'should have the default value' do
|
30
28
|
# uncomment below to test default value of the base path
|
31
|
-
|
29
|
+
expect(config.base_url).to eq("https://api.hellosign.com/v3")
|
32
30
|
end
|
33
31
|
|
34
32
|
it 'should remove trailing slashes' do
|
@@ -229,7 +229,7 @@ module {{moduleName}}
|
|
229
229
|
[
|
230
230
|
{{#servers}}
|
231
231
|
{
|
232
|
-
url: "#{scheme}://#{host
|
232
|
+
url: "#{scheme}://#{[host, base_path].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, ''),
|
233
233
|
description: "{{{description}}}{{^description}}No description provided{{/description}}",
|
234
234
|
{{#variables}}
|
235
235
|
{{#-first}}
|
@@ -9,18 +9,16 @@ describe {{moduleName}}::Configuration do
|
|
9
9
|
|
10
10
|
before(:each) do
|
11
11
|
# uncomment below to setup host and base_path
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
# c.base_path = uri.path
|
17
|
-
# end
|
12
|
+
{{moduleName}}.configure do |c|
|
13
|
+
c.host = "{{host}}"
|
14
|
+
c.base_path = "{{contextPath}}"
|
15
|
+
end
|
18
16
|
end
|
19
17
|
|
20
18
|
describe '#base_url' do
|
21
19
|
it 'should have the default value' do
|
22
20
|
# uncomment below to test default value of the base path
|
23
|
-
|
21
|
+
expect(config.base_url).to eq("{{{basePath}}}")
|
24
22
|
end
|
25
23
|
|
26
24
|
it 'should remove trailing slashes' do
|
@@ -52,7 +52,6 @@
|
|
52
52
|
"height": 15,
|
53
53
|
"required": false,
|
54
54
|
"api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
|
55
|
-
"fontSize": 12,
|
56
55
|
"avg_text_length": {
|
57
56
|
"num_lines": 1,
|
58
57
|
"num_chars_per_line": 19
|
@@ -69,8 +68,7 @@
|
|
69
68
|
"width": 18,
|
70
69
|
"height": 18,
|
71
70
|
"required": false,
|
72
|
-
"api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f"
|
73
|
-
"fontSize": 12
|
71
|
+
"api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f"
|
74
72
|
}
|
75
73
|
],
|
76
74
|
"form_fields": [
|
@@ -83,8 +81,7 @@
|
|
83
81
|
"width": 108,
|
84
82
|
"height": 27,
|
85
83
|
"required": true,
|
86
|
-
"api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348"
|
87
|
-
"fontSize": 12
|
84
|
+
"api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348"
|
88
85
|
},
|
89
86
|
{
|
90
87
|
"name": "Textbox1",
|
@@ -96,7 +93,6 @@
|
|
96
93
|
"height": 14,
|
97
94
|
"required": true,
|
98
95
|
"api_id": "7ec10d80-53c9-433b-b252-0b8daa90a8e0",
|
99
|
-
"fontSize": 12,
|
100
96
|
"avg_text_length": {
|
101
97
|
"num_lines": 1,
|
102
98
|
"num_chars_per_line": 38
|
@@ -115,7 +111,6 @@
|
|
115
111
|
"height": 14,
|
116
112
|
"required": true,
|
117
113
|
"api_id": "6574e6ad-7dac-49a2-9d56-650d7c5ade6e",
|
118
|
-
"fontSize": 12,
|
119
114
|
"avg_text_length": {
|
120
115
|
"num_lines": 1,
|
121
116
|
"num_chars_per_line": 38
|
@@ -133,8 +128,7 @@
|
|
133
128
|
"width": 72,
|
134
129
|
"height": 27,
|
135
130
|
"required": true,
|
136
|
-
"api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552"
|
137
|
-
"fontSize": 12
|
131
|
+
"api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552"
|
138
132
|
},
|
139
133
|
{
|
140
134
|
"name": "Checkbox1",
|
@@ -146,8 +140,7 @@
|
|
146
140
|
"height": 18,
|
147
141
|
"required": false,
|
148
142
|
"api_id": "d4d6ada9-e1dc-419e-bc0d-1478da694449",
|
149
|
-
"group": "75a6e4b5fea47"
|
150
|
-
"fontSize": 12
|
143
|
+
"group": "75a6e4b5fea47"
|
151
144
|
},
|
152
145
|
{
|
153
146
|
"name": "Dropdown1",
|
@@ -158,8 +151,7 @@
|
|
158
151
|
"width": 70,
|
159
152
|
"height": 14,
|
160
153
|
"required": true,
|
161
|
-
"api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2"
|
162
|
-
"fontSize": 12
|
154
|
+
"api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2"
|
163
155
|
},
|
164
156
|
{
|
165
157
|
"name": "DateSigned1",
|
@@ -170,8 +162,7 @@
|
|
170
162
|
"width": 105,
|
171
163
|
"height": 18,
|
172
164
|
"required": true,
|
173
|
-
"api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262"
|
174
|
-
"fontSize": 12
|
165
|
+
"api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262"
|
175
166
|
},
|
176
167
|
{
|
177
168
|
"name": "Checkbox2",
|
@@ -183,8 +174,7 @@
|
|
183
174
|
"height": 18,
|
184
175
|
"required": false,
|
185
176
|
"api_id": "edd732b8-b158-4714-a87b-503637d09ded",
|
186
|
-
"group": "75a6e4b5fea47"
|
187
|
-
"fontSize": 12
|
177
|
+
"group": "75a6e4b5fea47"
|
188
178
|
},
|
189
179
|
{
|
190
180
|
"name": "FullName1",
|
@@ -196,7 +186,6 @@
|
|
196
186
|
"height": 14,
|
197
187
|
"required": true,
|
198
188
|
"api_id": "62fd3f85-4808-4011-8eae-a14ebe9105ef",
|
199
|
-
"fontSize": 12,
|
200
189
|
"avg_text_length": {
|
201
190
|
"num_lines": 1,
|
202
191
|
"num_chars_per_line": 19
|
@@ -215,7 +204,6 @@
|
|
215
204
|
"height": 14,
|
216
205
|
"required": true,
|
217
206
|
"api_id": "a1c9bc6b-d498-4787-86e0-30ea779f06a7",
|
218
|
-
"fontSize": 12,
|
219
207
|
"avg_text_length": {
|
220
208
|
"num_lines": 1,
|
221
209
|
"num_chars_per_line": 38
|
@@ -235,8 +223,7 @@
|
|
235
223
|
"height": 18,
|
236
224
|
"required": false,
|
237
225
|
"api_id": "fc8a1277-f757-47a2-aeea-5113fa81f2d5",
|
238
|
-
"group": "0831822584086"
|
239
|
-
"fontSize": 12
|
226
|
+
"group": "0831822584086"
|
240
227
|
},
|
241
228
|
{
|
242
229
|
"name": "Company1",
|
@@ -248,7 +235,6 @@
|
|
248
235
|
"height": 14,
|
249
236
|
"required": true,
|
250
237
|
"api_id": "279b4e7f-e71f-426d-845c-6308cddde379",
|
251
|
-
"fontSize": 12,
|
252
238
|
"avg_text_length": {
|
253
239
|
"num_lines": 1,
|
254
240
|
"num_chars_per_line": 38
|
@@ -267,7 +253,6 @@
|
|
267
253
|
"height": 14,
|
268
254
|
"required": true,
|
269
255
|
"api_id": "8809e39a-a46c-4dae-aaf9-06fc6355d80f",
|
270
|
-
"fontSize": 12,
|
271
256
|
"avg_text_length": {
|
272
257
|
"num_lines": 1,
|
273
258
|
"num_chars_per_line": 38
|
@@ -286,8 +271,7 @@
|
|
286
271
|
"height": 18,
|
287
272
|
"required": false,
|
288
273
|
"api_id": "f7b6b70d-0522-4ab7-bfec-b86f147c8be3",
|
289
|
-
"group": "0831822584086"
|
290
|
-
"fontSize": 12
|
274
|
+
"group": "0831822584086"
|
291
275
|
},
|
292
276
|
{
|
293
277
|
"name": "Textbox3",
|
@@ -299,7 +283,6 @@
|
|
299
283
|
"height": 14,
|
300
284
|
"required": true,
|
301
285
|
"api_id": "bad7512a-e22b-46ed-ba03-123db0eda932",
|
302
|
-
"fontSize": 12,
|
303
286
|
"avg_text_length": {
|
304
287
|
"num_lines": 1,
|
305
288
|
"num_chars_per_line": 38
|
@@ -318,7 +301,6 @@
|
|
318
301
|
"height": 14,
|
319
302
|
"required": true,
|
320
303
|
"api_id": "368ed029-bc93-4f92-8f7a-14c3bf8109b5",
|
321
|
-
"fontSize": 12,
|
322
304
|
"avg_text_length": {
|
323
305
|
"num_lines": 1,
|
324
306
|
"num_chars_per_line": 19
|
@@ -338,7 +320,6 @@
|
|
338
320
|
"height": 14,
|
339
321
|
"required": true,
|
340
322
|
"api_id": "ecf2ae95-d2e6-41b2-819a-836a6fa8c7c5",
|
341
|
-
"fontSize": 12,
|
342
323
|
"avg_text_length": {
|
343
324
|
"num_lines": 1,
|
344
325
|
"num_chars_per_line": 19
|
@@ -358,7 +339,6 @@
|
|
358
339
|
"height": 14,
|
359
340
|
"required": true,
|
360
341
|
"api_id": "3cb90a0a-a433-4f30-8af8-8fb4c747b704",
|
361
|
-
"fontSize": 12,
|
362
342
|
"avg_text_length": {
|
363
343
|
"num_lines": 1,
|
364
344
|
"num_chars_per_line": 19
|
@@ -378,7 +358,6 @@
|
|
378
358
|
"height": 14,
|
379
359
|
"required": true,
|
380
360
|
"api_id": "5b9eb331-c97d-435b-a563-d936a9b930c0",
|
381
|
-
"fontSize": 12,
|
382
361
|
"avg_text_length": {
|
383
362
|
"num_lines": 1,
|
384
363
|
"num_chars_per_line": 19
|
@@ -398,7 +377,6 @@
|
|
398
377
|
"height": 14,
|
399
378
|
"required": true,
|
400
379
|
"api_id": "2b98ce7e-e53a-4cf8-a9f3-d7fb18d88631",
|
401
|
-
"fontSize": 12,
|
402
380
|
"avg_text_length": {
|
403
381
|
"num_lines": 1,
|
404
382
|
"num_chars_per_line": 19
|
@@ -418,7 +396,6 @@
|
|
418
396
|
"height": 14,
|
419
397
|
"required": true,
|
420
398
|
"api_id": "5f52c011-2c5f-4143-bf04-4694fb4a0d3f",
|
421
|
-
"fontSize": 12,
|
422
399
|
"avg_text_length": {
|
423
400
|
"num_lines": 1,
|
424
401
|
"num_chars_per_line": 19
|
@@ -438,7 +415,6 @@
|
|
438
415
|
"height": 14,
|
439
416
|
"required": true,
|
440
417
|
"api_id": "47457b7d-b1e8-41a0-93ad-60ba30e64bb1",
|
441
|
-
"fontSize": 12,
|
442
418
|
"avg_text_length": {
|
443
419
|
"num_lines": 1,
|
444
420
|
"num_chars_per_line": 19
|
@@ -458,7 +434,6 @@
|
|
458
434
|
"height": 14,
|
459
435
|
"required": true,
|
460
436
|
"api_id": "18e3f994-1675-4d58-9b4a-4f92a2614551",
|
461
|
-
"fontSize": 12,
|
462
437
|
"avg_text_length": {
|
463
438
|
"num_lines": 1,
|
464
439
|
"num_chars_per_line": 19
|
@@ -478,7 +453,6 @@
|
|
478
453
|
"height": 14,
|
479
454
|
"required": true,
|
480
455
|
"api_id": "9ad4b8cc-bac9-432b-8836-9f80f86fc7e0",
|
481
|
-
"fontSize": 12,
|
482
456
|
"avg_text_length": {
|
483
457
|
"num_lines": 1,
|
484
458
|
"num_chars_per_line": 19
|
@@ -497,7 +471,6 @@
|
|
497
471
|
"height": 14,
|
498
472
|
"required": true,
|
499
473
|
"api_id": "58c5f942-04fb-45f1-9703-5e8411f3a3bb",
|
500
|
-
"fontSize": 12,
|
501
474
|
"avg_text_length": {
|
502
475
|
"num_lines": 1,
|
503
476
|
"num_chars_per_line": 19
|
@@ -517,7 +490,6 @@
|
|
517
490
|
"height": 14,
|
518
491
|
"required": false,
|
519
492
|
"api_id": "fd928b56-cf59-40a4-9a90-62f97ffd0ddc",
|
520
|
-
"fontSize": 12,
|
521
493
|
"avg_text_length": {
|
522
494
|
"num_lines": 1,
|
523
495
|
"num_chars_per_line": 30
|
@@ -536,7 +508,6 @@
|
|
536
508
|
"height": 14,
|
537
509
|
"required": true,
|
538
510
|
"api_id": "e48c388d-8c26-4f20-848e-f8587a631746",
|
539
|
-
"fontSize": 12,
|
540
511
|
"avg_text_length": {
|
541
512
|
"num_lines": 1,
|
542
513
|
"num_chars_per_line": 19
|
@@ -557,8 +528,7 @@
|
|
557
528
|
"width": 108,
|
558
529
|
"height": 27,
|
559
530
|
"required": false,
|
560
|
-
"api_id": "988565fd-6f85-4081-9fa4-5ae51e16dfc9"
|
561
|
-
"fontSize": 12
|
531
|
+
"api_id": "988565fd-6f85-4081-9fa4-5ae51e16dfc9"
|
562
532
|
},
|
563
533
|
{
|
564
534
|
"name": "me_now_radio_1",
|
@@ -569,8 +539,7 @@
|
|
569
539
|
"width": 18,
|
570
540
|
"height": 18,
|
571
541
|
"required": false,
|
572
|
-
"api_id": "f008a911-26c2-4d7c-baef-d82c7e180f7a"
|
573
|
-
"fontSize": 12
|
542
|
+
"api_id": "f008a911-26c2-4d7c-baef-d82c7e180f7a"
|
574
543
|
},
|
575
544
|
{
|
576
545
|
"name": "me_now_date_signed_1",
|
@@ -581,8 +550,7 @@
|
|
581
550
|
"width": 86,
|
582
551
|
"height": 14,
|
583
552
|
"required": false,
|
584
|
-
"api_id": "1220d8b3-7b2c-4ea7-971a-333e03839922"
|
585
|
-
"fontSize": 12
|
553
|
+
"api_id": "1220d8b3-7b2c-4ea7-971a-333e03839922"
|
586
554
|
},
|
587
555
|
{
|
588
556
|
"name": "me_now_text_1",
|
@@ -593,8 +561,7 @@
|
|
593
561
|
"width": 101,
|
594
562
|
"height": 14,
|
595
563
|
"required": false,
|
596
|
-
"api_id": "0829b343-71d2-4719-b563-808b8997174f"
|
597
|
-
"fontSize": 12
|
564
|
+
"api_id": "0829b343-71d2-4719-b563-808b8997174f"
|
598
565
|
}
|
599
566
|
]
|
600
567
|
}
|
@@ -609,7 +576,6 @@
|
|
609
576
|
"height": 15,
|
610
577
|
"required": false,
|
611
578
|
"api_id": "967c3e5f-2912-4f53-8ea3-c750652d29fc",
|
612
|
-
"fontSize": 12,
|
613
579
|
"avg_text_length": {
|
614
580
|
"num_lines": 1,
|
615
581
|
"num_chars_per_line": 19
|
@@ -626,8 +592,7 @@
|
|
626
592
|
"width": 18,
|
627
593
|
"height": 18,
|
628
594
|
"required": false,
|
629
|
-
"api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f"
|
630
|
-
"fontSize": 12
|
595
|
+
"api_id": "5e8fe02f-51cf-4f0b-b1d9-2b1e4f6ad07f"
|
631
596
|
}
|
632
597
|
],
|
633
598
|
"named_form_fields": [
|
@@ -640,8 +605,7 @@
|
|
640
605
|
"width": 108,
|
641
606
|
"height": 27,
|
642
607
|
"required": true,
|
643
|
-
"api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348"
|
644
|
-
"fontSize": 12
|
608
|
+
"api_id": "8b6d78a5-0870-4f46-af9c-b78b54a49348"
|
645
609
|
},
|
646
610
|
{
|
647
611
|
"name": "Textbox1",
|
@@ -653,7 +617,6 @@
|
|
653
617
|
"height": 14,
|
654
618
|
"required": true,
|
655
619
|
"api_id": "7ec10d80-53c9-433b-b252-0b8daa90a8e0",
|
656
|
-
"fontSize": 12,
|
657
620
|
"avg_text_length": {
|
658
621
|
"num_lines": 1,
|
659
622
|
"num_chars_per_line": 38
|
@@ -672,7 +635,6 @@
|
|
672
635
|
"height": 14,
|
673
636
|
"required": true,
|
674
637
|
"api_id": "6574e6ad-7dac-49a2-9d56-650d7c5ade6e",
|
675
|
-
"fontSize": 12,
|
676
638
|
"avg_text_length": {
|
677
639
|
"num_lines": 1,
|
678
640
|
"num_chars_per_line": 38
|
@@ -690,8 +652,7 @@
|
|
690
652
|
"width": 72,
|
691
653
|
"height": 27,
|
692
654
|
"required": true,
|
693
|
-
"api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552"
|
694
|
-
"fontSize": 12
|
655
|
+
"api_id": "30f41f54-c7f3-46c3-a29a-bb76ec40b552"
|
695
656
|
},
|
696
657
|
{
|
697
658
|
"name": "Checkbox1",
|
@@ -703,8 +664,7 @@
|
|
703
664
|
"height": 18,
|
704
665
|
"required": false,
|
705
666
|
"api_id": "d4d6ada9-e1dc-419e-bc0d-1478da694449",
|
706
|
-
"group": "75a6e4b5fea47"
|
707
|
-
"fontSize": 12
|
667
|
+
"group": "75a6e4b5fea47"
|
708
668
|
},
|
709
669
|
{
|
710
670
|
"name": "Dropdown1",
|
@@ -715,8 +675,7 @@
|
|
715
675
|
"width": 70,
|
716
676
|
"height": 14,
|
717
677
|
"required": true,
|
718
|
-
"api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2"
|
719
|
-
"fontSize": 12
|
678
|
+
"api_id": "5863be5e-ce5a-4c9d-aabe-c221914d73c2"
|
720
679
|
},
|
721
680
|
{
|
722
681
|
"name": "DateSigned1",
|
@@ -727,8 +686,7 @@
|
|
727
686
|
"width": 105,
|
728
687
|
"height": 18,
|
729
688
|
"required": true,
|
730
|
-
"api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262"
|
731
|
-
"fontSize": 12
|
689
|
+
"api_id": "9f6d3722-6db7-46da-8fac-3bc09f510262"
|
732
690
|
},
|
733
691
|
{
|
734
692
|
"name": "Checkbox2",
|
@@ -740,8 +698,7 @@
|
|
740
698
|
"height": 18,
|
741
699
|
"required": false,
|
742
700
|
"api_id": "edd732b8-b158-4714-a87b-503637d09ded",
|
743
|
-
"group": "75a6e4b5fea47"
|
744
|
-
"fontSize": 12
|
701
|
+
"group": "75a6e4b5fea47"
|
745
702
|
},
|
746
703
|
{
|
747
704
|
"name": "FullName1",
|
@@ -753,7 +710,6 @@
|
|
753
710
|
"height": 14,
|
754
711
|
"required": true,
|
755
712
|
"api_id": "62fd3f85-4808-4011-8eae-a14ebe9105ef",
|
756
|
-
"fontSize": 12,
|
757
713
|
"avg_text_length": {
|
758
714
|
"num_lines": 1,
|
759
715
|
"num_chars_per_line": 19
|
@@ -772,7 +728,6 @@
|
|
772
728
|
"height": 14,
|
773
729
|
"required": true,
|
774
730
|
"api_id": "a1c9bc6b-d498-4787-86e0-30ea779f06a7",
|
775
|
-
"fontSize": 12,
|
776
731
|
"avg_text_length": {
|
777
732
|
"num_lines": 1,
|
778
733
|
"num_chars_per_line": 38
|
@@ -792,8 +747,7 @@
|
|
792
747
|
"height": 18,
|
793
748
|
"required": false,
|
794
749
|
"api_id": "fc8a1277-f757-47a2-aeea-5113fa81f2d5",
|
795
|
-
"group": "0831822584086"
|
796
|
-
"fontSize": 12
|
750
|
+
"group": "0831822584086"
|
797
751
|
},
|
798
752
|
{
|
799
753
|
"name": "Company1",
|
@@ -805,7 +759,6 @@
|
|
805
759
|
"height": 14,
|
806
760
|
"required": true,
|
807
761
|
"api_id": "279b4e7f-e71f-426d-845c-6308cddde379",
|
808
|
-
"fontSize": 12,
|
809
762
|
"avg_text_length": {
|
810
763
|
"num_lines": 1,
|
811
764
|
"num_chars_per_line": 38
|
@@ -824,7 +777,6 @@
|
|
824
777
|
"height": 14,
|
825
778
|
"required": true,
|
826
779
|
"api_id": "8809e39a-a46c-4dae-aaf9-06fc6355d80f",
|
827
|
-
"fontSize": 12,
|
828
780
|
"avg_text_length": {
|
829
781
|
"num_lines": 1,
|
830
782
|
"num_chars_per_line": 38
|
@@ -843,8 +795,7 @@
|
|
843
795
|
"height": 18,
|
844
796
|
"required": false,
|
845
797
|
"api_id": "f7b6b70d-0522-4ab7-bfec-b86f147c8be3",
|
846
|
-
"group": "0831822584086"
|
847
|
-
"fontSize": 12
|
798
|
+
"group": "0831822584086"
|
848
799
|
},
|
849
800
|
{
|
850
801
|
"name": "Textbox3",
|
@@ -856,7 +807,6 @@
|
|
856
807
|
"height": 14,
|
857
808
|
"required": true,
|
858
809
|
"api_id": "bad7512a-e22b-46ed-ba03-123db0eda932",
|
859
|
-
"fontSize": 12,
|
860
810
|
"avg_text_length": {
|
861
811
|
"num_lines": 1,
|
862
812
|
"num_chars_per_line": 38
|
@@ -875,7 +825,6 @@
|
|
875
825
|
"height": 14,
|
876
826
|
"required": true,
|
877
827
|
"api_id": "368ed029-bc93-4f92-8f7a-14c3bf8109b5",
|
878
|
-
"fontSize": 12,
|
879
828
|
"avg_text_length": {
|
880
829
|
"num_lines": 1,
|
881
830
|
"num_chars_per_line": 19
|
@@ -895,7 +844,6 @@
|
|
895
844
|
"height": 14,
|
896
845
|
"required": true,
|
897
846
|
"api_id": "ecf2ae95-d2e6-41b2-819a-836a6fa8c7c5",
|
898
|
-
"fontSize": 12,
|
899
847
|
"avg_text_length": {
|
900
848
|
"num_lines": 1,
|
901
849
|
"num_chars_per_line": 19
|
@@ -915,7 +863,6 @@
|
|
915
863
|
"height": 14,
|
916
864
|
"required": true,
|
917
865
|
"api_id": "3cb90a0a-a433-4f30-8af8-8fb4c747b704",
|
918
|
-
"fontSize": 12,
|
919
866
|
"avg_text_length": {
|
920
867
|
"num_lines": 1,
|
921
868
|
"num_chars_per_line": 19
|
@@ -935,7 +882,6 @@
|
|
935
882
|
"height": 14,
|
936
883
|
"required": true,
|
937
884
|
"api_id": "5b9eb331-c97d-435b-a563-d936a9b930c0",
|
938
|
-
"fontSize": 12,
|
939
885
|
"avg_text_length": {
|
940
886
|
"num_lines": 1,
|
941
887
|
"num_chars_per_line": 19
|
@@ -955,7 +901,6 @@
|
|
955
901
|
"height": 14,
|
956
902
|
"required": true,
|
957
903
|
"api_id": "2b98ce7e-e53a-4cf8-a9f3-d7fb18d88631",
|
958
|
-
"fontSize": 12,
|
959
904
|
"avg_text_length": {
|
960
905
|
"num_lines": 1,
|
961
906
|
"num_chars_per_line": 19
|
@@ -975,7 +920,6 @@
|
|
975
920
|
"height": 14,
|
976
921
|
"required": true,
|
977
922
|
"api_id": "5f52c011-2c5f-4143-bf04-4694fb4a0d3f",
|
978
|
-
"fontSize": 12,
|
979
923
|
"avg_text_length": {
|
980
924
|
"num_lines": 1,
|
981
925
|
"num_chars_per_line": 19
|
@@ -995,7 +939,6 @@
|
|
995
939
|
"height": 14,
|
996
940
|
"required": true,
|
997
941
|
"api_id": "47457b7d-b1e8-41a0-93ad-60ba30e64bb1",
|
998
|
-
"fontSize": 12,
|
999
942
|
"avg_text_length": {
|
1000
943
|
"num_lines": 1,
|
1001
944
|
"num_chars_per_line": 19
|
@@ -1015,7 +958,6 @@
|
|
1015
958
|
"height": 14,
|
1016
959
|
"required": true,
|
1017
960
|
"api_id": "18e3f994-1675-4d58-9b4a-4f92a2614551",
|
1018
|
-
"fontSize": 12,
|
1019
961
|
"avg_text_length": {
|
1020
962
|
"num_lines": 1,
|
1021
963
|
"num_chars_per_line": 19
|
@@ -1035,7 +977,6 @@
|
|
1035
977
|
"height": 14,
|
1036
978
|
"required": true,
|
1037
979
|
"api_id": "9ad4b8cc-bac9-432b-8836-9f80f86fc7e0",
|
1038
|
-
"fontSize": 12,
|
1039
980
|
"avg_text_length": {
|
1040
981
|
"num_lines": 1,
|
1041
982
|
"num_chars_per_line": 19
|
@@ -1054,7 +995,6 @@
|
|
1054
995
|
"height": 14,
|
1055
996
|
"required": true,
|
1056
997
|
"api_id": "58c5f942-04fb-45f1-9703-5e8411f3a3bb",
|
1057
|
-
"fontSize": 12,
|
1058
998
|
"avg_text_length": {
|
1059
999
|
"num_lines": 1,
|
1060
1000
|
"num_chars_per_line": 19
|
@@ -1074,7 +1014,6 @@
|
|
1074
1014
|
"height": 14,
|
1075
1015
|
"required": false,
|
1076
1016
|
"api_id": "fd928b56-cf59-40a4-9a90-62f97ffd0ddc",
|
1077
|
-
"fontSize": 12,
|
1078
1017
|
"avg_text_length": {
|
1079
1018
|
"num_lines": 1,
|
1080
1019
|
"num_chars_per_line": 30
|
@@ -1093,7 +1032,6 @@
|
|
1093
1032
|
"height": 14,
|
1094
1033
|
"required": true,
|
1095
1034
|
"api_id": "e48c388d-8c26-4f20-848e-f8587a631746",
|
1096
|
-
"fontSize": 12,
|
1097
1035
|
"avg_text_length": {
|
1098
1036
|
"num_lines": 1,
|
1099
1037
|
"num_chars_per_line": 19
|