increase 1.342.0 → 1.343.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.
@@ -205,8 +205,8 @@ module Increase
205
205
  type address =
206
206
  {
207
207
  city: String,
208
- :line1 => String,
209
208
  country: String,
209
+ :line1 => String,
210
210
  :line2 => String,
211
211
  state: String,
212
212
  zip: String
@@ -215,11 +215,9 @@ module Increase
215
215
  class Address < Increase::Internal::Type::BaseModel
216
216
  attr_accessor city: String
217
217
 
218
- attr_accessor line1: String
219
-
220
- attr_reader country: String?
218
+ attr_accessor country: String
221
219
 
222
- def country=: (String) -> String
220
+ attr_accessor line1: String
223
221
 
224
222
  attr_reader line2: String?
225
223
 
@@ -235,8 +233,8 @@ module Increase
235
233
 
236
234
  def initialize: (
237
235
  city: String,
236
+ country: String,
238
237
  line1: String,
239
- ?country: String,
240
238
  ?line2: String,
241
239
  ?state: String,
242
240
  ?zip: String
@@ -244,8 +242,8 @@ module Increase
244
242
 
245
243
  def to_hash: -> {
246
244
  city: String,
247
- :line1 => String,
248
245
  country: String,
246
+ :line1 => String,
249
247
  :line2 => String,
250
248
  state: String,
251
249
  zip: String
@@ -321,8 +319,8 @@ module Increase
321
319
  type address =
322
320
  {
323
321
  city: String,
324
- :line1 => String,
325
322
  country: String,
323
+ :line1 => String,
326
324
  :line2 => String,
327
325
  state: String,
328
326
  zip: String
@@ -331,11 +329,9 @@ module Increase
331
329
  class Address < Increase::Internal::Type::BaseModel
332
330
  attr_accessor city: String
333
331
 
334
- attr_accessor line1: String
335
-
336
- attr_reader country: String?
332
+ attr_accessor country: String
337
333
 
338
- def country=: (String) -> String
334
+ attr_accessor line1: String
339
335
 
340
336
  attr_reader line2: String?
341
337
 
@@ -351,8 +347,8 @@ module Increase
351
347
 
352
348
  def initialize: (
353
349
  city: String,
350
+ country: String,
354
351
  line1: String,
355
- ?country: String,
356
352
  ?line2: String,
357
353
  ?state: String,
358
354
  ?zip: String
@@ -360,8 +356,8 @@ module Increase
360
356
 
361
357
  def to_hash: -> {
362
358
  city: String,
363
- :line1 => String,
364
359
  country: String,
360
+ :line1 => String,
365
361
  :line2 => String,
366
362
  state: String,
367
363
  zip: String
@@ -795,8 +791,8 @@ module Increase
795
791
  type address =
796
792
  {
797
793
  city: String,
798
- :line1 => String,
799
794
  country: String,
795
+ :line1 => String,
800
796
  :line2 => String,
801
797
  state: String,
802
798
  zip: String
@@ -805,11 +801,9 @@ module Increase
805
801
  class Address < Increase::Internal::Type::BaseModel
806
802
  attr_accessor city: String
807
803
 
808
- attr_accessor line1: String
809
-
810
- attr_reader country: String?
804
+ attr_accessor country: String
811
805
 
812
- def country=: (String) -> String
806
+ attr_accessor line1: String
813
807
 
814
808
  attr_reader line2: String?
815
809
 
@@ -825,8 +819,8 @@ module Increase
825
819
 
826
820
  def initialize: (
827
821
  city: String,
822
+ country: String,
828
823
  line1: String,
829
- ?country: String,
830
824
  ?line2: String,
831
825
  ?state: String,
832
826
  ?zip: String
@@ -834,8 +828,8 @@ module Increase
834
828
 
835
829
  def to_hash: -> {
836
830
  city: String,
837
- :line1 => String,
838
831
  country: String,
832
+ :line1 => String,
839
833
  :line2 => String,
840
834
  state: String,
841
835
  zip: String
@@ -1060,8 +1054,8 @@ module Increase
1060
1054
  type address =
1061
1055
  {
1062
1056
  city: String,
1063
- :line1 => String,
1064
1057
  country: String,
1058
+ :line1 => String,
1065
1059
  :line2 => String,
1066
1060
  state: String,
1067
1061
  zip: String
@@ -1070,11 +1064,9 @@ module Increase
1070
1064
  class Address < Increase::Internal::Type::BaseModel
1071
1065
  attr_accessor city: String
1072
1066
 
1073
- attr_accessor line1: String
1074
-
1075
- attr_reader country: String?
1067
+ attr_accessor country: String
1076
1068
 
1077
- def country=: (String) -> String
1069
+ attr_accessor line1: String
1078
1070
 
1079
1071
  attr_reader line2: String?
1080
1072
 
@@ -1090,8 +1082,8 @@ module Increase
1090
1082
 
1091
1083
  def initialize: (
1092
1084
  city: String,
1085
+ country: String,
1093
1086
  line1: String,
1094
- ?country: String,
1095
1087
  ?line2: String,
1096
1088
  ?state: String,
1097
1089
  ?zip: String
@@ -1099,8 +1091,8 @@ module Increase
1099
1091
 
1100
1092
  def to_hash: -> {
1101
1093
  city: String,
1102
- :line1 => String,
1103
1094
  country: String,
1095
+ :line1 => String,
1104
1096
  :line2 => String,
1105
1097
  state: String,
1106
1098
  zip: String
@@ -1591,8 +1583,8 @@ module Increase
1591
1583
  type address =
1592
1584
  {
1593
1585
  city: String,
1594
- :line1 => String,
1595
1586
  country: String,
1587
+ :line1 => String,
1596
1588
  :line2 => String,
1597
1589
  state: String,
1598
1590
  zip: String
@@ -1601,11 +1593,9 @@ module Increase
1601
1593
  class Address < Increase::Internal::Type::BaseModel
1602
1594
  attr_accessor city: String
1603
1595
 
1604
- attr_accessor line1: String
1605
-
1606
- attr_reader country: String?
1596
+ attr_accessor country: String
1607
1597
 
1608
- def country=: (String) -> String
1598
+ attr_accessor line1: String
1609
1599
 
1610
1600
  attr_reader line2: String?
1611
1601
 
@@ -1621,8 +1611,8 @@ module Increase
1621
1611
 
1622
1612
  def initialize: (
1623
1613
  city: String,
1614
+ country: String,
1624
1615
  line1: String,
1625
- ?country: String,
1626
1616
  ?line2: String,
1627
1617
  ?state: String,
1628
1618
  ?zip: String
@@ -1630,8 +1620,8 @@ module Increase
1630
1620
 
1631
1621
  def to_hash: -> {
1632
1622
  city: String,
1633
- :line1 => String,
1634
1623
  country: String,
1624
+ :line1 => String,
1635
1625
  :line2 => String,
1636
1626
  state: String,
1637
1627
  zip: String
@@ -1856,8 +1846,8 @@ module Increase
1856
1846
  type address =
1857
1847
  {
1858
1848
  city: String,
1859
- :line1 => String,
1860
1849
  country: String,
1850
+ :line1 => String,
1861
1851
  :line2 => String,
1862
1852
  state: String,
1863
1853
  zip: String
@@ -1866,11 +1856,9 @@ module Increase
1866
1856
  class Address < Increase::Internal::Type::BaseModel
1867
1857
  attr_accessor city: String
1868
1858
 
1869
- attr_accessor line1: String
1870
-
1871
- attr_reader country: String?
1859
+ attr_accessor country: String
1872
1860
 
1873
- def country=: (String) -> String
1861
+ attr_accessor line1: String
1874
1862
 
1875
1863
  attr_reader line2: String?
1876
1864
 
@@ -1886,8 +1874,8 @@ module Increase
1886
1874
 
1887
1875
  def initialize: (
1888
1876
  city: String,
1877
+ country: String,
1889
1878
  line1: String,
1890
- ?country: String,
1891
1879
  ?line2: String,
1892
1880
  ?state: String,
1893
1881
  ?zip: String
@@ -1895,8 +1883,8 @@ module Increase
1895
1883
 
1896
1884
  def to_hash: -> {
1897
1885
  city: String,
1898
- :line1 => String,
1899
1886
  country: String,
1887
+ :line1 => String,
1900
1888
  :line2 => String,
1901
1889
  state: String,
1902
1890
  zip: String
@@ -159,8 +159,8 @@ module Increase
159
159
  type address =
160
160
  {
161
161
  city: String,
162
- :line1 => String,
163
162
  country: String,
163
+ :line1 => String,
164
164
  :line2 => String,
165
165
  state: String,
166
166
  zip: String
@@ -169,11 +169,9 @@ module Increase
169
169
  class Address < Increase::Internal::Type::BaseModel
170
170
  attr_accessor city: String
171
171
 
172
- attr_accessor line1: String
173
-
174
- attr_reader country: String?
172
+ attr_accessor country: String
175
173
 
176
- def country=: (String) -> String
174
+ attr_accessor line1: String
177
175
 
178
176
  attr_reader line2: String?
179
177
 
@@ -189,8 +187,8 @@ module Increase
189
187
 
190
188
  def initialize: (
191
189
  city: String,
190
+ country: String,
192
191
  line1: String,
193
- ?country: String,
194
192
  ?line2: String,
195
193
  ?state: String,
196
194
  ?zip: String
@@ -198,8 +196,8 @@ module Increase
198
196
 
199
197
  def to_hash: -> {
200
198
  city: String,
201
- :line1 => String,
202
199
  country: String,
200
+ :line1 => String,
203
201
  :line2 => String,
204
202
  state: String,
205
203
  zip: String
@@ -360,8 +358,8 @@ module Increase
360
358
  type address =
361
359
  {
362
360
  city: String,
363
- :line1 => String,
364
361
  country: String,
362
+ :line1 => String,
365
363
  :line2 => String,
366
364
  state: String,
367
365
  zip: String
@@ -370,11 +368,9 @@ module Increase
370
368
  class Address < Increase::Internal::Type::BaseModel
371
369
  attr_accessor city: String
372
370
 
373
- attr_accessor line1: String
374
-
375
- attr_reader country: String?
371
+ attr_accessor country: String
376
372
 
377
- def country=: (String) -> String
373
+ attr_accessor line1: String
378
374
 
379
375
  attr_reader line2: String?
380
376
 
@@ -390,8 +386,8 @@ module Increase
390
386
 
391
387
  def initialize: (
392
388
  city: String,
389
+ country: String,
393
390
  line1: String,
394
- ?country: String,
395
391
  ?line2: String,
396
392
  ?state: String,
397
393
  ?zip: String
@@ -399,8 +395,8 @@ module Increase
399
395
 
400
396
  def to_hash: -> {
401
397
  city: String,
402
- :line1 => String,
403
398
  country: String,
399
+ :line1 => String,
404
400
  :line2 => String,
405
401
  state: String,
406
402
  zip: String
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.342.0
4
+ version: 1.343.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-07-13 00:00:00.000000000 Z
11
+ date: 2026-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi