trophy_api_client 1.0.32 → 1.0.34
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 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: c366f7c278a1c8b7f7698f91cc5f448abe91920b95de8e2121d59b96167d5990
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 4f78d0b2180d000591f917d5bad471dde99320a6760b1f1607408a482b8fb39c
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 23b37ab57e5d7fd361ffc96e303949452eb625a528430d728eef81c36d59323afb7a5cfe6dfcafdee57890bbe7fef33a81d82d18efa6f0874cc33a33fc98b835
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 379550d242727643d53856cc6e8880ccb2f918e6feaf844535589f7473e18a3877b6a71a89c1ce540fd0081a796742f9b108ec0dd533823c50dfbe9aec24f97b
         
     | 
    
        data/lib/gemconfig.rb
    CHANGED
    
    
| 
         @@ -17,9 +17,11 @@ module TrophyApiClient 
     | 
|
| 
       17 
17 
     | 
    
         
             
                attr_reader :achievements
         
     | 
| 
       18 
18 
     | 
    
         
             
                # @return [TrophyApiClient::MetricEventStreakResponse] The user's current streak.
         
     | 
| 
       19 
19 
     | 
    
         
             
                attr_reader :current_streak
         
     | 
| 
       20 
     | 
    
         
            -
                # @return [Hash{String => TrophyApiClient::MetricEventPointsResponse}] A map of points systems by key.
         
     | 
| 
      
 20 
     | 
    
         
            +
                # @return [Hash{String => TrophyApiClient::MetricEventPointsResponse}] A map of points systems by key. Only contains points systems that were affected
         
     | 
| 
      
 21 
     | 
    
         
            +
                #  by the event.
         
     | 
| 
       21 
22 
     | 
    
         
             
                attr_reader :points
         
     | 
| 
       22 
     | 
    
         
            -
                # @return [Hash{String => TrophyApiClient::MetricEventLeaderboardResponse}] A map of leaderboards by key.
         
     | 
| 
      
 23 
     | 
    
         
            +
                # @return [Hash{String => TrophyApiClient::MetricEventLeaderboardResponse}] A map of leaderboards by key. Only contains leaderboards that were affected by
         
     | 
| 
      
 24 
     | 
    
         
            +
                #  the event.
         
     | 
| 
       23 
25 
     | 
    
         
             
                attr_reader :leaderboards
         
     | 
| 
       24 
26 
     | 
    
         
             
                # @return [String] The idempotency key used for the event, if one was provided.
         
     | 
| 
       25 
27 
     | 
    
         
             
                attr_reader :idempotency_key
         
     | 
| 
         @@ -38,8 +40,10 @@ module TrophyApiClient 
     | 
|
| 
       38 
40 
     | 
    
         
             
                # @param total [Float] The user's new total progress against the metric.
         
     | 
| 
       39 
41 
     | 
    
         
             
                # @param achievements [Array<TrophyApiClient::CompletedAchievementResponse>] Achievements completed as a result of this event.
         
     | 
| 
       40 
42 
     | 
    
         
             
                # @param current_streak [TrophyApiClient::MetricEventStreakResponse] The user's current streak.
         
     | 
| 
       41 
     | 
    
         
            -
                # @param points [Hash{String => TrophyApiClient::MetricEventPointsResponse}] A map of points systems by key.
         
     | 
| 
       42 
     | 
    
         
            -
                #  
     | 
| 
      
 43 
     | 
    
         
            +
                # @param points [Hash{String => TrophyApiClient::MetricEventPointsResponse}] A map of points systems by key. Only contains points systems that were affected
         
     | 
| 
      
 44 
     | 
    
         
            +
                #  by the event.
         
     | 
| 
      
 45 
     | 
    
         
            +
                # @param leaderboards [Hash{String => TrophyApiClient::MetricEventLeaderboardResponse}] A map of leaderboards by key. Only contains leaderboards that were affected by
         
     | 
| 
      
 46 
     | 
    
         
            +
                #  the event.
         
     | 
| 
       43 
47 
     | 
    
         
             
                # @param idempotency_key [String] The idempotency key used for the event, if one was provided.
         
     | 
| 
       44 
48 
     | 
    
         
             
                # @param idempotent_replayed [Boolean] Whether the event was replayed due to idempotency.
         
     | 
| 
       45 
49 
     | 
    
         
             
                # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
         
     |