increase 1.290.0 → 1.291.0
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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/entity.rb +20 -15
- data/lib/increase/models/entity_beneficial_owner.rb +7 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +57 -20
- data/rbi/increase/models/entity_beneficial_owner.rbi +14 -4
- data/sig/increase/models/entity.rbs +20 -20
- data/sig/increase/models/entity_beneficial_owner.rbs +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04701f5cc966f87c80be5d546a0ebfb2c4aceaf452662f5c255ec44700432474
|
|
4
|
+
data.tar.gz: f093c60a4d264cc201740c2a011e5cbcc428543e3657e40b397f8cdfc9a279f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9940ffa0a2c97e0135d6b68e1e45480b5becbe596f7615c64e3fa5393ba4075f27f7bfeea819825e96842f1e8a62840a72796e11178b034cd301f7fc8873c195
|
|
7
|
+
data.tar.gz: 498d8f2ced98f35711a0aa64fb24a308be1458b870a79245d61483368605292a63e4dda62360e915c261e647d1eb01ea36cc8299b7774e10951225ad2e63de2e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.291.0 (2026-04-12)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.290.0...v1.291.0](https://github.com/Increase/increase-ruby/compare/v1.290.0...v1.291.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([73b4dc9](https://github.com/Increase/increase-ruby/commit/73b4dc91c7df54fcde9b73c3d3556f0d36634816))
|
|
10
|
+
|
|
3
11
|
## 1.290.0 (2026-04-11)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.289.0...v1.290.0](https://github.com/Increase/increase-ruby/compare/v1.289.0...v1.290.0)
|
data/README.md
CHANGED
|
@@ -359,9 +359,10 @@ module Increase
|
|
|
359
359
|
# @!attribute identification
|
|
360
360
|
# A means of verifying the person's identity.
|
|
361
361
|
#
|
|
362
|
-
# @return [Increase::Models::Entity::Corporation::BeneficialOwner::Individual::Identification]
|
|
362
|
+
# @return [Increase::Models::Entity::Corporation::BeneficialOwner::Individual::Identification, nil]
|
|
363
363
|
required :identification,
|
|
364
|
-
-> { Increase::Entity::Corporation::BeneficialOwner::Individual::Identification }
|
|
364
|
+
-> { Increase::Entity::Corporation::BeneficialOwner::Individual::Identification },
|
|
365
|
+
nil?: true
|
|
365
366
|
|
|
366
367
|
# @!attribute name
|
|
367
368
|
# The person's legal name.
|
|
@@ -376,7 +377,7 @@ module Increase
|
|
|
376
377
|
#
|
|
377
378
|
# @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
|
|
378
379
|
#
|
|
379
|
-
# @param identification [Increase::Models::Entity::Corporation::BeneficialOwner::Individual::Identification] A means of verifying the person's identity.
|
|
380
|
+
# @param identification [Increase::Models::Entity::Corporation::BeneficialOwner::Individual::Identification, nil] A means of verifying the person's identity.
|
|
380
381
|
#
|
|
381
382
|
# @param name [String] The person's legal name.
|
|
382
383
|
|
|
@@ -741,8 +742,8 @@ module Increase
|
|
|
741
742
|
# @!attribute identification
|
|
742
743
|
# A means of verifying the person's identity.
|
|
743
744
|
#
|
|
744
|
-
# @return [Increase::Models::Entity::Joint::Individual::Identification]
|
|
745
|
-
required :identification, -> { Increase::Entity::Joint::Individual::Identification }
|
|
745
|
+
# @return [Increase::Models::Entity::Joint::Individual::Identification, nil]
|
|
746
|
+
required :identification, -> { Increase::Entity::Joint::Individual::Identification }, nil?: true
|
|
746
747
|
|
|
747
748
|
# @!attribute name
|
|
748
749
|
# The person's legal name.
|
|
@@ -755,7 +756,7 @@ module Increase
|
|
|
755
756
|
#
|
|
756
757
|
# @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
|
|
757
758
|
#
|
|
758
|
-
# @param identification [Increase::Models::Entity::Joint::Individual::Identification] A means of verifying the person's identity.
|
|
759
|
+
# @param identification [Increase::Models::Entity::Joint::Individual::Identification, nil] A means of verifying the person's identity.
|
|
759
760
|
#
|
|
760
761
|
# @param name [String] The person's legal name.
|
|
761
762
|
|
|
@@ -889,8 +890,8 @@ module Increase
|
|
|
889
890
|
# @!attribute identification
|
|
890
891
|
# A means of verifying the person's identity.
|
|
891
892
|
#
|
|
892
|
-
# @return [Increase::Models::Entity::NaturalPerson::Identification]
|
|
893
|
-
required :identification, -> { Increase::Entity::NaturalPerson::Identification }
|
|
893
|
+
# @return [Increase::Models::Entity::NaturalPerson::Identification, nil]
|
|
894
|
+
required :identification, -> { Increase::Entity::NaturalPerson::Identification }, nil?: true
|
|
894
895
|
|
|
895
896
|
# @!attribute name
|
|
896
897
|
# The person's legal name.
|
|
@@ -906,7 +907,7 @@ module Increase
|
|
|
906
907
|
#
|
|
907
908
|
# @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
|
|
908
909
|
#
|
|
909
|
-
# @param identification [Increase::Models::Entity::NaturalPerson::Identification] A means of verifying the person's identity.
|
|
910
|
+
# @param identification [Increase::Models::Entity::NaturalPerson::Identification, nil] A means of verifying the person's identity.
|
|
910
911
|
#
|
|
911
912
|
# @param name [String] The person's legal name.
|
|
912
913
|
|
|
@@ -1357,8 +1358,8 @@ module Increase
|
|
|
1357
1358
|
# @!attribute identification
|
|
1358
1359
|
# A means of verifying the person's identity.
|
|
1359
1360
|
#
|
|
1360
|
-
# @return [Increase::Models::Entity::Trust::Grantor::Identification]
|
|
1361
|
-
required :identification, -> { Increase::Entity::Trust::Grantor::Identification }
|
|
1361
|
+
# @return [Increase::Models::Entity::Trust::Grantor::Identification, nil]
|
|
1362
|
+
required :identification, -> { Increase::Entity::Trust::Grantor::Identification }, nil?: true
|
|
1362
1363
|
|
|
1363
1364
|
# @!attribute name
|
|
1364
1365
|
# The person's legal name.
|
|
@@ -1373,7 +1374,7 @@ module Increase
|
|
|
1373
1374
|
#
|
|
1374
1375
|
# @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
|
|
1375
1376
|
#
|
|
1376
|
-
# @param identification [Increase::Models::Entity::Trust::Grantor::Identification] A means of verifying the person's identity.
|
|
1377
|
+
# @param identification [Increase::Models::Entity::Trust::Grantor::Identification, nil] A means of verifying the person's identity.
|
|
1377
1378
|
#
|
|
1378
1379
|
# @param name [String] The person's legal name.
|
|
1379
1380
|
|
|
@@ -1528,8 +1529,12 @@ module Increase
|
|
|
1528
1529
|
# @!attribute identification
|
|
1529
1530
|
# A means of verifying the person's identity.
|
|
1530
1531
|
#
|
|
1531
|
-
# @return [Increase::Models::Entity::Trust::Trustee::Individual::Identification]
|
|
1532
|
-
required :identification,
|
|
1532
|
+
# @return [Increase::Models::Entity::Trust::Trustee::Individual::Identification, nil]
|
|
1533
|
+
required :identification,
|
|
1534
|
+
-> {
|
|
1535
|
+
Increase::Entity::Trust::Trustee::Individual::Identification
|
|
1536
|
+
},
|
|
1537
|
+
nil?: true
|
|
1533
1538
|
|
|
1534
1539
|
# @!attribute name
|
|
1535
1540
|
# The person's legal name.
|
|
@@ -1545,7 +1550,7 @@ module Increase
|
|
|
1545
1550
|
#
|
|
1546
1551
|
# @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
|
|
1547
1552
|
#
|
|
1548
|
-
# @param identification [Increase::Models::Entity::Trust::Trustee::Individual::Identification] A means of verifying the person's identity.
|
|
1553
|
+
# @param identification [Increase::Models::Entity::Trust::Trustee::Individual::Identification, nil] A means of verifying the person's identity.
|
|
1549
1554
|
#
|
|
1550
1555
|
# @param name [String] The person's legal name.
|
|
1551
1556
|
|
|
@@ -99,8 +99,12 @@ module Increase
|
|
|
99
99
|
# @!attribute identification
|
|
100
100
|
# A means of verifying the person's identity.
|
|
101
101
|
#
|
|
102
|
-
# @return [Increase::Models::EntityBeneficialOwner::Individual::Identification]
|
|
103
|
-
required :identification,
|
|
102
|
+
# @return [Increase::Models::EntityBeneficialOwner::Individual::Identification, nil]
|
|
103
|
+
required :identification,
|
|
104
|
+
-> {
|
|
105
|
+
Increase::EntityBeneficialOwner::Individual::Identification
|
|
106
|
+
},
|
|
107
|
+
nil?: true
|
|
104
108
|
|
|
105
109
|
# @!attribute name
|
|
106
110
|
# The person's legal name.
|
|
@@ -115,7 +119,7 @@ module Increase
|
|
|
115
119
|
#
|
|
116
120
|
# @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
|
|
117
121
|
#
|
|
118
|
-
# @param identification [Increase::Models::EntityBeneficialOwner::Individual::Identification] A means of verifying the person's identity.
|
|
122
|
+
# @param identification [Increase::Models::EntityBeneficialOwner::Individual::Identification, nil] A means of verifying the person's identity.
|
|
119
123
|
#
|
|
120
124
|
# @param name [String] The person's legal name.
|
|
121
125
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -562,7 +562,9 @@ module Increase
|
|
|
562
562
|
# A means of verifying the person's identity.
|
|
563
563
|
sig do
|
|
564
564
|
returns(
|
|
565
|
-
|
|
565
|
+
T.nilable(
|
|
566
|
+
Increase::Entity::Corporation::BeneficialOwner::Individual::Identification
|
|
567
|
+
)
|
|
566
568
|
)
|
|
567
569
|
end
|
|
568
570
|
attr_reader :identification
|
|
@@ -570,7 +572,9 @@ module Increase
|
|
|
570
572
|
sig do
|
|
571
573
|
params(
|
|
572
574
|
identification:
|
|
573
|
-
|
|
575
|
+
T.nilable(
|
|
576
|
+
Increase::Entity::Corporation::BeneficialOwner::Individual::Identification::OrHash
|
|
577
|
+
)
|
|
574
578
|
).void
|
|
575
579
|
end
|
|
576
580
|
attr_writer :identification
|
|
@@ -586,7 +590,9 @@ module Increase
|
|
|
586
590
|
Increase::Entity::Corporation::BeneficialOwner::Individual::Address::OrHash,
|
|
587
591
|
date_of_birth: Date,
|
|
588
592
|
identification:
|
|
589
|
-
|
|
593
|
+
T.nilable(
|
|
594
|
+
Increase::Entity::Corporation::BeneficialOwner::Individual::Identification::OrHash
|
|
595
|
+
),
|
|
590
596
|
name: String
|
|
591
597
|
).returns(T.attached_class)
|
|
592
598
|
end
|
|
@@ -609,7 +615,9 @@ module Increase
|
|
|
609
615
|
Increase::Entity::Corporation::BeneficialOwner::Individual::Address,
|
|
610
616
|
date_of_birth: Date,
|
|
611
617
|
identification:
|
|
612
|
-
|
|
618
|
+
T.nilable(
|
|
619
|
+
Increase::Entity::Corporation::BeneficialOwner::Individual::Identification
|
|
620
|
+
),
|
|
613
621
|
name: String
|
|
614
622
|
}
|
|
615
623
|
)
|
|
@@ -1260,13 +1268,19 @@ module Increase
|
|
|
1260
1268
|
attr_accessor :date_of_birth
|
|
1261
1269
|
|
|
1262
1270
|
# A means of verifying the person's identity.
|
|
1263
|
-
sig
|
|
1271
|
+
sig do
|
|
1272
|
+
returns(
|
|
1273
|
+
T.nilable(Increase::Entity::Joint::Individual::Identification)
|
|
1274
|
+
)
|
|
1275
|
+
end
|
|
1264
1276
|
attr_reader :identification
|
|
1265
1277
|
|
|
1266
1278
|
sig do
|
|
1267
1279
|
params(
|
|
1268
1280
|
identification:
|
|
1269
|
-
|
|
1281
|
+
T.nilable(
|
|
1282
|
+
Increase::Entity::Joint::Individual::Identification::OrHash
|
|
1283
|
+
)
|
|
1270
1284
|
).void
|
|
1271
1285
|
end
|
|
1272
1286
|
attr_writer :identification
|
|
@@ -1280,7 +1294,9 @@ module Increase
|
|
|
1280
1294
|
address: Increase::Entity::Joint::Individual::Address::OrHash,
|
|
1281
1295
|
date_of_birth: Date,
|
|
1282
1296
|
identification:
|
|
1283
|
-
|
|
1297
|
+
T.nilable(
|
|
1298
|
+
Increase::Entity::Joint::Individual::Identification::OrHash
|
|
1299
|
+
),
|
|
1284
1300
|
name: String
|
|
1285
1301
|
).returns(T.attached_class)
|
|
1286
1302
|
end
|
|
@@ -1302,7 +1318,9 @@ module Increase
|
|
|
1302
1318
|
address: Increase::Entity::Joint::Individual::Address,
|
|
1303
1319
|
date_of_birth: Date,
|
|
1304
1320
|
identification:
|
|
1305
|
-
|
|
1321
|
+
T.nilable(
|
|
1322
|
+
Increase::Entity::Joint::Individual::Identification
|
|
1323
|
+
),
|
|
1306
1324
|
name: String
|
|
1307
1325
|
}
|
|
1308
1326
|
)
|
|
@@ -1521,13 +1539,15 @@ module Increase
|
|
|
1521
1539
|
attr_accessor :date_of_birth
|
|
1522
1540
|
|
|
1523
1541
|
# A means of verifying the person's identity.
|
|
1524
|
-
sig
|
|
1542
|
+
sig do
|
|
1543
|
+
returns(T.nilable(Increase::Entity::NaturalPerson::Identification))
|
|
1544
|
+
end
|
|
1525
1545
|
attr_reader :identification
|
|
1526
1546
|
|
|
1527
1547
|
sig do
|
|
1528
1548
|
params(
|
|
1529
1549
|
identification:
|
|
1530
|
-
Increase::Entity::NaturalPerson::Identification::OrHash
|
|
1550
|
+
T.nilable(Increase::Entity::NaturalPerson::Identification::OrHash)
|
|
1531
1551
|
).void
|
|
1532
1552
|
end
|
|
1533
1553
|
attr_writer :identification
|
|
@@ -1543,7 +1563,9 @@ module Increase
|
|
|
1543
1563
|
address: Increase::Entity::NaturalPerson::Address::OrHash,
|
|
1544
1564
|
date_of_birth: Date,
|
|
1545
1565
|
identification:
|
|
1546
|
-
|
|
1566
|
+
T.nilable(
|
|
1567
|
+
Increase::Entity::NaturalPerson::Identification::OrHash
|
|
1568
|
+
),
|
|
1547
1569
|
name: String
|
|
1548
1570
|
).returns(T.attached_class)
|
|
1549
1571
|
end
|
|
@@ -1564,7 +1586,8 @@ module Increase
|
|
|
1564
1586
|
{
|
|
1565
1587
|
address: Increase::Entity::NaturalPerson::Address,
|
|
1566
1588
|
date_of_birth: Date,
|
|
1567
|
-
identification:
|
|
1589
|
+
identification:
|
|
1590
|
+
T.nilable(Increase::Entity::NaturalPerson::Identification),
|
|
1568
1591
|
name: String
|
|
1569
1592
|
}
|
|
1570
1593
|
)
|
|
@@ -2272,13 +2295,17 @@ module Increase
|
|
|
2272
2295
|
attr_accessor :date_of_birth
|
|
2273
2296
|
|
|
2274
2297
|
# A means of verifying the person's identity.
|
|
2275
|
-
sig
|
|
2298
|
+
sig do
|
|
2299
|
+
returns(T.nilable(Increase::Entity::Trust::Grantor::Identification))
|
|
2300
|
+
end
|
|
2276
2301
|
attr_reader :identification
|
|
2277
2302
|
|
|
2278
2303
|
sig do
|
|
2279
2304
|
params(
|
|
2280
2305
|
identification:
|
|
2281
|
-
|
|
2306
|
+
T.nilable(
|
|
2307
|
+
Increase::Entity::Trust::Grantor::Identification::OrHash
|
|
2308
|
+
)
|
|
2282
2309
|
).void
|
|
2283
2310
|
end
|
|
2284
2311
|
attr_writer :identification
|
|
@@ -2293,7 +2320,9 @@ module Increase
|
|
|
2293
2320
|
address: Increase::Entity::Trust::Grantor::Address::OrHash,
|
|
2294
2321
|
date_of_birth: Date,
|
|
2295
2322
|
identification:
|
|
2296
|
-
|
|
2323
|
+
T.nilable(
|
|
2324
|
+
Increase::Entity::Trust::Grantor::Identification::OrHash
|
|
2325
|
+
),
|
|
2297
2326
|
name: String
|
|
2298
2327
|
).returns(T.attached_class)
|
|
2299
2328
|
end
|
|
@@ -2315,7 +2344,7 @@ module Increase
|
|
|
2315
2344
|
address: Increase::Entity::Trust::Grantor::Address,
|
|
2316
2345
|
date_of_birth: Date,
|
|
2317
2346
|
identification:
|
|
2318
|
-
Increase::Entity::Trust::Grantor::Identification,
|
|
2347
|
+
T.nilable(Increase::Entity::Trust::Grantor::Identification),
|
|
2319
2348
|
name: String
|
|
2320
2349
|
}
|
|
2321
2350
|
)
|
|
@@ -2602,7 +2631,9 @@ module Increase
|
|
|
2602
2631
|
# A means of verifying the person's identity.
|
|
2603
2632
|
sig do
|
|
2604
2633
|
returns(
|
|
2605
|
-
|
|
2634
|
+
T.nilable(
|
|
2635
|
+
Increase::Entity::Trust::Trustee::Individual::Identification
|
|
2636
|
+
)
|
|
2606
2637
|
)
|
|
2607
2638
|
end
|
|
2608
2639
|
attr_reader :identification
|
|
@@ -2610,7 +2641,9 @@ module Increase
|
|
|
2610
2641
|
sig do
|
|
2611
2642
|
params(
|
|
2612
2643
|
identification:
|
|
2613
|
-
|
|
2644
|
+
T.nilable(
|
|
2645
|
+
Increase::Entity::Trust::Trustee::Individual::Identification::OrHash
|
|
2646
|
+
)
|
|
2614
2647
|
).void
|
|
2615
2648
|
end
|
|
2616
2649
|
attr_writer :identification
|
|
@@ -2627,7 +2660,9 @@ module Increase
|
|
|
2627
2660
|
Increase::Entity::Trust::Trustee::Individual::Address::OrHash,
|
|
2628
2661
|
date_of_birth: Date,
|
|
2629
2662
|
identification:
|
|
2630
|
-
|
|
2663
|
+
T.nilable(
|
|
2664
|
+
Increase::Entity::Trust::Trustee::Individual::Identification::OrHash
|
|
2665
|
+
),
|
|
2631
2666
|
name: String
|
|
2632
2667
|
).returns(T.attached_class)
|
|
2633
2668
|
end
|
|
@@ -2650,7 +2685,9 @@ module Increase
|
|
|
2650
2685
|
Increase::Entity::Trust::Trustee::Individual::Address,
|
|
2651
2686
|
date_of_birth: Date,
|
|
2652
2687
|
identification:
|
|
2653
|
-
|
|
2688
|
+
T.nilable(
|
|
2689
|
+
Increase::Entity::Trust::Trustee::Individual::Identification
|
|
2690
|
+
),
|
|
2654
2691
|
name: String
|
|
2655
2692
|
}
|
|
2656
2693
|
)
|
|
@@ -139,14 +139,20 @@ module Increase
|
|
|
139
139
|
|
|
140
140
|
# A means of verifying the person's identity.
|
|
141
141
|
sig do
|
|
142
|
-
returns(
|
|
142
|
+
returns(
|
|
143
|
+
T.nilable(
|
|
144
|
+
Increase::EntityBeneficialOwner::Individual::Identification
|
|
145
|
+
)
|
|
146
|
+
)
|
|
143
147
|
end
|
|
144
148
|
attr_reader :identification
|
|
145
149
|
|
|
146
150
|
sig do
|
|
147
151
|
params(
|
|
148
152
|
identification:
|
|
149
|
-
|
|
153
|
+
T.nilable(
|
|
154
|
+
Increase::EntityBeneficialOwner::Individual::Identification::OrHash
|
|
155
|
+
)
|
|
150
156
|
).void
|
|
151
157
|
end
|
|
152
158
|
attr_writer :identification
|
|
@@ -162,7 +168,9 @@ module Increase
|
|
|
162
168
|
Increase::EntityBeneficialOwner::Individual::Address::OrHash,
|
|
163
169
|
date_of_birth: Date,
|
|
164
170
|
identification:
|
|
165
|
-
|
|
171
|
+
T.nilable(
|
|
172
|
+
Increase::EntityBeneficialOwner::Individual::Identification::OrHash
|
|
173
|
+
),
|
|
166
174
|
name: String
|
|
167
175
|
).returns(T.attached_class)
|
|
168
176
|
end
|
|
@@ -184,7 +192,9 @@ module Increase
|
|
|
184
192
|
address: Increase::EntityBeneficialOwner::Individual::Address,
|
|
185
193
|
date_of_birth: Date,
|
|
186
194
|
identification:
|
|
187
|
-
|
|
195
|
+
T.nilable(
|
|
196
|
+
Increase::EntityBeneficialOwner::Individual::Identification
|
|
197
|
+
),
|
|
188
198
|
name: String
|
|
189
199
|
}
|
|
190
200
|
)
|
|
@@ -229,7 +229,7 @@ module Increase
|
|
|
229
229
|
{
|
|
230
230
|
address: Increase::Entity::Corporation::BeneficialOwner::Individual::Address,
|
|
231
231
|
date_of_birth: Date,
|
|
232
|
-
identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification
|
|
232
|
+
identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?,
|
|
233
233
|
name: String
|
|
234
234
|
}
|
|
235
235
|
|
|
@@ -238,21 +238,21 @@ module Increase
|
|
|
238
238
|
|
|
239
239
|
attr_accessor date_of_birth: Date
|
|
240
240
|
|
|
241
|
-
attr_accessor identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification
|
|
241
|
+
attr_accessor identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?
|
|
242
242
|
|
|
243
243
|
attr_accessor name: String
|
|
244
244
|
|
|
245
245
|
def initialize: (
|
|
246
246
|
address: Increase::Entity::Corporation::BeneficialOwner::Individual::Address,
|
|
247
247
|
date_of_birth: Date,
|
|
248
|
-
identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification
|
|
248
|
+
identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?,
|
|
249
249
|
name: String
|
|
250
250
|
) -> void
|
|
251
251
|
|
|
252
252
|
def to_hash: -> {
|
|
253
253
|
address: Increase::Entity::Corporation::BeneficialOwner::Individual::Address,
|
|
254
254
|
date_of_birth: Date,
|
|
255
|
-
identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification
|
|
255
|
+
identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?,
|
|
256
256
|
name: String
|
|
257
257
|
}
|
|
258
258
|
|
|
@@ -543,7 +543,7 @@ module Increase
|
|
|
543
543
|
{
|
|
544
544
|
address: Increase::Entity::Joint::Individual::Address,
|
|
545
545
|
date_of_birth: Date,
|
|
546
|
-
identification: Increase::Entity::Joint::Individual::Identification
|
|
546
|
+
identification: Increase::Entity::Joint::Individual::Identification?,
|
|
547
547
|
name: String
|
|
548
548
|
}
|
|
549
549
|
|
|
@@ -552,21 +552,21 @@ module Increase
|
|
|
552
552
|
|
|
553
553
|
attr_accessor date_of_birth: Date
|
|
554
554
|
|
|
555
|
-
attr_accessor identification: Increase::Entity::Joint::Individual::Identification
|
|
555
|
+
attr_accessor identification: Increase::Entity::Joint::Individual::Identification?
|
|
556
556
|
|
|
557
557
|
attr_accessor name: String
|
|
558
558
|
|
|
559
559
|
def initialize: (
|
|
560
560
|
address: Increase::Entity::Joint::Individual::Address,
|
|
561
561
|
date_of_birth: Date,
|
|
562
|
-
identification: Increase::Entity::Joint::Individual::Identification
|
|
562
|
+
identification: Increase::Entity::Joint::Individual::Identification?,
|
|
563
563
|
name: String
|
|
564
564
|
) -> void
|
|
565
565
|
|
|
566
566
|
def to_hash: -> {
|
|
567
567
|
address: Increase::Entity::Joint::Individual::Address,
|
|
568
568
|
date_of_birth: Date,
|
|
569
|
-
identification: Increase::Entity::Joint::Individual::Identification
|
|
569
|
+
identification: Increase::Entity::Joint::Individual::Identification?,
|
|
570
570
|
name: String
|
|
571
571
|
}
|
|
572
572
|
|
|
@@ -668,7 +668,7 @@ module Increase
|
|
|
668
668
|
{
|
|
669
669
|
address: Increase::Entity::NaturalPerson::Address,
|
|
670
670
|
date_of_birth: Date,
|
|
671
|
-
identification: Increase::Entity::NaturalPerson::Identification
|
|
671
|
+
identification: Increase::Entity::NaturalPerson::Identification?,
|
|
672
672
|
name: String
|
|
673
673
|
}
|
|
674
674
|
|
|
@@ -677,21 +677,21 @@ module Increase
|
|
|
677
677
|
|
|
678
678
|
attr_accessor date_of_birth: Date
|
|
679
679
|
|
|
680
|
-
attr_accessor identification: Increase::Entity::NaturalPerson::Identification
|
|
680
|
+
attr_accessor identification: Increase::Entity::NaturalPerson::Identification?
|
|
681
681
|
|
|
682
682
|
attr_accessor name: String
|
|
683
683
|
|
|
684
684
|
def initialize: (
|
|
685
685
|
address: Increase::Entity::NaturalPerson::Address,
|
|
686
686
|
date_of_birth: Date,
|
|
687
|
-
identification: Increase::Entity::NaturalPerson::Identification
|
|
687
|
+
identification: Increase::Entity::NaturalPerson::Identification?,
|
|
688
688
|
name: String
|
|
689
689
|
) -> void
|
|
690
690
|
|
|
691
691
|
def to_hash: -> {
|
|
692
692
|
address: Increase::Entity::NaturalPerson::Address,
|
|
693
693
|
date_of_birth: Date,
|
|
694
|
-
identification: Increase::Entity::NaturalPerson::Identification
|
|
694
|
+
identification: Increase::Entity::NaturalPerson::Identification?,
|
|
695
695
|
name: String
|
|
696
696
|
}
|
|
697
697
|
|
|
@@ -1044,7 +1044,7 @@ module Increase
|
|
|
1044
1044
|
{
|
|
1045
1045
|
address: Increase::Entity::Trust::Grantor::Address,
|
|
1046
1046
|
date_of_birth: Date,
|
|
1047
|
-
identification: Increase::Entity::Trust::Grantor::Identification
|
|
1047
|
+
identification: Increase::Entity::Trust::Grantor::Identification?,
|
|
1048
1048
|
name: String
|
|
1049
1049
|
}
|
|
1050
1050
|
|
|
@@ -1053,21 +1053,21 @@ module Increase
|
|
|
1053
1053
|
|
|
1054
1054
|
attr_accessor date_of_birth: Date
|
|
1055
1055
|
|
|
1056
|
-
attr_accessor identification: Increase::Entity::Trust::Grantor::Identification
|
|
1056
|
+
attr_accessor identification: Increase::Entity::Trust::Grantor::Identification?
|
|
1057
1057
|
|
|
1058
1058
|
attr_accessor name: String
|
|
1059
1059
|
|
|
1060
1060
|
def initialize: (
|
|
1061
1061
|
address: Increase::Entity::Trust::Grantor::Address,
|
|
1062
1062
|
date_of_birth: Date,
|
|
1063
|
-
identification: Increase::Entity::Trust::Grantor::Identification
|
|
1063
|
+
identification: Increase::Entity::Trust::Grantor::Identification?,
|
|
1064
1064
|
name: String
|
|
1065
1065
|
) -> void
|
|
1066
1066
|
|
|
1067
1067
|
def to_hash: -> {
|
|
1068
1068
|
address: Increase::Entity::Trust::Grantor::Address,
|
|
1069
1069
|
date_of_birth: Date,
|
|
1070
|
-
identification: Increase::Entity::Trust::Grantor::Identification
|
|
1070
|
+
identification: Increase::Entity::Trust::Grantor::Identification?,
|
|
1071
1071
|
name: String
|
|
1072
1072
|
}
|
|
1073
1073
|
|
|
@@ -1189,7 +1189,7 @@ module Increase
|
|
|
1189
1189
|
{
|
|
1190
1190
|
address: Increase::Entity::Trust::Trustee::Individual::Address,
|
|
1191
1191
|
date_of_birth: Date,
|
|
1192
|
-
identification: Increase::Entity::Trust::Trustee::Individual::Identification
|
|
1192
|
+
identification: Increase::Entity::Trust::Trustee::Individual::Identification?,
|
|
1193
1193
|
name: String
|
|
1194
1194
|
}
|
|
1195
1195
|
|
|
@@ -1198,21 +1198,21 @@ module Increase
|
|
|
1198
1198
|
|
|
1199
1199
|
attr_accessor date_of_birth: Date
|
|
1200
1200
|
|
|
1201
|
-
attr_accessor identification: Increase::Entity::Trust::Trustee::Individual::Identification
|
|
1201
|
+
attr_accessor identification: Increase::Entity::Trust::Trustee::Individual::Identification?
|
|
1202
1202
|
|
|
1203
1203
|
attr_accessor name: String
|
|
1204
1204
|
|
|
1205
1205
|
def initialize: (
|
|
1206
1206
|
address: Increase::Entity::Trust::Trustee::Individual::Address,
|
|
1207
1207
|
date_of_birth: Date,
|
|
1208
|
-
identification: Increase::Entity::Trust::Trustee::Individual::Identification
|
|
1208
|
+
identification: Increase::Entity::Trust::Trustee::Individual::Identification?,
|
|
1209
1209
|
name: String
|
|
1210
1210
|
) -> void
|
|
1211
1211
|
|
|
1212
1212
|
def to_hash: -> {
|
|
1213
1213
|
address: Increase::Entity::Trust::Trustee::Individual::Address,
|
|
1214
1214
|
date_of_birth: Date,
|
|
1215
|
-
identification: Increase::Entity::Trust::Trustee::Individual::Identification
|
|
1215
|
+
identification: Increase::Entity::Trust::Trustee::Individual::Identification?,
|
|
1216
1216
|
name: String
|
|
1217
1217
|
}
|
|
1218
1218
|
|
|
@@ -55,7 +55,7 @@ module Increase
|
|
|
55
55
|
{
|
|
56
56
|
address: Increase::EntityBeneficialOwner::Individual::Address,
|
|
57
57
|
date_of_birth: Date,
|
|
58
|
-
identification: Increase::EntityBeneficialOwner::Individual::Identification
|
|
58
|
+
identification: Increase::EntityBeneficialOwner::Individual::Identification?,
|
|
59
59
|
name: String
|
|
60
60
|
}
|
|
61
61
|
|
|
@@ -64,21 +64,21 @@ module Increase
|
|
|
64
64
|
|
|
65
65
|
attr_accessor date_of_birth: Date
|
|
66
66
|
|
|
67
|
-
attr_accessor identification: Increase::EntityBeneficialOwner::Individual::Identification
|
|
67
|
+
attr_accessor identification: Increase::EntityBeneficialOwner::Individual::Identification?
|
|
68
68
|
|
|
69
69
|
attr_accessor name: String
|
|
70
70
|
|
|
71
71
|
def initialize: (
|
|
72
72
|
address: Increase::EntityBeneficialOwner::Individual::Address,
|
|
73
73
|
date_of_birth: Date,
|
|
74
|
-
identification: Increase::EntityBeneficialOwner::Individual::Identification
|
|
74
|
+
identification: Increase::EntityBeneficialOwner::Individual::Identification?,
|
|
75
75
|
name: String
|
|
76
76
|
) -> void
|
|
77
77
|
|
|
78
78
|
def to_hash: -> {
|
|
79
79
|
address: Increase::EntityBeneficialOwner::Individual::Address,
|
|
80
80
|
date_of_birth: Date,
|
|
81
|
-
identification: Increase::EntityBeneficialOwner::Individual::Identification
|
|
81
|
+
identification: Increase::EntityBeneficialOwner::Individual::Identification?,
|
|
82
82
|
name: String
|
|
83
83
|
}
|
|
84
84
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.291.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|