happyco 2.4.0 → 2.5.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
- SHA1:
3
- metadata.gz: 9052c60627851ee12ef98bfe4e9d21b263acd5de
4
- data.tar.gz: 0ed51f994aca0d97f4a229a04dca98cc65604ef6
2
+ SHA256:
3
+ metadata.gz: 1833b56435dc5592455c98f246c2630ac7591d3b72ca275ef592f96fce2a85b3
4
+ data.tar.gz: cf20430698af2b6c74adca4303bd56487db0937007c7c59e75d24ebca6c8f122
5
5
  SHA512:
6
- metadata.gz: 2aa37cd94e2e16d29c18558a6d22dc59c541db3d11eb62892db917872a51977829188df81a238e352ca72b09cb2931d9f08f75b99b482ea6c9c7d9dd041de632
7
- data.tar.gz: 8164579823168d3d6b35ad980e768b0af6bf03e328f1d5192fac3d366d0ce32cfeb2f2fe9248e5d5257df3377259ed3392a395b4c7be5427bdeb9f32561b49c1
6
+ metadata.gz: 3c6d5621a7ba488671165bf735e7a4dcd5ca0f59bf21cac0d041fb247282055f6bf0f401d998cc4492d2c4c1a1612e9e21ac88ba38c9cc4c53f6066997fbefcd
7
+ data.tar.gz: 5a5c0007c1b2cd260ac5a6e0f07f6d2699efbfc0976a4eb1ed223bbb6c303e2c04222db131b18030877ae52d65c45d630e2e8d32341f1f87351049f6a55162ca
data/README.md CHANGED
@@ -1 +1 @@
1
- /private/var/tmp/_bazel_brittney/2ef1d8c3c08207bc590c57958b4f38c3/execroot/__main__/api/public/clien
1
+ ./home/kirsten/.cache/bazel/_bazel_kirsten/93ecf8bb21cd598edd1b264a6310571c/execroot/__main__/api/pu
@@ -33,15 +33,16 @@ module Happyco
33
33
  rpc :UpdateInspections, UpdateInspectionsRequest, UpdateInspectionsResponse
34
34
  # * Archive inspections should be used to archive inspections that are no
35
35
  # longer wanted. No method for purging archived inspections is
36
- # available via the API.
36
+ # available via the API. All inspections must belong to the same folder.
37
37
  rpc :ArchiveInspections, SetInspectionsArchivedRequest, SetInspectionsArchivedResponse
38
38
  # * Unarchive inspections should be used if previously archived
39
- # inspections need to be restored.
39
+ # inspections need to be restored. All inspections must belong
40
+ # to the same folder.
40
41
  rpc :UnarchiveInspections, SetInspectionsArchivedRequest, SetInspectionsArchivedResponse
41
42
  # * Adds photos to inspections. The returned photo IDs must be inserted
42
43
  # into the inspection for them to be displayed. This inspection does
43
44
  # not occur in a transaction and you will receive a response for each
44
- # photo.
45
+ # photo. This is now deprecated and soon to be removed.
45
46
  rpc :AddInspectionPhotos, AddInspectionPhotosRequest, AddInspectionPhotosResponse
46
47
  rpc :CreateDelegatedInspectionLinks, CreateDelegatedInspectionLinksRequest, CreateDelegatedInspectionLinksResponse
47
48
  end
@@ -19,8 +19,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
19
19
  optional :folder_id, :message, 7, "happyco.type.v1.IntegrationID"
20
20
  optional :asset_id, :message, 8, "happyco.type.v1.IntegrationID"
21
21
  repeated :inspection_ids, :message, 9, "happyco.type.v1.IntegrationID"
22
- optional :generated_at, :message, 10, "happyco.type.v1.Date"
23
- optional :finalized_at, :message, 11, "happyco.type.v1.Date"
22
+ optional :generated_at, :message, 10, "happyco.type.v1.DateTime"
23
+ optional :finalized_at, :message, 11, "happyco.type.v1.DateTime"
24
24
  optional :inspector_id, :message, 12, "happyco.type.v1.IntegrationID"
25
25
  optional :inspector_name, :string, 13
26
26
  optional :data, :string, 14
@@ -29,9 +29,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
29
29
  add_message "happyco.inspect.report.v1.Signatory" do
30
30
  optional :name, :string, 1
31
31
  optional :role, :string, 2
32
- optional :generated_at, :message, 3, "happyco.type.v1.Date"
33
- optional :signed_at, :message, 4, "happyco.type.v1.Date"
34
- optional :user_signed_at, :message, 5, "happyco.type.v1.Date"
32
+ optional :generated_at, :message, 3, "happyco.type.v1.DateTime"
33
+ optional :signed_at, :message, 4, "happyco.type.v1.DateTime"
34
+ optional :user_signed_at, :message, 5, "happyco.type.v1.DateTime"
35
35
  end
36
36
  add_message "happyco.inspect.report.v1.ListReportsRequest" do
37
37
  optional :account_id, :message, 1, "happyco.type.v1.IntegrationID"
@@ -1,20 +1,20 @@
1
- require 'api/public/inspect/template/v1/template_services_pb'
1
+ require 'api/public/manage/account/v1/account_services_pb'
2
+ require 'api/public/manage/account/v1/account_pb'
3
+ require 'api/public/manage/account_provisioning/v1/account_provisioning_services_pb'
4
+ require 'api/public/manage/account_provisioning/v1/account_provisioning_pb'
5
+ require 'api/public/manage/folder/v1/folder_pb'
6
+ require 'api/public/manage/folder/v1/folder_services_pb'
7
+ require 'api/public/manage/asset/v1/asset_pb'
8
+ require 'api/public/manage/asset/v1/asset_services_pb'
9
+ require 'api/public/inspect/report/v1/report_pb'
10
+ require 'api/public/inspect/report/v1/report_services_pb'
11
+ require 'api/public/inspect/type/v1/inspect_type_pb'
2
12
  require 'api/public/inspect/template/v1/template_pb'
13
+ require 'api/public/inspect/template/v1/template_services_pb'
3
14
  require 'api/public/inspect/inspection/v1/inspection_pb'
4
15
  require 'api/public/inspect/inspection/v1/inspection_services_pb'
5
- require 'api/public/inspect/type/v1/inspect_type_pb'
6
- require 'api/public/inspect/report/v1/report_services_pb'
7
- require 'api/public/inspect/report/v1/report_pb'
16
+ require 'api/public/type/v1/event_pb'
8
17
  require 'api/public/type/v1/varia_pb'
9
18
  require 'api/public/type/v1/paging_pb'
10
- require 'api/public/type/v1/integration_id_pb'
11
- require 'api/public/type/v1/event_pb'
12
19
  require 'api/public/type/v1/date_pb'
13
- require 'api/public/manage/asset/v1/asset_pb'
14
- require 'api/public/manage/asset/v1/asset_services_pb'
15
- require 'api/public/manage/account_provisioning/v1/account_provisioning_pb'
16
- require 'api/public/manage/account_provisioning/v1/account_provisioning_services_pb'
17
- require 'api/public/manage/folder/v1/folder_pb'
18
- require 'api/public/manage/folder/v1/folder_services_pb'
19
- require 'api/public/manage/account/v1/account_pb'
20
- require 'api/public/manage/account/v1/account_services_pb'
20
+ require 'api/public/type/v1/integration_id_pb'
data/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Happyco
2
- VERSION = '2.4.0'
2
+ VERSION = '2.5.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: happyco
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - HappyCo Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-16 00:00:00.000000000 Z
11
+ date: 2020-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  version: '0'
74
74
  requirements: []
75
75
  rubyforge_project:
76
- rubygems_version: 2.5.2.3
76
+ rubygems_version: 2.7.6
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: Ruby client for HappyCo API