mangoapps-ex-sdk-ruby 0.19.1 → 19.1.1

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: 11ec5f600950bbb7e3c35ac5ef1599ee71c378d9457b5ff9938857e67507309f
4
- data.tar.gz: e31fd5d4b7bfb516a6db7bdb9dbcc58426781134996a6a2db81f7f8bba6eb432
3
+ metadata.gz: 5b94e6ac8c368cfa2579fe111c3a527383d65bac8f1c88c270bc34de6fb491c3
4
+ data.tar.gz: af5a9b9b300e255de293db18a03e8b7c9d6c35f6c643ac7cf697dae8d5b6a58a
5
5
  SHA512:
6
- metadata.gz: 9a23c6ceb964c0cc6cebf86b08798bd6b78b99761295ce44ccff298e0124b0e3cd122c021676df2913d47ea053a4417c48080ac79704047dd3b6e0200e62210a
7
- data.tar.gz: 66a89777b6a5d803dd5628de4491946283a80a7251096c10e93f829398a9c2fd839a3d360de28ba558f97807f443a1962d4212125945744e10be1c84e586d6c8
6
+ metadata.gz: d34e45b10d46a8ef8b76d2efe3cb4e30e6a26e3ee0480918fbb7726fbe3f7fab0395304d11429f32cba502f8c6e9a0c3a5e641e345ade31a41145dd413a7d259
7
+ data.tar.gz: 06d8b2223bfd9dd4b7d658f48cb78ac2c3578226cb934e169b76a838f875eb767fc684c350e4d70449c3739a3042afd6a6d0f4e70cd7647e428dda13295eb7ff
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Feeds
6
6
  module Feeds
7
- def feeds(offset: 0, limit: 20, all_comments: 'Y', params: {})
7
+ def get_feeds(offset: 0, limit: 20, all_comments: 'Y', params: {})
8
8
  get("feeds.json?offset=#{offset}&limit=#{limit}&all_comments=#{all_comments}", params: params)
9
9
  end
10
10
  end
@@ -6,7 +6,7 @@ module MangoApps
6
6
  module CourseCatalog
7
7
  # Get course catalog from MangoApps Learn API
8
8
  # GET /api/v2/learn/course_catalog.json
9
- def course_catalog(page: 1, limit: 20, params: {})
9
+ def get_course_catalog(page: 1, limit: 20, params: {})
10
10
  get("v2/learn/course_catalog.json?page=#{page}&limit=#{limit}", params: params)
11
11
  end
12
12
  end
@@ -6,7 +6,7 @@ module MangoApps
6
6
  module CourseCategories
7
7
  # Get course categories from MangoApps Learn API
8
8
  # GET /api/v2/learn/course_categories.json
9
- def course_categories(params: {})
9
+ def get_course_categories(params: {})
10
10
  get("v2/learn/course_categories.json", params: params)
11
11
  end
12
12
  end
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Learn
6
6
  module CourseDetails
7
- def course_details(course_id, params = {})
7
+ def get_course_details(course_id, params = {})
8
8
  get("v2/learn/courses/#{course_id}.json", params: params)
9
9
  end
10
10
  end
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Learn
6
6
  module MyLearning
7
- def my_learning(params = {})
7
+ def get_my_learning(params = {})
8
8
  get("v2/learn/my_learning.json", params: params)
9
9
  end
10
10
  end
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Notifications
6
6
  module MyPriorityItems
7
- def my_priority_items(params = {})
7
+ def get_my_priority_items(params = {})
8
8
  get("v2/uac.json", params: params)
9
9
  end
10
10
  end
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Notifications
6
6
  module Notifications
7
- def notifications(offset: 0, limit: 20, params: {})
7
+ def get_notifications(offset: 0, limit: 20, params: {})
8
8
  get("users/notifications.json?offset=#{offset}&limit=#{limit}", params: params)
9
9
  end
10
10
  end
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Recognitions
6
6
  module AwardCategories
7
- def award_categories(params: {})
7
+ def get_award_categories(params: {})
8
8
  get("v2/recognitions/get_award_categories.json", params: params)
9
9
  end
10
10
  end
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Recognitions
6
6
  module CoreValueTags
7
- def core_value_tags(params = {})
7
+ def get_core_value_tags(params = {})
8
8
  get("v2/recognitions/get_core_value_tags.json", params: params)
9
9
  end
10
10
  end
@@ -4,7 +4,7 @@ module MangoApps
4
4
  class Client
5
5
  module Recognitions
6
6
  module LeaderboardInfo
7
- def leaderboard_info(params = {})
7
+ def get_leaderboard_info(params = {})
8
8
  get("v2/recognitions/get_leaderboard_info.json", params: params)
9
9
  end
10
10
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MangoApps
4
- VERSION = "0.19.1"
4
+ VERSION = "19.1.1"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mangoapps-ex-sdk-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.1
4
+ version: 19.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - MangoApps Inc.
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-09-17 00:00:00.000000000 Z
10
+ date: 2025-09-19 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: addressable