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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bba0a5c3d87a0198cee1b66615a64098ffe32e5f
4
- data.tar.gz: 0080d98226856b380a0113b5e0a33785f588edae
3
+ metadata.gz: d2c7e679250e58108bd831bd735b8375bd7fac6f
4
+ data.tar.gz: 1e947ea7d60c8bd644bb54b9ae021073a8bac55b
5
5
  SHA512:
6
- metadata.gz: 3250d4b6840039696b44eee31e1bb620feed4fff5e9025a176a9b95effb6c1a92705de9ece96a36c5b68c766af9fd3d59a0cc450ee867e0b13404ed336424981
7
- data.tar.gz: d1532db66027c976aac75e3d5703e38255e8093cd85bd1de06915e38eaaef9ecdf1dbc0d974f29d44bc6f310020cbb643f138dfab6fc0855f2ae66d173830044
6
+ metadata.gz: 46ee892c33999eb769d289cf0ae400dd59f2acdf771e1c1e0b918426ff8d57569ec6405305c3e686b977b08dd9c3378c1c8778a0352b4d5996af8d8fe52bd72a
7
+ data.tar.gz: cc194ed21ae86130736f0c5d6c9d4733bf4383ce17168e0afe0f734a7a4bb490ec55ab51d0f4948ac1ad4e26aaf261ba5e85f52dc7c77280ae3676340a774417
@@ -0,0 +1,12 @@
1
+ {
2
+ "$ref": "any_channel_event_base.json#/definitions/any_channel_event_base",
3
+ "properties": {
4
+ "data": {
5
+ "type": "object",
6
+ "required": ["metadata"],
7
+ "properties": {
8
+ "metadata": {"type": "string"}
9
+ }
10
+ }
11
+ }
12
+ }
@@ -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" },
@@ -10,6 +10,8 @@
10
10
  "enum": [
11
11
  "create_integration",
12
12
  "destroy_integration",
13
+ "activate_integration_instance",
14
+ "deactivate_integration_instance",
13
15
  "create_integration_instance",
14
16
  "destroy_integration_instance",
15
17
  "pull_request",
@@ -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
+ }
@@ -24,7 +24,7 @@
24
24
  "healthcheck_url": {"type": "string"},
25
25
  "about_url": {"type": "string"},
26
26
  "dashboard_url": {"type": "string"},
27
- "event_callback_url": {"type": "string"}
27
+ "event_callback_url": {"type": "string", "format": "https-url"}
28
28
  }
29
29
  }
30
30
  }
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.3
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-23 00:00:00.000000000 Z
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.0.14.1
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.