summaryrefslogtreecommitdiff
path: root/lib/scim
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2022-09-28 10:01:41 -0600
committermo khan <mo@mokhan.ca>2022-09-28 10:01:41 -0600
commit265002d02d2d047dd30b94a619274a92a25a27ea (patch)
treed74c9a0abed8cb4aa5147fb1be84c477f9eef03e /lib/scim
parent8523bfbf83bdf33c19b51c2a256005650d4baba4 (diff)
feat: add constants for standard schemasv0.7.0
Diffstat (limited to 'lib/scim')
-rw-r--r--lib/scim/kit/v2/messages.rb5
-rw-r--r--lib/scim/kit/v2/schemas.rb1
-rw-r--r--lib/scim/kit/version.rb2
3 files changed, 6 insertions, 2 deletions
diff --git a/lib/scim/kit/v2/messages.rb b/lib/scim/kit/v2/messages.rb
index 96b695d..b25238c 100644
--- a/lib/scim/kit/v2/messages.rb
+++ b/lib/scim/kit/v2/messages.rb
@@ -5,9 +5,12 @@ module Scim
module V2
module Messages
CORE = 'urn:ietf:params:scim:api:messages:2.0'
+ BULK_REQUEST = "#{CORE}:BulkRequest"
+ BULK_RESPONSE = "#{CORE}:BulkResponse"
+ ERROR = "#{CORE}:Error"
LIST_RESPONSE = "#{CORE}:ListResponse"
+ PATCH_OP = "#{CORE}:PatchOp"
SEARCH_REQUEST = "#{CORE}:SearchRequest"
- ERROR = "#{CORE}:Error"
end
end
end
diff --git a/lib/scim/kit/v2/schemas.rb b/lib/scim/kit/v2/schemas.rb
index c135a1f..2c3f3af 100644
--- a/lib/scim/kit/v2/schemas.rb
+++ b/lib/scim/kit/v2/schemas.rb
@@ -11,6 +11,7 @@ module Scim
ENTERPRISE_USER = "#{EXTENSION}:enterprise:2.0:User"
GROUP = "#{CORE}:Group"
RESOURCE_TYPE = "#{CORE}:ResourceType"
+ SCHEMA = "#{CORE}:Schema"
SERVICE_PROVIDER_CONFIGURATION = "#{CORE}:ServiceProviderConfig"
USER = "#{CORE}:User"
end
diff --git a/lib/scim/kit/version.rb b/lib/scim/kit/version.rb
index 59e5143..5ae9219 100644
--- a/lib/scim/kit/version.rb
+++ b/lib/scim/kit/version.rb
@@ -2,6 +2,6 @@
module Scim
module Kit
- VERSION = '0.6.0'
+ VERSION = '0.7.0'
end
end