svix 1.66.0 → 1.67.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: 1b2c764d3f6d0cb44a16f50259a8f82392abc224718c06b86087717800cfce10
4
- data.tar.gz: 33c6040074c37b010eabca4f9749430092277b22d18c6db7612f8b64b780dfa2
3
+ metadata.gz: 0af4f3b9bc6f5a02c2821b0f01a141b2bce66c7db204d2912492165e79a4c6bf
4
+ data.tar.gz: c758b820f75ba2ee96dc15231d089cfe816cc244da619c58141ba9a7e75572ff
5
5
  SHA512:
6
- metadata.gz: 1b64e505980f9ecaafa278ae1a0b1c51c763d16fcbc832c5daa9f36288c4143fc822bf066d4d332a9533f82f42c04540b0a78577e213fdcda5ef6b12953661c1
7
- data.tar.gz: feaa20cebaabec9f844db20e9808998b31ec634bb448ffeb69fc9e5e1d5ad4feb9f3a45c7b8884a180ac22ddd68f81c5978e67f33cb8fac9a090a0746d058936
6
+ metadata.gz: 3ce995c03e07faccf059d86e30028b3bf98f11f0ead2bcca8bca011a0d83281aa2f567844314c1992ad86c6c72faca8cde5de7f757cd0ca6ce6a23d74ae3c0d3
7
+ data.tar.gz: e1b7391807dbe302896cf1350fe47e99de7f747607f8da7c6271c7fe5c8bb1c10aee019d4614517b8f95d14b3cfdb22d14fab6cb0a7a4ce147702dcca55cbeb6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- svix (1.66.0)
4
+ svix (1.67.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -3,12 +3,16 @@
3
3
  module Svix
4
4
  class ConnectorKind
5
5
  CUSTOM = "Custom".freeze
6
+ CLOSE_CRM = "CloseCRM".freeze
6
7
  CUSTOMER_IO = "CustomerIO".freeze
7
8
  DISCORD = "Discord".freeze
8
9
  HUBSPOT = "Hubspot".freeze
9
10
  INNGEST = "Inngest".freeze
11
+ LOOPS = "Loops".freeze
12
+ RESEND = "Resend".freeze
10
13
  SALESFORCE = "Salesforce".freeze
11
14
  SEGMENT = "Segment".freeze
15
+ SENDGRID = "Sendgrid".freeze
12
16
  SLACK = "Slack".freeze
13
17
  TEAMS = "Teams".freeze
14
18
  TRIGGER_DEV = "TriggerDev".freeze
@@ -18,12 +22,16 @@ module Svix
18
22
  def self.all_vars
19
23
  @all_vars ||= [
20
24
  CUSTOM,
25
+ CLOSE_CRM,
21
26
  CUSTOMER_IO,
22
27
  DISCORD,
23
28
  HUBSPOT,
24
29
  INNGEST,
30
+ LOOPS,
31
+ RESEND,
25
32
  SALESFORCE,
26
33
  SEGMENT,
34
+ SENDGRID,
27
35
  SLACK,
28
36
  TEAMS,
29
37
  TRIGGER_DEV,
@@ -7,6 +7,7 @@ require_relative "./cron_config"
7
7
  require_relative "./docusign_config"
8
8
  require_relative "./github_config"
9
9
  require_relative "./hubspot_config"
10
+ require_relative "./panda_doc_config"
10
11
  require_relative "./segment_config"
11
12
  require_relative "./shopify_config"
12
13
  require_relative "./slack_config"
@@ -68,6 +69,9 @@ module Svix
68
69
  class Nash < SvixConfig
69
70
  end
70
71
 
72
+ class PandaDoc < PandaDocConfig
73
+ end
74
+
71
75
  class Pleo < SvixConfig
72
76
  end
73
77
 
@@ -127,6 +131,7 @@ module Svix
127
131
  IngestSourceInConfig::IncidentIo => "incident-io",
128
132
  IngestSourceInConfig::Lithic => "lithic",
129
133
  IngestSourceInConfig::Nash => "nash",
134
+ IngestSourceInConfig::PandaDoc => "panda-doc",
130
135
  IngestSourceInConfig::Pleo => "pleo",
131
136
  IngestSourceInConfig::Replicate => "replicate",
132
137
  IngestSourceInConfig::Resend => "resend",
@@ -7,6 +7,7 @@ require_relative "./cron_config"
7
7
  require_relative "./docusign_config_out"
8
8
  require_relative "./github_config_out"
9
9
  require_relative "./hubspot_config_out"
10
+ require_relative "./panda_doc_config_out"
10
11
  require_relative "./segment_config_out"
11
12
  require_relative "./shopify_config_out"
12
13
  require_relative "./slack_config_out"
@@ -68,6 +69,9 @@ module Svix
68
69
  class Nash < SvixConfigOut
69
70
  end
70
71
 
72
+ class PandaDoc < PandaDocConfigOut
73
+ end
74
+
71
75
  class Pleo < SvixConfigOut
72
76
  end
73
77
 
@@ -132,6 +136,7 @@ module Svix
132
136
  IngestSourceOutConfig::IncidentIo => "incident-io",
133
137
  IngestSourceOutConfig::Lithic => "lithic",
134
138
  IngestSourceOutConfig::Nash => "nash",
139
+ IngestSourceOutConfig::PandaDoc => "panda-doc",
135
140
  IngestSourceOutConfig::Pleo => "pleo",
136
141
  IngestSourceOutConfig::Replicate => "replicate",
137
142
  IngestSourceOutConfig::Resend => "resend",
@@ -0,0 +1,46 @@
1
+ # frozen_string_literal: true
2
+ # This file is @generated
3
+ require "json"
4
+
5
+ module Svix
6
+ class PandaDocConfig
7
+ attr_accessor :secret
8
+
9
+ ALL_FIELD ||= ["secret"].freeze
10
+ private_constant :ALL_FIELD
11
+
12
+ def initialize(attributes = {})
13
+ unless attributes.is_a?(Hash)
14
+ fail(ArgumentError, "The input argument (attributes) must be a hash in `Svix::PandaDocConfig` new method")
15
+ end
16
+
17
+ attributes.each do |k, v|
18
+ unless ALL_FIELD.include?(k.to_s)
19
+ fail(ArgumentError, "The field #{k} is not part of Svix::PandaDocConfig")
20
+ end
21
+
22
+ instance_variable_set("@#{k}", v)
23
+ instance_variable_set("@__#{k}_is_defined", true)
24
+ end
25
+ end
26
+
27
+ def self.deserialize(attributes = {})
28
+ attributes = attributes.transform_keys(&:to_s)
29
+ attrs = Hash.new
30
+ attrs["secret"] = attributes["secret"]
31
+ new(attrs)
32
+ end
33
+
34
+ def serialize
35
+ out = Hash.new
36
+ out["secret"] = Svix::serialize_primitive(@secret) if @secret
37
+ out
38
+ end
39
+
40
+ # Serializes the object to a json string
41
+ # @return String
42
+ def to_json
43
+ JSON.dump(serialize)
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+ # This file is @generated
3
+ require "json"
4
+
5
+ module Svix
6
+ class PandaDocConfigOut
7
+
8
+ ALL_FIELD ||= [].freeze
9
+ private_constant :ALL_FIELD
10
+
11
+ def initialize(attributes = {})
12
+ unless attributes.is_a?(Hash)
13
+ fail(ArgumentError, "The input argument (attributes) must be a hash in `Svix::PandaDocConfigOut` new method")
14
+ end
15
+
16
+ attributes.each do |k, v|
17
+ unless ALL_FIELD.include?(k.to_s)
18
+ fail(ArgumentError, "The field #{k} is not part of Svix::PandaDocConfigOut")
19
+ end
20
+
21
+ instance_variable_set("@#{k}", v)
22
+ instance_variable_set("@__#{k}_is_defined", true)
23
+ end
24
+ end
25
+
26
+ def self.deserialize(attributes = {})
27
+ attributes = attributes.transform_keys(&:to_s)
28
+ attrs = Hash.new
29
+ new(attrs)
30
+ end
31
+
32
+ def serialize
33
+ out = Hash.new
34
+ out
35
+ end
36
+
37
+ # Serializes the object to a json string
38
+ # @return String
39
+ def to_json
40
+ JSON.dump(serialize)
41
+ end
42
+ end
43
+ end
data/lib/svix/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Svix
4
- VERSION = "1.66.0"
4
+ VERSION = "1.67.0"
5
5
  end
data/lib/svix.rb CHANGED
@@ -144,6 +144,8 @@ require "svix/models/operational_webhook_endpoint_secret_in"
144
144
  require "svix/models/operational_webhook_endpoint_secret_out"
145
145
  require "svix/models/operational_webhook_endpoint_update"
146
146
  require "svix/models/ordering"
147
+ require "svix/models/panda_doc_config"
148
+ require "svix/models/panda_doc_config_out"
147
149
  require "svix/models/polling_endpoint_consumer_seek_in"
148
150
  require "svix/models/polling_endpoint_consumer_seek_out"
149
151
  require "svix/models/polling_endpoint_message_out"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: svix
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.66.0
4
+ version: 1.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svix
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-05-22 00:00:00.000000000 Z
10
+ date: 2025-06-06 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rake
@@ -203,6 +203,8 @@ files:
203
203
  - lib/svix/models/operational_webhook_endpoint_secret_out.rb
204
204
  - lib/svix/models/operational_webhook_endpoint_update.rb
205
205
  - lib/svix/models/ordering.rb
206
+ - lib/svix/models/panda_doc_config.rb
207
+ - lib/svix/models/panda_doc_config_out.rb
206
208
  - lib/svix/models/polling_endpoint_consumer_seek_in.rb
207
209
  - lib/svix/models/polling_endpoint_consumer_seek_out.rb
208
210
  - lib/svix/models/polling_endpoint_message_out.rb