telnyx 5.97.0 → 5.98.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: 37930142e3066a7e6e12a55c37a5e1fae1b2cb7dc64eeea0e599bc000ae9b811
4
- data.tar.gz: 2f65e5fa943c8329552600511f3e2db68b448810c09432d353299fd64b351e87
3
+ metadata.gz: efa3812eaa3e94c92113f3e17eb858fb0a786477044d0348bf8851c331228195
4
+ data.tar.gz: 3a9cfe9c52cc8bcb557c876327bf7f5abd9fe9986beb24055c242533a1d86fdd
5
5
  SHA512:
6
- metadata.gz: a6a51b4037ae476aa1e76c67089174d509ec4906362a9ff8f750cca843c0f2c8e8bcc3d4b78f2e064c8f565452e2e1926bc310647f51c13b3851fab0097a0641
7
- data.tar.gz: 6ed01b6c22abff8014a09d9d1be26ff4bf5af1290e8076586ad5baaf4779efe02f443358d6259ff1ff63d88c5a783280dcef99c66214c88dd9619044f02c4059
6
+ metadata.gz: a365cf62c86bf3703c1483cba2ed22cf25d4a42b5f1130525cd51980c07987fcdffcba5b693cc972ad7cb1fe63474ecf1ea142aab05fa87aa78798509ea2a3f7
7
+ data.tar.gz: 447ed657855616fd05194b2ec5fd3d0c7db16f0fc6c269c5efe7af4077f49a584b26d368354f77afef16faa6c962ae5348b68c60db52bbf0af62064778dd09e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.98.0 (2026-05-03)
4
+
5
+ Full Changelog: [v5.97.0...v5.98.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.97.0...v5.98.0)
6
+
7
+ ### Features
8
+
9
+ * Update observability ([99e3f4b](https://github.com/team-telnyx/telnyx-ruby/commit/99e3f4b3a421178714aa3f17dae81e306034aba6))
10
+
3
11
  ## 5.97.0 (2026-04-30)
4
12
 
5
13
  Full Changelog: [v5.96.0...v5.97.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.96.0...v5.97.0)
data/README.md CHANGED
@@ -24,7 +24,7 @@ To use this gem, install via Bundler by adding the following to your application
24
24
  <!-- x-release-please-start-version -->
25
25
 
26
26
  ```ruby
27
- gem "telnyx", "~> 5.97.0"
27
+ gem "telnyx", "~> 5.98.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -9,6 +9,31 @@ module Telnyx
9
9
  # @return [String, nil]
10
10
  optional :host, String
11
11
 
12
+ # @!attribute prompt_label
13
+ #
14
+ # @return [String, nil]
15
+ optional :prompt_label, String
16
+
17
+ # @!attribute prompt_name
18
+ #
19
+ # @return [String, nil]
20
+ optional :prompt_name, String
21
+
22
+ # @!attribute prompt_sync
23
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
24
+ #
25
+ # When ENABLED + prompt_name set, every assistant create/update pushes
26
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
27
+ # prompt_version.
28
+ #
29
+ # @return [Symbol, Telnyx::Models::AI::Observability::PromptSync, nil]
30
+ optional :prompt_sync, enum: -> { Telnyx::AI::Observability::PromptSync }
31
+
32
+ # @!attribute prompt_version
33
+ #
34
+ # @return [Integer, nil]
35
+ optional :prompt_version, Integer
36
+
12
37
  # @!attribute public_key_ref
13
38
  #
14
39
  # @return [String, nil]
@@ -24,12 +49,43 @@ module Telnyx
24
49
  # @return [Symbol, Telnyx::Models::AI::Observability::Status, nil]
25
50
  optional :status, enum: -> { Telnyx::AI::Observability::Status }
26
51
 
27
- # @!method initialize(host: nil, public_key_ref: nil, secret_key_ref: nil, status: nil)
52
+ # @!method initialize(host: nil, prompt_label: nil, prompt_name: nil, prompt_sync: nil, prompt_version: nil, public_key_ref: nil, secret_key_ref: nil, status: nil)
53
+ # Some parameter documentations has been truncated, see
54
+ # {Telnyx::Models::AI::Observability} for more details.
55
+ #
28
56
  # @param host [String]
57
+ #
58
+ # @param prompt_label [String]
59
+ #
60
+ # @param prompt_name [String]
61
+ #
62
+ # @param prompt_sync [Symbol, Telnyx::Models::AI::Observability::PromptSync] Whether to auto-publish the assistant's instructions as a Langfuse prompt.
63
+ #
64
+ # @param prompt_version [Integer]
65
+ #
29
66
  # @param public_key_ref [String]
67
+ #
30
68
  # @param secret_key_ref [String]
69
+ #
31
70
  # @param status [Symbol, Telnyx::Models::AI::Observability::Status]
32
71
 
72
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
73
+ #
74
+ # When ENABLED + prompt_name set, every assistant create/update pushes
75
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
76
+ # prompt_version.
77
+ #
78
+ # @see Telnyx::Models::AI::Observability#prompt_sync
79
+ module PromptSync
80
+ extend Telnyx::Internal::Type::Enum
81
+
82
+ ENABLED = :enabled
83
+ DISABLED = :disabled
84
+
85
+ # @!method self.values
86
+ # @return [Array<Symbol>]
87
+ end
88
+
33
89
  # @see Telnyx::Models::AI::Observability#status
34
90
  module Status
35
91
  extend Telnyx::Internal::Type::Enum
@@ -9,6 +9,31 @@ module Telnyx
9
9
  # @return [String, nil]
10
10
  optional :host, String
11
11
 
12
+ # @!attribute prompt_label
13
+ #
14
+ # @return [String, nil]
15
+ optional :prompt_label, String
16
+
17
+ # @!attribute prompt_name
18
+ #
19
+ # @return [String, nil]
20
+ optional :prompt_name, String
21
+
22
+ # @!attribute prompt_sync
23
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
24
+ #
25
+ # When ENABLED + prompt_name set, every assistant create/update pushes
26
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
27
+ # prompt_version.
28
+ #
29
+ # @return [Symbol, Telnyx::Models::AI::ObservabilityReq::PromptSync, nil]
30
+ optional :prompt_sync, enum: -> { Telnyx::AI::ObservabilityReq::PromptSync }
31
+
32
+ # @!attribute prompt_version
33
+ #
34
+ # @return [Integer, nil]
35
+ optional :prompt_version, Integer
36
+
12
37
  # @!attribute public_key_ref
13
38
  #
14
39
  # @return [String, nil]
@@ -24,12 +49,43 @@ module Telnyx
24
49
  # @return [Symbol, Telnyx::Models::AI::ObservabilityReq::Status, nil]
25
50
  optional :status, enum: -> { Telnyx::AI::ObservabilityReq::Status }
26
51
 
27
- # @!method initialize(host: nil, public_key_ref: nil, secret_key_ref: nil, status: nil)
52
+ # @!method initialize(host: nil, prompt_label: nil, prompt_name: nil, prompt_sync: nil, prompt_version: nil, public_key_ref: nil, secret_key_ref: nil, status: nil)
53
+ # Some parameter documentations has been truncated, see
54
+ # {Telnyx::Models::AI::ObservabilityReq} for more details.
55
+ #
28
56
  # @param host [String]
57
+ #
58
+ # @param prompt_label [String]
59
+ #
60
+ # @param prompt_name [String]
61
+ #
62
+ # @param prompt_sync [Symbol, Telnyx::Models::AI::ObservabilityReq::PromptSync] Whether to auto-publish the assistant's instructions as a Langfuse prompt.
63
+ #
64
+ # @param prompt_version [Integer]
65
+ #
29
66
  # @param public_key_ref [String]
67
+ #
30
68
  # @param secret_key_ref [String]
69
+ #
31
70
  # @param status [Symbol, Telnyx::Models::AI::ObservabilityReq::Status]
32
71
 
72
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
73
+ #
74
+ # When ENABLED + prompt_name set, every assistant create/update pushes
75
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
76
+ # prompt_version.
77
+ #
78
+ # @see Telnyx::Models::AI::ObservabilityReq#prompt_sync
79
+ module PromptSync
80
+ extend Telnyx::Internal::Type::Enum
81
+
82
+ ENABLED = :enabled
83
+ DISABLED = :disabled
84
+
85
+ # @!method self.values
86
+ # @return [Array<Symbol>]
87
+ end
88
+
33
89
  # @see Telnyx::Models::AI::ObservabilityReq#status
34
90
  module Status
35
91
  extend Telnyx::Internal::Type::Enum
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.97.0"
4
+ VERSION = "5.98.0"
5
5
  end
@@ -15,6 +15,43 @@ module Telnyx
15
15
  sig { params(host: String).void }
16
16
  attr_writer :host
17
17
 
18
+ sig { returns(T.nilable(String)) }
19
+ attr_reader :prompt_label
20
+
21
+ sig { params(prompt_label: String).void }
22
+ attr_writer :prompt_label
23
+
24
+ sig { returns(T.nilable(String)) }
25
+ attr_reader :prompt_name
26
+
27
+ sig { params(prompt_name: String).void }
28
+ attr_writer :prompt_name
29
+
30
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
31
+ #
32
+ # When ENABLED + prompt_name set, every assistant create/update pushes
33
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
34
+ # prompt_version.
35
+ sig do
36
+ returns(
37
+ T.nilable(Telnyx::AI::Observability::PromptSync::TaggedSymbol)
38
+ )
39
+ end
40
+ attr_reader :prompt_sync
41
+
42
+ sig do
43
+ params(
44
+ prompt_sync: Telnyx::AI::Observability::PromptSync::OrSymbol
45
+ ).void
46
+ end
47
+ attr_writer :prompt_sync
48
+
49
+ sig { returns(T.nilable(Integer)) }
50
+ attr_reader :prompt_version
51
+
52
+ sig { params(prompt_version: Integer).void }
53
+ attr_writer :prompt_version
54
+
18
55
  sig { returns(T.nilable(String)) }
19
56
  attr_reader :public_key_ref
20
57
 
@@ -38,6 +75,10 @@ module Telnyx
38
75
  sig do
39
76
  params(
40
77
  host: String,
78
+ prompt_label: String,
79
+ prompt_name: String,
80
+ prompt_sync: Telnyx::AI::Observability::PromptSync::OrSymbol,
81
+ prompt_version: Integer,
41
82
  public_key_ref: String,
42
83
  secret_key_ref: String,
43
84
  status: Telnyx::AI::Observability::Status::OrSymbol
@@ -45,6 +86,15 @@ module Telnyx
45
86
  end
46
87
  def self.new(
47
88
  host: nil,
89
+ prompt_label: nil,
90
+ prompt_name: nil,
91
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
92
+ #
93
+ # When ENABLED + prompt_name set, every assistant create/update pushes
94
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
95
+ # prompt_version.
96
+ prompt_sync: nil,
97
+ prompt_version: nil,
48
98
  public_key_ref: nil,
49
99
  secret_key_ref: nil,
50
100
  status: nil
@@ -55,6 +105,10 @@ module Telnyx
55
105
  override.returns(
56
106
  {
57
107
  host: String,
108
+ prompt_label: String,
109
+ prompt_name: String,
110
+ prompt_sync: Telnyx::AI::Observability::PromptSync::TaggedSymbol,
111
+ prompt_version: Integer,
58
112
  public_key_ref: String,
59
113
  secret_key_ref: String,
60
114
  status: Telnyx::AI::Observability::Status::TaggedSymbol
@@ -64,6 +118,37 @@ module Telnyx
64
118
  def to_hash
65
119
  end
66
120
 
121
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
122
+ #
123
+ # When ENABLED + prompt_name set, every assistant create/update pushes
124
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
125
+ # prompt_version.
126
+ module PromptSync
127
+ extend Telnyx::Internal::Type::Enum
128
+
129
+ TaggedSymbol =
130
+ T.type_alias do
131
+ T.all(Symbol, Telnyx::AI::Observability::PromptSync)
132
+ end
133
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
134
+
135
+ ENABLED =
136
+ T.let(:enabled, Telnyx::AI::Observability::PromptSync::TaggedSymbol)
137
+ DISABLED =
138
+ T.let(
139
+ :disabled,
140
+ Telnyx::AI::Observability::PromptSync::TaggedSymbol
141
+ )
142
+
143
+ sig do
144
+ override.returns(
145
+ T::Array[Telnyx::AI::Observability::PromptSync::TaggedSymbol]
146
+ )
147
+ end
148
+ def self.values
149
+ end
150
+ end
151
+
67
152
  module Status
68
153
  extend Telnyx::Internal::Type::Enum
69
154
 
@@ -15,6 +15,41 @@ module Telnyx
15
15
  sig { params(host: String).void }
16
16
  attr_writer :host
17
17
 
18
+ sig { returns(T.nilable(String)) }
19
+ attr_reader :prompt_label
20
+
21
+ sig { params(prompt_label: String).void }
22
+ attr_writer :prompt_label
23
+
24
+ sig { returns(T.nilable(String)) }
25
+ attr_reader :prompt_name
26
+
27
+ sig { params(prompt_name: String).void }
28
+ attr_writer :prompt_name
29
+
30
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
31
+ #
32
+ # When ENABLED + prompt_name set, every assistant create/update pushes
33
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
34
+ # prompt_version.
35
+ sig do
36
+ returns(T.nilable(Telnyx::AI::ObservabilityReq::PromptSync::OrSymbol))
37
+ end
38
+ attr_reader :prompt_sync
39
+
40
+ sig do
41
+ params(
42
+ prompt_sync: Telnyx::AI::ObservabilityReq::PromptSync::OrSymbol
43
+ ).void
44
+ end
45
+ attr_writer :prompt_sync
46
+
47
+ sig { returns(T.nilable(Integer)) }
48
+ attr_reader :prompt_version
49
+
50
+ sig { params(prompt_version: Integer).void }
51
+ attr_writer :prompt_version
52
+
18
53
  sig { returns(T.nilable(String)) }
19
54
  attr_reader :public_key_ref
20
55
 
@@ -40,6 +75,10 @@ module Telnyx
40
75
  sig do
41
76
  params(
42
77
  host: String,
78
+ prompt_label: String,
79
+ prompt_name: String,
80
+ prompt_sync: Telnyx::AI::ObservabilityReq::PromptSync::OrSymbol,
81
+ prompt_version: Integer,
43
82
  public_key_ref: String,
44
83
  secret_key_ref: String,
45
84
  status: Telnyx::AI::ObservabilityReq::Status::OrSymbol
@@ -47,6 +86,15 @@ module Telnyx
47
86
  end
48
87
  def self.new(
49
88
  host: nil,
89
+ prompt_label: nil,
90
+ prompt_name: nil,
91
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
92
+ #
93
+ # When ENABLED + prompt_name set, every assistant create/update pushes
94
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
95
+ # prompt_version.
96
+ prompt_sync: nil,
97
+ prompt_version: nil,
50
98
  public_key_ref: nil,
51
99
  secret_key_ref: nil,
52
100
  status: nil
@@ -57,6 +105,10 @@ module Telnyx
57
105
  override.returns(
58
106
  {
59
107
  host: String,
108
+ prompt_label: String,
109
+ prompt_name: String,
110
+ prompt_sync: Telnyx::AI::ObservabilityReq::PromptSync::OrSymbol,
111
+ prompt_version: Integer,
60
112
  public_key_ref: String,
61
113
  secret_key_ref: String,
62
114
  status: Telnyx::AI::ObservabilityReq::Status::OrSymbol
@@ -66,6 +118,40 @@ module Telnyx
66
118
  def to_hash
67
119
  end
68
120
 
121
+ # Whether to auto-publish the assistant's instructions as a Langfuse prompt.
122
+ #
123
+ # When ENABLED + prompt_name set, every assistant create/update pushes
124
+ # `instructions` to Langfuse via create_prompt and stores the returned version in
125
+ # prompt_version.
126
+ module PromptSync
127
+ extend Telnyx::Internal::Type::Enum
128
+
129
+ TaggedSymbol =
130
+ T.type_alias do
131
+ T.all(Symbol, Telnyx::AI::ObservabilityReq::PromptSync)
132
+ end
133
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
134
+
135
+ ENABLED =
136
+ T.let(
137
+ :enabled,
138
+ Telnyx::AI::ObservabilityReq::PromptSync::TaggedSymbol
139
+ )
140
+ DISABLED =
141
+ T.let(
142
+ :disabled,
143
+ Telnyx::AI::ObservabilityReq::PromptSync::TaggedSymbol
144
+ )
145
+
146
+ sig do
147
+ override.returns(
148
+ T::Array[Telnyx::AI::ObservabilityReq::PromptSync::TaggedSymbol]
149
+ )
150
+ end
151
+ def self.values
152
+ end
153
+ end
154
+
69
155
  module Status
70
156
  extend Telnyx::Internal::Type::Enum
71
157
 
@@ -4,6 +4,10 @@ module Telnyx
4
4
  type observability =
5
5
  {
6
6
  host: String,
7
+ prompt_label: String,
8
+ prompt_name: String,
9
+ prompt_sync: Telnyx::Models::AI::Observability::prompt_sync,
10
+ prompt_version: Integer,
7
11
  public_key_ref: String,
8
12
  secret_key_ref: String,
9
13
  status: Telnyx::Models::AI::Observability::status
@@ -14,6 +18,24 @@ module Telnyx
14
18
 
15
19
  def host=: (String) -> String
16
20
 
21
+ attr_reader prompt_label: String?
22
+
23
+ def prompt_label=: (String) -> String
24
+
25
+ attr_reader prompt_name: String?
26
+
27
+ def prompt_name=: (String) -> String
28
+
29
+ attr_reader prompt_sync: Telnyx::Models::AI::Observability::prompt_sync?
30
+
31
+ def prompt_sync=: (
32
+ Telnyx::Models::AI::Observability::prompt_sync
33
+ ) -> Telnyx::Models::AI::Observability::prompt_sync
34
+
35
+ attr_reader prompt_version: Integer?
36
+
37
+ def prompt_version=: (Integer) -> Integer
38
+
17
39
  attr_reader public_key_ref: String?
18
40
 
19
41
  def public_key_ref=: (String) -> String
@@ -30,6 +52,10 @@ module Telnyx
30
52
 
31
53
  def initialize: (
32
54
  ?host: String,
55
+ ?prompt_label: String,
56
+ ?prompt_name: String,
57
+ ?prompt_sync: Telnyx::Models::AI::Observability::prompt_sync,
58
+ ?prompt_version: Integer,
33
59
  ?public_key_ref: String,
34
60
  ?secret_key_ref: String,
35
61
  ?status: Telnyx::Models::AI::Observability::status
@@ -37,11 +63,26 @@ module Telnyx
37
63
 
38
64
  def to_hash: -> {
39
65
  host: String,
66
+ prompt_label: String,
67
+ prompt_name: String,
68
+ prompt_sync: Telnyx::Models::AI::Observability::prompt_sync,
69
+ prompt_version: Integer,
40
70
  public_key_ref: String,
41
71
  secret_key_ref: String,
42
72
  status: Telnyx::Models::AI::Observability::status
43
73
  }
44
74
 
75
+ type prompt_sync = :enabled | :disabled
76
+
77
+ module PromptSync
78
+ extend Telnyx::Internal::Type::Enum
79
+
80
+ ENABLED: :enabled
81
+ DISABLED: :disabled
82
+
83
+ def self?.values: -> ::Array[Telnyx::Models::AI::Observability::prompt_sync]
84
+ end
85
+
45
86
  type status = :enabled | :disabled
46
87
 
47
88
  module Status
@@ -4,6 +4,10 @@ module Telnyx
4
4
  type observability_req =
5
5
  {
6
6
  host: String,
7
+ prompt_label: String,
8
+ prompt_name: String,
9
+ prompt_sync: Telnyx::Models::AI::ObservabilityReq::prompt_sync,
10
+ prompt_version: Integer,
7
11
  public_key_ref: String,
8
12
  secret_key_ref: String,
9
13
  status: Telnyx::Models::AI::ObservabilityReq::status
@@ -14,6 +18,24 @@ module Telnyx
14
18
 
15
19
  def host=: (String) -> String
16
20
 
21
+ attr_reader prompt_label: String?
22
+
23
+ def prompt_label=: (String) -> String
24
+
25
+ attr_reader prompt_name: String?
26
+
27
+ def prompt_name=: (String) -> String
28
+
29
+ attr_reader prompt_sync: Telnyx::Models::AI::ObservabilityReq::prompt_sync?
30
+
31
+ def prompt_sync=: (
32
+ Telnyx::Models::AI::ObservabilityReq::prompt_sync
33
+ ) -> Telnyx::Models::AI::ObservabilityReq::prompt_sync
34
+
35
+ attr_reader prompt_version: Integer?
36
+
37
+ def prompt_version=: (Integer) -> Integer
38
+
17
39
  attr_reader public_key_ref: String?
18
40
 
19
41
  def public_key_ref=: (String) -> String
@@ -30,6 +52,10 @@ module Telnyx
30
52
 
31
53
  def initialize: (
32
54
  ?host: String,
55
+ ?prompt_label: String,
56
+ ?prompt_name: String,
57
+ ?prompt_sync: Telnyx::Models::AI::ObservabilityReq::prompt_sync,
58
+ ?prompt_version: Integer,
33
59
  ?public_key_ref: String,
34
60
  ?secret_key_ref: String,
35
61
  ?status: Telnyx::Models::AI::ObservabilityReq::status
@@ -37,11 +63,26 @@ module Telnyx
37
63
 
38
64
  def to_hash: -> {
39
65
  host: String,
66
+ prompt_label: String,
67
+ prompt_name: String,
68
+ prompt_sync: Telnyx::Models::AI::ObservabilityReq::prompt_sync,
69
+ prompt_version: Integer,
40
70
  public_key_ref: String,
41
71
  secret_key_ref: String,
42
72
  status: Telnyx::Models::AI::ObservabilityReq::status
43
73
  }
44
74
 
75
+ type prompt_sync = :enabled | :disabled
76
+
77
+ module PromptSync
78
+ extend Telnyx::Internal::Type::Enum
79
+
80
+ ENABLED: :enabled
81
+ DISABLED: :disabled
82
+
83
+ def self?.values: -> ::Array[Telnyx::Models::AI::ObservabilityReq::prompt_sync]
84
+ end
85
+
45
86
  type status = :enabled | :disabled
46
87
 
47
88
  module Status
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telnyx
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.97.0
4
+ version: 5.98.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-04-30 00:00:00.000000000 Z
11
+ date: 2026-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi