increase 1.288.0 → 1.289.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 011b538550ff07f3f3d4c6c24a53cfa3eea6f81dd5016fdc059e90179102e7f4
4
- data.tar.gz: a34895560589a1593d61a89f6f0bb2854c007f7f2285b0c975b6219537519fda
3
+ metadata.gz: c1dd6b104b5f574aa632422bab4c967e6f69685b64876ba27ea12fff98ed3648
4
+ data.tar.gz: 3565701794f735aa7ad16ebd9f3330e7356ee83047495d3c688214ce37748e08
5
5
  SHA512:
6
- metadata.gz: 6ea5aa0f9294e6924d3d6b8944a7756bc8671641e2405f62d450c296f4f77b82bb5afe7446246605064ef6d90250ad5bc665567045af54b05d6a5a8c25c8f0cc
7
- data.tar.gz: bf83b07e8cfc87913e977530cad16ca40bd140f94ac737d5616d8a2a35e33f78043d50759aa57defc54c8bf844fc368ab3a4ecd4d730af6c999c22cb9440e376
6
+ metadata.gz: 68dcc267c4921e100897aee77414f9c7b0a787ae13ae967e323f3efaf7f1147cf5d1ef89ab5ff1b56ee5cb99a6ba4b1793501485a59a90a35b823c7f036fb633
7
+ data.tar.gz: 783c0e4eba5a0c4f780969e6dffebb11f3a496fa28df831802cc1216bc90901bcdcd866536d865bc9950ba2b01aaed40848f77f4bc58682c2f6717e02e1329f9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.289.0 (2026-04-11)
4
+
5
+ Full Changelog: [v1.288.0...v1.289.0](https://github.com/Increase/increase-ruby/compare/v1.288.0...v1.289.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([f60a660](https://github.com/Increase/increase-ruby/commit/f60a6605944da289e1142cdc51be2dbfb5acefc2))
10
+
3
11
  ## 1.288.0 (2026-04-10)
4
12
 
5
13
  Full Changelog: [v1.287.0...v1.288.0](https://github.com/Increase/increase-ruby/compare/v1.287.0...v1.288.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.288.0"
18
+ gem "increase", "~> 1.289.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -34,13 +34,6 @@ module Increase
34
34
  # @return [Increase::Models::ExportCreateParams::AccountVerificationLetter, nil]
35
35
  optional :account_verification_letter, -> { Increase::ExportCreateParams::AccountVerificationLetter }
36
36
 
37
- # @!attribute balance_csv
38
- # Options for the created export. Required if `category` is equal to
39
- # `balance_csv`.
40
- #
41
- # @return [Increase::Models::ExportCreateParams::BalanceCsv, nil]
42
- optional :balance_csv, -> { Increase::ExportCreateParams::BalanceCsv }
43
-
44
37
  # @!attribute bookkeeping_account_balance_csv
45
38
  # Options for the created export. Required if `category` is equal to
46
39
  # `bookkeeping_account_balance_csv`.
@@ -89,7 +82,7 @@ module Increase
89
82
  # @return [Increase::Models::ExportCreateParams::VoidedCheck, nil]
90
83
  optional :voided_check, -> { Increase::ExportCreateParams::VoidedCheck }
91
84
 
92
- # @!method initialize(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, balance_csv: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
85
+ # @!method initialize(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
93
86
  # Some parameter documentations has been truncated, see
94
87
  # {Increase::Models::ExportCreateParams} for more details.
95
88
  #
@@ -101,8 +94,6 @@ module Increase
101
94
  #
102
95
  # @param account_verification_letter [Increase::Models::ExportCreateParams::AccountVerificationLetter] Options for the created export. Required if `category` is equal to `account_veri
103
96
  #
104
- # @param balance_csv [Increase::Models::ExportCreateParams::BalanceCsv] Options for the created export. Required if `category` is equal to `balance_csv`
105
- #
106
97
  # @param bookkeeping_account_balance_csv [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv] Options for the created export. Required if `category` is equal to
107
98
  # `bookkeeping\_
108
99
  #
@@ -266,73 +257,6 @@ module Increase
266
257
  # @param balance_date [Date] The date of the balance to include in the letter. Defaults to the current date.
267
258
  end
268
259
 
269
- class BalanceCsv < Increase::Internal::Type::BaseModel
270
- # @!attribute account_id
271
- # Filter exported Balances to the specified Account.
272
- #
273
- # @return [String, nil]
274
- optional :account_id, String
275
-
276
- # @!attribute created_at
277
- # Filter results by time range on the `created_at` attribute.
278
- #
279
- # @return [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt, nil]
280
- optional :created_at, -> { Increase::ExportCreateParams::BalanceCsv::CreatedAt }
281
-
282
- # @!method initialize(account_id: nil, created_at: nil)
283
- # Options for the created export. Required if `category` is equal to
284
- # `balance_csv`.
285
- #
286
- # @param account_id [String] Filter exported Balances to the specified Account.
287
- #
288
- # @param created_at [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
289
-
290
- # @see Increase::Models::ExportCreateParams::BalanceCsv#created_at
291
- class CreatedAt < Increase::Internal::Type::BaseModel
292
- # @!attribute after
293
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
294
- # timestamp.
295
- #
296
- # @return [Time, nil]
297
- optional :after, Time
298
-
299
- # @!attribute before
300
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
301
- # timestamp.
302
- #
303
- # @return [Time, nil]
304
- optional :before, Time
305
-
306
- # @!attribute on_or_after
307
- # Return results on or after this
308
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
309
- #
310
- # @return [Time, nil]
311
- optional :on_or_after, Time
312
-
313
- # @!attribute on_or_before
314
- # Return results on or before this
315
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
316
- #
317
- # @return [Time, nil]
318
- optional :on_or_before, Time
319
-
320
- # @!method initialize(after: nil, before: nil, on_or_after: nil, on_or_before: nil)
321
- # Some parameter documentations has been truncated, see
322
- # {Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt} for more details.
323
- #
324
- # Filter results by time range on the `created_at` attribute.
325
- #
326
- # @param after [Time] Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) tim
327
- #
328
- # @param before [Time] Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) ti
329
- #
330
- # @param on_or_after [Time] Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_860
331
- #
332
- # @param on_or_before [Time] Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_86
333
- end
334
- end
335
-
336
260
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
337
261
  # @!attribute bookkeeping_account_id
338
262
  # Filter exported Bookkeeping Account Balances to the specified Bookkeeping
@@ -8,7 +8,7 @@ module Increase
8
8
  #
9
9
  # Create an Export
10
10
  #
11
- # @overload create(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, balance_csv: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
11
+ # @overload create(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
12
12
  #
13
13
  # @param category [Symbol, Increase::Models::ExportCreateParams::Category] The type of Export to create.
14
14
  #
@@ -18,8 +18,6 @@ module Increase
18
18
  #
19
19
  # @param account_verification_letter [Increase::Models::ExportCreateParams::AccountVerificationLetter] Options for the created export. Required if `category` is equal to `account_veri
20
20
  #
21
- # @param balance_csv [Increase::Models::ExportCreateParams::BalanceCsv] Options for the created export. Required if `category` is equal to `balance_csv`
22
- #
23
21
  # @param bookkeeping_account_balance_csv [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv] Options for the created export. Required if `category` is equal to
24
22
  # `bookkeeping\_
25
23
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.288.0"
4
+ VERSION = "1.289.0"
5
5
  end
@@ -62,18 +62,6 @@ module Increase
62
62
  end
63
63
  attr_writer :account_verification_letter
64
64
 
65
- # Options for the created export. Required if `category` is equal to
66
- # `balance_csv`.
67
- sig { returns(T.nilable(Increase::ExportCreateParams::BalanceCsv)) }
68
- attr_reader :balance_csv
69
-
70
- sig do
71
- params(
72
- balance_csv: Increase::ExportCreateParams::BalanceCsv::OrHash
73
- ).void
74
- end
75
- attr_writer :balance_csv
76
-
77
65
  # Options for the created export. Required if `category` is equal to
78
66
  # `bookkeeping_account_balance_csv`.
79
67
  sig do
@@ -172,7 +160,6 @@ module Increase
172
160
  Increase::ExportCreateParams::AccountStatementOfx::OrHash,
173
161
  account_verification_letter:
174
162
  Increase::ExportCreateParams::AccountVerificationLetter::OrHash,
175
- balance_csv: Increase::ExportCreateParams::BalanceCsv::OrHash,
176
163
  bookkeeping_account_balance_csv:
177
164
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::OrHash,
178
165
  daily_account_balance_csv:
@@ -199,9 +186,6 @@ module Increase
199
186
  # `account_verification_letter`.
200
187
  account_verification_letter: nil,
201
188
  # Options for the created export. Required if `category` is equal to
202
- # `balance_csv`.
203
- balance_csv: nil,
204
- # Options for the created export. Required if `category` is equal to
205
189
  # `bookkeeping_account_balance_csv`.
206
190
  bookkeeping_account_balance_csv: nil,
207
191
  # Options for the created export. Required if `category` is equal to
@@ -234,7 +218,6 @@ module Increase
234
218
  Increase::ExportCreateParams::AccountStatementOfx,
235
219
  account_verification_letter:
236
220
  Increase::ExportCreateParams::AccountVerificationLetter,
237
- balance_csv: Increase::ExportCreateParams::BalanceCsv,
238
221
  bookkeeping_account_balance_csv:
239
222
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
240
223
  daily_account_balance_csv:
@@ -557,147 +540,6 @@ module Increase
557
540
  end
558
541
  end
559
542
 
560
- class BalanceCsv < Increase::Internal::Type::BaseModel
561
- OrHash =
562
- T.type_alias do
563
- T.any(
564
- Increase::ExportCreateParams::BalanceCsv,
565
- Increase::Internal::AnyHash
566
- )
567
- end
568
-
569
- # Filter exported Balances to the specified Account.
570
- sig { returns(T.nilable(String)) }
571
- attr_reader :account_id
572
-
573
- sig { params(account_id: String).void }
574
- attr_writer :account_id
575
-
576
- # Filter results by time range on the `created_at` attribute.
577
- sig do
578
- returns(
579
- T.nilable(Increase::ExportCreateParams::BalanceCsv::CreatedAt)
580
- )
581
- end
582
- attr_reader :created_at
583
-
584
- sig do
585
- params(
586
- created_at:
587
- Increase::ExportCreateParams::BalanceCsv::CreatedAt::OrHash
588
- ).void
589
- end
590
- attr_writer :created_at
591
-
592
- # Options for the created export. Required if `category` is equal to
593
- # `balance_csv`.
594
- sig do
595
- params(
596
- account_id: String,
597
- created_at:
598
- Increase::ExportCreateParams::BalanceCsv::CreatedAt::OrHash
599
- ).returns(T.attached_class)
600
- end
601
- def self.new(
602
- # Filter exported Balances to the specified Account.
603
- account_id: nil,
604
- # Filter results by time range on the `created_at` attribute.
605
- created_at: nil
606
- )
607
- end
608
-
609
- sig do
610
- override.returns(
611
- {
612
- account_id: String,
613
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
614
- }
615
- )
616
- end
617
- def to_hash
618
- end
619
-
620
- class CreatedAt < Increase::Internal::Type::BaseModel
621
- OrHash =
622
- T.type_alias do
623
- T.any(
624
- Increase::ExportCreateParams::BalanceCsv::CreatedAt,
625
- Increase::Internal::AnyHash
626
- )
627
- end
628
-
629
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
630
- # timestamp.
631
- sig { returns(T.nilable(Time)) }
632
- attr_reader :after
633
-
634
- sig { params(after: Time).void }
635
- attr_writer :after
636
-
637
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
638
- # timestamp.
639
- sig { returns(T.nilable(Time)) }
640
- attr_reader :before
641
-
642
- sig { params(before: Time).void }
643
- attr_writer :before
644
-
645
- # Return results on or after this
646
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
647
- sig { returns(T.nilable(Time)) }
648
- attr_reader :on_or_after
649
-
650
- sig { params(on_or_after: Time).void }
651
- attr_writer :on_or_after
652
-
653
- # Return results on or before this
654
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
655
- sig { returns(T.nilable(Time)) }
656
- attr_reader :on_or_before
657
-
658
- sig { params(on_or_before: Time).void }
659
- attr_writer :on_or_before
660
-
661
- # Filter results by time range on the `created_at` attribute.
662
- sig do
663
- params(
664
- after: Time,
665
- before: Time,
666
- on_or_after: Time,
667
- on_or_before: Time
668
- ).returns(T.attached_class)
669
- end
670
- def self.new(
671
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
672
- # timestamp.
673
- after: nil,
674
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
675
- # timestamp.
676
- before: nil,
677
- # Return results on or after this
678
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
679
- on_or_after: nil,
680
- # Return results on or before this
681
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
682
- on_or_before: nil
683
- )
684
- end
685
-
686
- sig do
687
- override.returns(
688
- {
689
- after: Time,
690
- before: Time,
691
- on_or_after: Time,
692
- on_or_before: Time
693
- }
694
- )
695
- end
696
- def to_hash
697
- end
698
- end
699
- end
700
-
701
543
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
702
544
  OrHash =
703
545
  T.type_alias do
@@ -13,7 +13,6 @@ module Increase
13
13
  Increase::ExportCreateParams::AccountStatementOfx::OrHash,
14
14
  account_verification_letter:
15
15
  Increase::ExportCreateParams::AccountVerificationLetter::OrHash,
16
- balance_csv: Increase::ExportCreateParams::BalanceCsv::OrHash,
17
16
  bookkeeping_account_balance_csv:
18
17
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::OrHash,
19
18
  daily_account_balance_csv:
@@ -40,9 +39,6 @@ module Increase
40
39
  # `account_verification_letter`.
41
40
  account_verification_letter: nil,
42
41
  # Options for the created export. Required if `category` is equal to
43
- # `balance_csv`.
44
- balance_csv: nil,
45
- # Options for the created export. Required if `category` is equal to
46
42
  # `bookkeeping_account_balance_csv`.
47
43
  bookkeeping_account_balance_csv: nil,
48
44
  # Options for the created export. Required if `category` is equal to
@@ -6,7 +6,6 @@ module Increase
6
6
  :account_statement_bai2 => Increase::ExportCreateParams::AccountStatementBai2,
7
7
  account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
8
8
  account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
9
- balance_csv: Increase::ExportCreateParams::BalanceCsv,
10
9
  bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
11
10
  daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
12
11
  entity_csv: Increase::ExportCreateParams::EntityCsv,
@@ -41,12 +40,6 @@ module Increase
41
40
  Increase::ExportCreateParams::AccountVerificationLetter
42
41
  ) -> Increase::ExportCreateParams::AccountVerificationLetter
43
42
 
44
- attr_reader balance_csv: Increase::ExportCreateParams::BalanceCsv?
45
-
46
- def balance_csv=: (
47
- Increase::ExportCreateParams::BalanceCsv
48
- ) -> Increase::ExportCreateParams::BalanceCsv
49
-
50
43
  attr_reader bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv?
51
44
 
52
45
  def bookkeeping_account_balance_csv=: (
@@ -94,7 +87,6 @@ module Increase
94
87
  ?account_statement_bai2: Increase::ExportCreateParams::AccountStatementBai2,
95
88
  ?account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
96
89
  ?account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
97
- ?balance_csv: Increase::ExportCreateParams::BalanceCsv,
98
90
  ?bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
99
91
  ?daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
100
92
  ?entity_csv: Increase::ExportCreateParams::EntityCsv,
@@ -110,7 +102,6 @@ module Increase
110
102
  :account_statement_bai2 => Increase::ExportCreateParams::AccountStatementBai2,
111
103
  account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
112
104
  account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
113
- balance_csv: Increase::ExportCreateParams::BalanceCsv,
114
105
  bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
115
106
  daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
116
107
  entity_csv: Increase::ExportCreateParams::EntityCsv,
@@ -259,69 +250,6 @@ module Increase
259
250
  def to_hash: -> { account_number_id: String, balance_date: Date }
260
251
  end
261
252
 
262
- type balance_csv =
263
- {
264
- account_id: String,
265
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
266
- }
267
-
268
- class BalanceCsv < Increase::Internal::Type::BaseModel
269
- attr_reader account_id: String?
270
-
271
- def account_id=: (String) -> String
272
-
273
- attr_reader created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt?
274
-
275
- def created_at=: (
276
- Increase::ExportCreateParams::BalanceCsv::CreatedAt
277
- ) -> Increase::ExportCreateParams::BalanceCsv::CreatedAt
278
-
279
- def initialize: (
280
- ?account_id: String,
281
- ?created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
282
- ) -> void
283
-
284
- def to_hash: -> {
285
- account_id: String,
286
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
287
- }
288
-
289
- type created_at =
290
- { after: Time, before: Time, on_or_after: Time, on_or_before: Time }
291
-
292
- class CreatedAt < Increase::Internal::Type::BaseModel
293
- attr_reader after: Time?
294
-
295
- def after=: (Time) -> Time
296
-
297
- attr_reader before: Time?
298
-
299
- def before=: (Time) -> Time
300
-
301
- attr_reader on_or_after: Time?
302
-
303
- def on_or_after=: (Time) -> Time
304
-
305
- attr_reader on_or_before: Time?
306
-
307
- def on_or_before=: (Time) -> Time
308
-
309
- def initialize: (
310
- ?after: Time,
311
- ?before: Time,
312
- ?on_or_after: Time,
313
- ?on_or_before: Time
314
- ) -> void
315
-
316
- def to_hash: -> {
317
- after: Time,
318
- before: Time,
319
- on_or_after: Time,
320
- on_or_before: Time
321
- }
322
- end
323
- end
324
-
325
253
  type bookkeeping_account_balance_csv =
326
254
  {
327
255
  bookkeeping_account_id: String,
@@ -6,7 +6,6 @@ module Increase
6
6
  ?account_statement_bai2: Increase::ExportCreateParams::AccountStatementBai2,
7
7
  ?account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
8
8
  ?account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
9
- ?balance_csv: Increase::ExportCreateParams::BalanceCsv,
10
9
  ?bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
11
10
  ?daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
12
11
  ?entity_csv: Increase::ExportCreateParams::EntityCsv,
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.288.0
4
+ version: 1.289.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-10 00:00:00.000000000 Z
11
+ date: 2026-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi