any_channel_json_schemas 0.9.0 → 0.14.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: 199b1b3429d7732e3e3b645f3f185328b0fbab3e
4
- data.tar.gz: 4c7f80893f4cb1efffa25e78eac48456be7ae54f
3
+ metadata.gz: 734343e305d4606ae3a21ab87daba5406f394332
4
+ data.tar.gz: 7ae17c3c405f0c4259cae91cdb5840e301327635
5
5
  SHA512:
6
- metadata.gz: ae68cd808f928e5197159070b3825a5290e6f35807f34bdf646406b9b1f724fc876e29b64a5fa175f1734d614b7cb8e9daa4ef804f448c42c2b40f1936e1faff
7
- data.tar.gz: b63c08302a58f4f173a380f20ca5a99e5ddd3e7e54787a80eebc7e56f027145542580b2a9fd93e77bdbf280953c8a7378c5a68dc19ba268094a5249600cab700
6
+ metadata.gz: 43043d9744bf6cab1736f5114fec24888b95c507cd6db0f7c9d1b6fd7c31c5c1a4935fc92bbe94846ca5e5a2a444fb3e5a5d4f9714d8e4892601980fdc9abc4d
7
+ data.tar.gz: ed18b954792860f2c8f3cc6b7c7ffaa50fe03d29849a03235680d9586339fc1b3a8e171a14698357b06180fcd20e3d4fc3338eeabcf00642e3895bd98d445bfa
data/README.md CHANGED
@@ -25,6 +25,7 @@ event_callback_create_integration
25
25
  event_callback_create_integration_instance
26
26
  event_callback_destroy_integration
27
27
  event_callback_destroy_integration_instance
28
+ event_callback_destroy_user
28
29
  event_callback_pull_request
29
30
  event_callback_resources_created_from_external_ids
30
31
  ```
@@ -49,4 +50,4 @@ Feel free to open an issue or fork the repo and submit a PR.
49
50
 
50
51
  ### Contact
51
52
 
52
- jshay@zendesk.com
53
+ ocean@zendesk.com
@@ -6,6 +6,7 @@
6
6
  { "$ref": "event_callback_deactivate_integration_instance.json" },
7
7
  { "$ref": "event_callback_create_integration_instance.json" },
8
8
  { "$ref": "event_callback_destroy_integration_instance.json" },
9
+ { "$ref": "event_callback_destroy_user.json" },
9
10
  { "$ref": "event_callback_pull_request.json" },
10
11
  { "$ref": "event_callback_resources_created_from_external_ids.json" },
11
12
  { "$ref": "event_callback_channelback.json" }
@@ -14,6 +14,7 @@
14
14
  "deactivate_integration_instance",
15
15
  "create_integration_instance",
16
16
  "destroy_integration_instance",
17
+ "destroy_user_identity",
17
18
  "pull_request",
18
19
  "resources_created_from_external_ids",
19
20
  "channelback"
@@ -0,0 +1,19 @@
1
+ {
2
+ "$ref": "event_callback_base.json#/definitions/event_callback_base",
3
+ "properties": {
4
+ "data": {
5
+ "type": "object",
6
+ "required": ["author"],
7
+ "properties": {
8
+ "author": {
9
+ "type": "object",
10
+ "required": ["external_id"],
11
+ "properties": {
12
+ "external_id": {"type": "string"}
13
+ }
14
+ },
15
+ "metadata": {"type": "string"}
16
+ }
17
+ }
18
+ }
19
+ }
@@ -3,6 +3,7 @@
3
3
  "required": ["external_id", "message", "author", "created_at"],
4
4
  "properties": {
5
5
  "external_id": {"type": "string", "minLength": 1, "maxLength": 255, "format": "external-id"},
6
+ "internal_note": {"type": "boolean"},
6
7
  "message": {"type": "string", "minLength": 1, "maxLength": 65535},
7
8
  "html_message": {"type": "string", "minLength": 1, "maxLength": 65535},
8
9
  "parent_id": {"type": "string", "minLength": 1, "maxLength": 255, "format": "external-id"},
@@ -24,7 +25,8 @@
24
25
  "external_id": {"type": "string", "minLength": 1, "maxLength": 255, "format": "external-id"},
25
26
  "name": {"type": "string", "minLength": 1, "maxLength": 255},
26
27
  "image_url": {"type": "string", "minLength": 1, "maxLength": 511},
27
- "locale": {"type": "string", "minLength": 1, "maxLength": 255}
28
+ "locale": {"type": "string", "minLength": 1, "maxLength": 255},
29
+ "fields": {"type": "array", "maxItems": 64, "items": {"$ref": "#/definitions/field_value"} }
28
30
  }
29
31
  },
30
32
  "display_info": {
@@ -11,6 +11,7 @@
11
11
  "author": {"type": "string", "minLength": 1, "maxLength": 255},
12
12
  "push_client_id": {"type": "string", "minLength": 1, "maxLength": 128},
13
13
  "channelback_files": {"type": "boolean"},
14
+ "create_followup_tickets": {"type": "boolean"},
14
15
  "urls": { "$ref": "#/definitions/manifest/definitions/urls"}
15
16
  },
16
17
  "definitions": {
@@ -22,9 +23,9 @@
22
23
  "pull_url": {"type": "string", "maxLength": 511, "format": "https-url"},
23
24
  "channelback_url": {"type": "string", "maxLength": 511, "format": "https-url"},
24
25
  "clickthrough_url": {"type": "string", "maxLength": 511, "format": "https-url"},
25
- "healthcheck_url": {"type": "string", "maxLength": 511},
26
- "about_url": {"type": "string", "maxLength": 511},
27
- "dashboard_url": {"type": "string", "maxLength": 511},
26
+ "healthcheck_url": {"type": "string", "maxLength": 511, "format": "https-url"},
27
+ "about_url": {"type": "string", "maxLength": 511, "format": "https-url"},
28
+ "dashboard_url": {"type": "string", "maxLength": 511, "format": "https-url"},
28
29
  "event_callback_url": {"type": "string", "maxLength": 511, "format": "https-url"}
29
30
  }
30
31
  }
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.9.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JaredShay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-18 00:00:00.000000000 Z
11
+ date: 2020-07-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: JSON schema files for the Zendesk Channels Framework.
14
14
  email:
@@ -28,6 +28,7 @@ files:
28
28
  - json_schemas/event_callback_deactivate_integration_instance.json
29
29
  - json_schemas/event_callback_destroy_integration.json
30
30
  - json_schemas/event_callback_destroy_integration_instance.json
31
+ - json_schemas/event_callback_destroy_user.json
31
32
  - json_schemas/event_callback_pull_request.json
32
33
  - json_schemas/event_callback_resources_created_from_external_ids.json
33
34
  - json_schemas/external_resource.json
@@ -56,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
56
57
  version: '0'
57
58
  requirements: []
58
59
  rubyforge_project:
59
- rubygems_version: 2.6.13
60
+ rubygems_version: 2.6.14.1
60
61
  signing_key:
61
62
  specification_version: 4
62
63
  summary: JSON schema files for the Zendesk Channels Framework.