any_channel_json_schemas 0.0.3 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/json_schemas/event_callback_activate_integration_instance.json +12 -0
- data/json_schemas/event_callback_any.json +2 -0
- data/json_schemas/event_callback_base.json +2 -0
- data/json_schemas/event_callback_deactivate_integration_instance.json +22 -0
- data/json_schemas/manifest.json +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2c7e679250e58108bd831bd735b8375bd7fac6f
|
4
|
+
data.tar.gz: 1e947ea7d60c8bd644bb54b9ae021073a8bac55b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46ee892c33999eb769d289cf0ae400dd59f2acdf771e1c1e0b918426ff8d57569ec6405305c3e686b977b08dd9c3378c1c8778a0352b4d5996af8d8fe52bd72a
|
7
|
+
data.tar.gz: cc194ed21ae86130736f0c5d6c9d4733bf4383ce17168e0afe0f734a7a4bb490ec55ab51d0f4948ac1ad4e26aaf261ba5e85f52dc7c77280ae3676340a774417
|
@@ -2,6 +2,8 @@
|
|
2
2
|
"anyOf": [
|
3
3
|
{ "$ref": "event_callback_create_integration.json" },
|
4
4
|
{ "$ref": "event_callback_destroy_integration.json" },
|
5
|
+
{ "$ref": "event_callback_activate_integration_instance.json" },
|
6
|
+
{ "$ref": "event_callback_deactivate_integration_instance.json" },
|
5
7
|
{ "$ref": "event_callback_create_integration_instance.json" },
|
6
8
|
{ "$ref": "event_callback_destroy_integration_instance.json" },
|
7
9
|
{ "$ref": "event_callback_pull_request.json" },
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"$ref": "any_channel_event_base.json#/definitions/any_channel_event_base",
|
3
|
+
"properties": {
|
4
|
+
"data": {
|
5
|
+
"type": "object",
|
6
|
+
"required": ["metadata", "deactivated_by"],
|
7
|
+
"properties": {
|
8
|
+
"metadata": {"type": "string"},
|
9
|
+
"deactivated_by": {
|
10
|
+
"type": "string",
|
11
|
+
"enum": [
|
12
|
+
"error",
|
13
|
+
"api"
|
14
|
+
]
|
15
|
+
},
|
16
|
+
"deactivating_error": {
|
17
|
+
"type": "string"
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
data/json_schemas/manifest.json
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: any_channel_json_schemas
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JaredShay
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-11-
|
11
|
+
date: 2016-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: JSON schema files for the Zendesk Channels Framework.
|
14
14
|
email:
|
@@ -17,13 +17,14 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
-
- lib/any_channel_json_schemas.rb
|
21
20
|
- README.md
|
22
21
|
- json_schemas/channelback_payload.json
|
22
|
+
- json_schemas/event_callback_activate_integration_instance.json
|
23
23
|
- json_schemas/event_callback_any.json
|
24
24
|
- json_schemas/event_callback_base.json
|
25
25
|
- json_schemas/event_callback_create_integration.json
|
26
26
|
- json_schemas/event_callback_create_integration_instance.json
|
27
|
+
- json_schemas/event_callback_deactivate_integration_instance.json
|
27
28
|
- json_schemas/event_callback_destroy_integration.json
|
28
29
|
- json_schemas/event_callback_destroy_integration_instance.json
|
29
30
|
- json_schemas/event_callback_pull_request.json
|
@@ -32,6 +33,7 @@ files:
|
|
32
33
|
- json_schemas/manifest.json
|
33
34
|
- json_schemas/pull_payload.json
|
34
35
|
- json_schemas/push_parameters.json
|
36
|
+
- lib/any_channel_json_schemas.rb
|
35
37
|
homepage: https://github.com/zendesk/any_channel_json_schemas/ruby
|
36
38
|
licenses:
|
37
39
|
- Apache-2.0
|
@@ -42,17 +44,17 @@ require_paths:
|
|
42
44
|
- lib
|
43
45
|
required_ruby_version: !ruby/object:Gem::Requirement
|
44
46
|
requirements:
|
45
|
-
- -
|
47
|
+
- - ">="
|
46
48
|
- !ruby/object:Gem::Version
|
47
49
|
version: '0'
|
48
50
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
51
|
requirements:
|
50
|
-
- -
|
52
|
+
- - ">="
|
51
53
|
- !ruby/object:Gem::Version
|
52
54
|
version: '0'
|
53
55
|
requirements: []
|
54
56
|
rubyforge_project:
|
55
|
-
rubygems_version: 2.
|
57
|
+
rubygems_version: 2.5.1
|
56
58
|
signing_key:
|
57
59
|
specification_version: 4
|
58
60
|
summary: JSON schema files for the Zendesk Channels Framework.
|