agentic-commerce-protocol 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 64b32326718d3467c2755f66714b780720b03c084653261dcea07aa8e967f537
4
+ data.tar.gz: e21fa8eb0ee169c73a63adccbb9c6542ecb013b419219f57fa587f3793280dc6
5
+ SHA512:
6
+ metadata.gz: 36aadc71eeb91eb08f43ee5d442e47dd2a6f2c655c6246073400d5576525d3e5ba49b0ae97557c6a67e6fb214255f15d8628c8ae013abe895548c43ead6672ea
7
+ data.tar.gz: 148ca0f95a1e79f519d33ee89e04c471265ebbc07963a979a3fea9a2a8d6e0e62ed81909247f98b0eb692d7864a2764c14b35080326ce5049d80a95c9e174426
data/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # Agentic Commerce Protocol - Ruby
2
+
3
+ Type definitions for the [Agentic Commerce Protocol](https://developers.openai.com/commerce/guides/get-started) specification.
4
+
5
+ This is an unofficial package maintained by [Svix](https://www.svix.com). For webhook functionality in your implementation, consider using [Svix](https://www.svix.com).
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'agentic-commerce-protocol'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ ```bash
18
+ bundle install
19
+ ```
20
+
21
+ Or install it yourself as:
22
+
23
+ ```bash
24
+ gem install agentic-commerce-protocol
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```ruby
30
+ require 'agentic_commerce_protocol'
31
+
32
+ # Use the types in your implementation
33
+ ```
34
+
35
+ ## License
36
+
37
+ MIT
38
+
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AgenticCommerceProtocol
4
+ # Placeholder type for the Agentic Commerce Protocol
5
+ class Placeholder
6
+ attr_accessor :name
7
+
8
+ def initialize(name:)
9
+ @name = name
10
+ end
11
+ end
12
+ end
13
+
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AgenticCommerceProtocol
4
+ VERSION = "0.1.0"
5
+ end
6
+
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "agentic_commerce_protocol/version"
4
+ require_relative "agentic_commerce_protocol/types"
5
+
6
+ module AgenticCommerceProtocol
7
+ class Error < StandardError; end
8
+ end
9
+
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: agentic-commerce-protocol
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Svix
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-10-01 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Type definitions for the Agentic Commerce Protocol specification
13
+ email: []
14
+ executables: []
15
+ extensions: []
16
+ extra_rdoc_files: []
17
+ files:
18
+ - README.md
19
+ - lib/agentic_commerce_protocol.rb
20
+ - lib/agentic_commerce_protocol/types.rb
21
+ - lib/agentic_commerce_protocol/version.rb
22
+ homepage: https://github.com/svix/agentic-commerce-protocol
23
+ licenses:
24
+ - MIT
25
+ metadata:
26
+ homepage_uri: https://github.com/svix/agentic-commerce-protocol
27
+ source_code_uri: https://github.com/svix/agentic-commerce-protocol
28
+ documentation_uri: https://developers.openai.com/commerce/guides/get-started
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 3.2.0
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.6.2
44
+ specification_version: 4
45
+ summary: Type definitions for the Agentic Commerce Protocol specification
46
+ test_files: []