workstream_protocol 0.2.2 → 0.3.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 +4 -4
 - data/lib/workstream_protocol/Onboarding_pb.rb +50 -36
 - data/lib/workstream_protocol/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: ec136152f94ece0ead5a018fd2168ced593a32e4fa98322bca3d91b084716fe4
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 149ceda9fb8613de44fff28388a56f192c4752c24ac05e3711c29cbff5ce79f1
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 22d94fb6a89576c5ea0d32a195bec764958337c470a2a28e48a975a71197e443e36f2cd3bc924891fbed61795d107fb41e4259a213b54945c23046928aeec675
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: c8d4690f136efda38e1c389bd898f4f96001a9e446fe397fbfc8b464925dd360b4af19c500932c4c0553d2ae89af99c5ad48444edea99e31bf9532dbe09088bb
         
     | 
| 
         @@ -9,31 +9,45 @@ require 'google/protobuf/timestamp_pb' 
     | 
|
| 
       9 
9 
     | 
    
         
             
            require 'Common/Date_pb'
         
     | 
| 
       10 
10 
     | 
    
         
             
            Google::Protobuf::DescriptorPool.generated_pool.build do
         
     | 
| 
       11 
11 
     | 
    
         
             
              add_file("Onboarding.proto", :syntax => :proto3) do
         
     | 
| 
      
 12 
     | 
    
         
            +
                add_message "Workstream.Protocol.Onboarding.OnboardingEvent" do
         
     | 
| 
      
 13 
     | 
    
         
            +
                  optional :id, :int64, 1
         
     | 
| 
      
 14 
     | 
    
         
            +
                  optional :uuid, :string, 2
         
     | 
| 
      
 15 
     | 
    
         
            +
                  optional :created_at, :message, 3, "google.protobuf.Timestamp"
         
     | 
| 
      
 16 
     | 
    
         
            +
                  optional :updated_at, :message, 4, "google.protobuf.Timestamp"
         
     | 
| 
      
 17 
     | 
    
         
            +
                  optional :deleted_at, :message, 5, "google.protobuf.Timestamp"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  optional :company_uuid, :string, 6
         
     | 
| 
      
 19 
     | 
    
         
            +
                  optional :employee_uuid, :string, 7
         
     | 
| 
      
 20 
     | 
    
         
            +
                  optional :app_name, :string, 8
         
     | 
| 
      
 21 
     | 
    
         
            +
                  optional :configuration_uuid, :string, 9
         
     | 
| 
      
 22 
     | 
    
         
            +
                end
         
     | 
| 
       12 
23 
     | 
    
         
             
                add_message "Workstream.Protocol.Onboarding.CompanyEvent" do
         
     | 
| 
       13 
     | 
    
         
            -
                  optional : 
     | 
| 
       14 
     | 
    
         
            -
                  optional : 
     | 
| 
       15 
     | 
    
         
            -
                  optional : 
     | 
| 
       16 
     | 
    
         
            -
                  optional : 
     | 
| 
       17 
     | 
    
         
            -
                  optional : 
     | 
| 
       18 
     | 
    
         
            -
                  optional : 
     | 
| 
      
 24 
     | 
    
         
            +
                  optional :id, :int64, 1
         
     | 
| 
      
 25 
     | 
    
         
            +
                  optional :uuid, :string, 2
         
     | 
| 
      
 26 
     | 
    
         
            +
                  optional :created_at, :message, 3, "google.protobuf.Timestamp"
         
     | 
| 
      
 27 
     | 
    
         
            +
                  optional :updated_at, :message, 4, "google.protobuf.Timestamp"
         
     | 
| 
      
 28 
     | 
    
         
            +
                  optional :deleted_at, :message, 5, "google.protobuf.Timestamp"
         
     | 
| 
      
 29 
     | 
    
         
            +
                  optional :name, :string, 6
         
     | 
| 
      
 30 
     | 
    
         
            +
                  optional :status, :string, 7
         
     | 
| 
       19 
31 
     | 
    
         
             
                end
         
     | 
| 
       20 
32 
     | 
    
         
             
                add_message "Workstream.Protocol.Onboarding.EmployeeEvent" do
         
     | 
| 
       21 
     | 
    
         
            -
                  optional : 
     | 
| 
       22 
     | 
    
         
            -
                  optional : 
     | 
| 
      
 33 
     | 
    
         
            +
                  optional :id, :int64, 1
         
     | 
| 
      
 34 
     | 
    
         
            +
                  optional :uuid, :string, 2
         
     | 
| 
       23 
35 
     | 
    
         
             
                  optional :created_at, :message, 3, "google.protobuf.Timestamp"
         
     | 
| 
       24 
36 
     | 
    
         
             
                  optional :updated_at, :message, 4, "google.protobuf.Timestamp"
         
     | 
| 
       25 
37 
     | 
    
         
             
                  optional :deleted_at, :message, 5, "google.protobuf.Timestamp"
         
     | 
| 
      
 38 
     | 
    
         
            +
                  optional :company_uuid, :string, 6
         
     | 
| 
       26 
39 
     | 
    
         
             
                end
         
     | 
| 
       27 
40 
     | 
    
         
             
                add_message "Workstream.Protocol.Onboarding.CompanyStaffEvent" do
         
     | 
| 
       28 
     | 
    
         
            -
                  optional : 
     | 
| 
       29 
     | 
    
         
            -
                  optional : 
     | 
| 
      
 41 
     | 
    
         
            +
                  optional :id, :int64, 1
         
     | 
| 
      
 42 
     | 
    
         
            +
                  optional :uuid, :string, 2
         
     | 
| 
       30 
43 
     | 
    
         
             
                  optional :created_at, :message, 3, "google.protobuf.Timestamp"
         
     | 
| 
       31 
44 
     | 
    
         
             
                  optional :updated_at, :message, 4, "google.protobuf.Timestamp"
         
     | 
| 
       32 
45 
     | 
    
         
             
                  optional :deleted_at, :message, 5, "google.protobuf.Timestamp"
         
     | 
| 
       33 
     | 
    
         
            -
                  optional : 
     | 
| 
       34 
     | 
    
         
            -
                  optional : 
     | 
| 
       35 
     | 
    
         
            -
                  optional : 
     | 
| 
       36 
     | 
    
         
            -
                  optional : 
     | 
| 
      
 46 
     | 
    
         
            +
                  optional :company_uuid, :string, 6
         
     | 
| 
      
 47 
     | 
    
         
            +
                  optional :status, :string, 7
         
     | 
| 
      
 48 
     | 
    
         
            +
                  optional :name, :string, 8
         
     | 
| 
      
 49 
     | 
    
         
            +
                  optional :email, :string, 9
         
     | 
| 
      
 50 
     | 
    
         
            +
                  optional :phone, :message, 10, "Workstream.Protocol.Common.Phone"
         
     | 
| 
       37 
51 
     | 
    
         
             
                end
         
     | 
| 
       38 
52 
     | 
    
         
             
                add_message "Workstream.Protocol.Onboarding.EmergencyContact" do
         
     | 
| 
       39 
53 
     | 
    
         
             
                  optional :relationship, :string, 1
         
     | 
| 
         @@ -45,26 +59,25 @@ Google::Protobuf::DescriptorPool.generated_pool.build do 
     | 
|
| 
       45 
59 
     | 
    
         
             
                  optional :address, :message, 7, "Workstream.Protocol.Common.Address"
         
     | 
| 
       46 
60 
     | 
    
         
             
                end
         
     | 
| 
       47 
61 
     | 
    
         
             
                add_message "Workstream.Protocol.Onboarding.EmployeeInformationEvent" do
         
     | 
| 
       48 
     | 
    
         
            -
                  optional : 
     | 
| 
       49 
     | 
    
         
            -
                  optional : 
     | 
| 
       50 
     | 
    
         
            -
                  optional : 
     | 
| 
       51 
     | 
    
         
            -
                  optional : 
     | 
| 
       52 
     | 
    
         
            -
                  optional : 
     | 
| 
       53 
     | 
    
         
            -
                  optional : 
     | 
| 
       54 
     | 
    
         
            -
                  optional : 
     | 
| 
       55 
     | 
    
         
            -
                  optional : 
     | 
| 
       56 
     | 
    
         
            -
                  optional : 
     | 
| 
       57 
     | 
    
         
            -
                  optional : 
     | 
| 
       58 
     | 
    
         
            -
                  optional : 
     | 
| 
       59 
     | 
    
         
            -
                  optional : 
     | 
| 
       60 
     | 
    
         
            -
                  optional : 
     | 
| 
       61 
     | 
    
         
            -
                  optional : 
     | 
| 
       62 
     | 
    
         
            -
                  optional : 
     | 
| 
       63 
     | 
    
         
            -
                  optional : 
     | 
| 
       64 
     | 
    
         
            -
                  optional : 
     | 
| 
       65 
     | 
    
         
            -
                  optional : 
     | 
| 
       66 
     | 
    
         
            -
                  optional : 
     | 
| 
       67 
     | 
    
         
            -
                  optional :middle_initial, :string, 20
         
     | 
| 
      
 62 
     | 
    
         
            +
                  optional :id, :int64, 1
         
     | 
| 
      
 63 
     | 
    
         
            +
                  optional :uuid, :string, 2
         
     | 
| 
      
 64 
     | 
    
         
            +
                  optional :created_at, :message, 3, "google.protobuf.Timestamp"
         
     | 
| 
      
 65 
     | 
    
         
            +
                  optional :updated_at, :message, 4, "google.protobuf.Timestamp"
         
     | 
| 
      
 66 
     | 
    
         
            +
                  optional :deleted_at, :message, 5, "google.protobuf.Timestamp"
         
     | 
| 
      
 67 
     | 
    
         
            +
                  optional :first_name, :string, 8
         
     | 
| 
      
 68 
     | 
    
         
            +
                  optional :middle_name, :string, 9
         
     | 
| 
      
 69 
     | 
    
         
            +
                  optional :last_name, :string, 10
         
     | 
| 
      
 70 
     | 
    
         
            +
                  optional :prior_last_name, :string, 11
         
     | 
| 
      
 71 
     | 
    
         
            +
                  optional :preferred_name, :string, 12
         
     | 
| 
      
 72 
     | 
    
         
            +
                  optional :salutation, :string, 13
         
     | 
| 
      
 73 
     | 
    
         
            +
                  optional :ethnicity, :string, 14
         
     | 
| 
      
 74 
     | 
    
         
            +
                  optional :gender, :string, 15
         
     | 
| 
      
 75 
     | 
    
         
            +
                  optional :marital_status, :string, 16
         
     | 
| 
      
 76 
     | 
    
         
            +
                  optional :ssn, :string, 17
         
     | 
| 
      
 77 
     | 
    
         
            +
                  optional :smoker, :bool, 18
         
     | 
| 
      
 78 
     | 
    
         
            +
                  optional :nationality, :string, 19
         
     | 
| 
      
 79 
     | 
    
         
            +
                  optional :date_of_birth, :message, 20, "Workstream.Protocol.Common.Date"
         
     | 
| 
      
 80 
     | 
    
         
            +
                  optional :middle_initial, :string, 21
         
     | 
| 
       68 
81 
     | 
    
         
             
                  optional :home_email, :string, 31
         
     | 
| 
       69 
82 
     | 
    
         
             
                  optional :home_phone, :message, 32, "Workstream.Protocol.Common.Phone"
         
     | 
| 
       70 
83 
     | 
    
         
             
                  optional :home_address, :message, 33, "Workstream.Protocol.Common.Address"
         
     | 
| 
         @@ -81,8 +94,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do 
     | 
|
| 
       81 
94 
     | 
    
         
             
                  optional :department_name, :string, 57
         
     | 
| 
       82 
95 
     | 
    
         
             
                end
         
     | 
| 
       83 
96 
     | 
    
         
             
                add_message "Workstream.Protocol.Onboarding.EmployeeInitialStateEvent" do
         
     | 
| 
       84 
     | 
    
         
            -
                  optional : 
     | 
| 
       85 
     | 
    
         
            -
                  optional : 
     | 
| 
      
 97 
     | 
    
         
            +
                  optional :id, :int64, 1
         
     | 
| 
      
 98 
     | 
    
         
            +
                  optional :uuid, :string, 2
         
     | 
| 
       86 
99 
     | 
    
         
             
                  optional :created_at, :message, 3, "google.protobuf.Timestamp"
         
     | 
| 
       87 
100 
     | 
    
         
             
                  optional :updated_at, :message, 4, "google.protobuf.Timestamp"
         
     | 
| 
       88 
101 
     | 
    
         
             
                  optional :deleted_at, :message, 5, "google.protobuf.Timestamp"
         
     | 
| 
         @@ -96,6 +109,7 @@ end 
     | 
|
| 
       96 
109 
     | 
    
         
             
            module Workstream
         
     | 
| 
       97 
110 
     | 
    
         
             
              module Protocol
         
     | 
| 
       98 
111 
     | 
    
         
             
                module Onboarding
         
     | 
| 
      
 112 
     | 
    
         
            +
                  OnboardingEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Workstream.Protocol.Onboarding.OnboardingEvent").msgclass
         
     | 
| 
       99 
113 
     | 
    
         
             
                  CompanyEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Workstream.Protocol.Onboarding.CompanyEvent").msgclass
         
     | 
| 
       100 
114 
     | 
    
         
             
                  EmployeeEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Workstream.Protocol.Onboarding.EmployeeEvent").msgclass
         
     | 
| 
       101 
115 
     | 
    
         
             
                  CompanyStaffEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Workstream.Protocol.Onboarding.CompanyStaffEvent").msgclass
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: workstream_protocol
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.3.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Ryan Lv
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2021- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2021-05-06 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: google-protobuf
         
     |