kinde_sdk 1.2.1 → 1.2.2
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/Gemfile.lock +128 -0
- data/README.md +12 -434
- data/kinde_api/README.md +98 -27
- data/kinde_api/docs/APIsApi.md +356 -0
- data/kinde_api/docs/AddAPIsRequest.md +20 -0
- data/kinde_api/docs/Api.md +28 -0
- data/kinde_api/docs/ApiApplicationsInner.md +24 -0
- data/kinde_api/docs/Apis.md +24 -0
- data/kinde_api/docs/Applications.md +22 -0
- data/kinde_api/docs/ApplicationsApi.md +368 -0
- data/kinde_api/docs/BusinessApi.md +183 -0
- data/kinde_api/docs/CallbacksApi.md +385 -25
- data/kinde_api/docs/CreateApplicationRequest.md +20 -0
- data/kinde_api/docs/CreateApplicationResponse.md +22 -0
- data/kinde_api/docs/CreateApplicationResponseApplication.md +22 -0
- data/kinde_api/docs/CreateFeatureFlagRequest.md +28 -0
- data/kinde_api/docs/CreateOrganizationRequest.md +3 -1
- data/kinde_api/docs/CreateOrganizationUserPermissionRequest.md +18 -0
- data/kinde_api/docs/EnvironmentsApi.md +23 -23
- data/kinde_api/docs/FeatureFlagsApi.md +19 -29
- data/kinde_api/docs/GetApplicationResponse.md +22 -0
- data/kinde_api/docs/GetApplicationResponseApplication.md +26 -0
- data/kinde_api/docs/GetApplicationsResponse.md +2 -2
- data/kinde_api/docs/{GetOrganizationsUsersResponse.md → GetOrganizationUsersResponse.md} +2 -2
- data/kinde_api/docs/GetOrganizationsUserPermissionsResponse.md +22 -0
- data/kinde_api/docs/GetPermissionsResponse.md +24 -0
- data/kinde_api/docs/GetRolesResponse.md +24 -0
- data/kinde_api/docs/GetSubscriberResponse.md +22 -0
- data/kinde_api/docs/GetSubscribersResponse.md +24 -0
- data/kinde_api/docs/IndustriesApi.md +81 -0
- data/kinde_api/docs/LogoutRedirectUrls.md +18 -0
- data/kinde_api/docs/OAuthApi.md +153 -4
- data/kinde_api/docs/Organization.md +3 -1
- data/kinde_api/docs/OrganizationUserPermission.md +26 -0
- data/kinde_api/docs/OrganizationUserPermissionRolesInner.md +20 -0
- data/kinde_api/docs/OrganizationUserRolePermissions.md +22 -0
- data/kinde_api/docs/OrganizationUserRolePermissionsPermissions.md +18 -0
- data/kinde_api/docs/OrganizationsApi.md +328 -32
- data/kinde_api/docs/PermissionsApi.md +84 -14
- data/kinde_api/docs/ReplaceLogoutRedirectURLsRequest.md +18 -0
- data/kinde_api/docs/ReplaceRedirectCallbackURLsRequest.md +18 -0
- data/kinde_api/docs/Role.md +24 -0
- data/kinde_api/docs/Roles.md +2 -0
- data/kinde_api/docs/RolesApi.md +309 -17
- data/kinde_api/docs/RolesPermissionResponseInner.md +24 -0
- data/kinde_api/docs/Subscriber.md +24 -0
- data/kinde_api/docs/SubscribersApi.md +12 -14
- data/kinde_api/docs/SubscribersSubscriber.md +26 -0
- data/kinde_api/docs/TimezonesApi.md +81 -0
- data/kinde_api/docs/TokenErrorResponse.md +20 -0
- data/kinde_api/docs/TokenIntrospect.md +26 -0
- data/kinde_api/docs/UpdateAPIApplicationsRequest.md +18 -0
- data/kinde_api/docs/UpdateAPIApplicationsRequestApplicationsInner.md +20 -0
- data/kinde_api/docs/UpdateApplicationRequest.md +24 -0
- data/kinde_api/docs/UpdateEnvironementFeatureFlagOverrideRequest.md +18 -0
- data/kinde_api/docs/UpdateOrganizationRequest.md +3 -1
- data/kinde_api/docs/UpdateOrganizationUsersRequest.md +1 -1
- data/kinde_api/docs/UpdateRolePermissionsRequest.md +18 -0
- data/kinde_api/docs/UpdateRolePermissionsRequestPermissionsInner.md +20 -0
- data/kinde_api/docs/UpdateRolePermissionsResponse.md +24 -0
- data/kinde_api/docs/UpdateRolesRequest.md +24 -0
- data/kinde_api/docs/UpdateUserResponse.md +30 -0
- data/kinde_api/docs/User.md +7 -7
- data/kinde_api/docs/UserIdentitiesInner.md +20 -0
- data/kinde_api/docs/UsersApi.md +93 -15
- data/kinde_api/docs/UsersResponse.md +1 -1
- data/kinde_api/docs/UsersResponseUsersInner.md +42 -0
- data/kinde_api/lib/kinde_api/api/apis_api.rb +347 -0
- data/kinde_api/lib/kinde_api/api/applications_api.rb +352 -0
- data/kinde_api/lib/kinde_api/api/business_api.rb +210 -0
- data/kinde_api/lib/kinde_api/api/callbacks_api.rb +394 -31
- data/kinde_api/lib/kinde_api/api/environments_api.rb +22 -18
- data/kinde_api/lib/kinde_api/api/feature_flags_api.rb +20 -61
- data/kinde_api/lib/kinde_api/api/industries_api.rb +85 -0
- data/kinde_api/lib/kinde_api/api/o_auth_api.rb +141 -2
- data/kinde_api/lib/kinde_api/api/organizations_api.rb +318 -25
- data/kinde_api/lib/kinde_api/api/permissions_api.rb +75 -12
- data/kinde_api/lib/kinde_api/api/roles_api.rb +297 -15
- data/kinde_api/lib/kinde_api/api/subscribers_api.rb +8 -11
- data/kinde_api/lib/kinde_api/api/timezones_api.rb +85 -0
- data/kinde_api/lib/kinde_api/api/users_api.rb +87 -11
- data/kinde_api/lib/kinde_api/api_client.rb +14 -7
- data/kinde_api/lib/kinde_api/configuration.rb +81 -5
- data/kinde_api/lib/kinde_api/models/add_apis_request.rb +238 -0
- data/kinde_api/lib/kinde_api/models/add_organization_users_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/add_organization_users_request_users_inner.rb +2 -0
- data/kinde_api/lib/kinde_api/models/add_organization_users_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/api.rb +271 -0
- data/kinde_api/lib/kinde_api/models/api_applications_inner.rb +246 -0
- data/kinde_api/lib/kinde_api/models/api_result.rb +2 -0
- data/kinde_api/lib/kinde_api/models/apis.rb +250 -0
- data/kinde_api/lib/kinde_api/models/applications.rb +237 -0
- data/kinde_api/lib/kinde_api/models/connected_apps_access_token.rb +2 -0
- data/kinde_api/lib/kinde_api/models/connected_apps_auth_url.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_application_request.rb +264 -0
- data/kinde_api/lib/kinde_api/models/create_application_response.rb +239 -0
- data/kinde_api/lib/kinde_api/models/create_application_response_application.rb +240 -0
- data/kinde_api/lib/kinde_api/models/create_feature_flag_request.rb +336 -0
- data/kinde_api/lib/kinde_api/models/create_organization_request.rb +16 -4
- data/kinde_api/lib/kinde_api/models/create_organization_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_organization_response_organization.rb +2 -0
- data/kinde_api/lib/kinde_api/models/{application.rb → create_organization_user_permission_request.rb} +13 -19
- data/kinde_api/lib/kinde_api/models/create_organization_user_role_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_permission_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_role_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_subscriber_success_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_subscriber_success_response_subscriber.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request_identities_inner.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request_identities_inner_details.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_request_profile.rb +2 -0
- data/kinde_api/lib/kinde_api/models/create_user_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/error.rb +2 -0
- data/kinde_api/lib/kinde_api/models/error_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_application_response.rb +239 -0
- data/kinde_api/lib/kinde_api/models/get_application_response_application.rb +260 -0
- data/kinde_api/lib/kinde_api/models/get_applications_response.rb +10 -8
- data/kinde_api/lib/kinde_api/models/get_environment_feature_flags_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_organization_feature_flags_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_organization_feature_flags_response_feature_flags_value.rb +2 -0
- data/kinde_api/lib/kinde_api/models/{get_organizations_users_response.rb → get_organization_users_response.rb} +5 -3
- data/kinde_api/lib/kinde_api/models/get_organizations_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_organizations_user_permissions_response.rb +241 -0
- data/kinde_api/lib/kinde_api/models/get_organizations_user_roles_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_permissions_response.rb +251 -0
- data/kinde_api/lib/kinde_api/models/get_redirect_callback_urls_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/get_roles_response.rb +251 -0
- data/kinde_api/lib/kinde_api/models/get_subscriber_response.rb +241 -0
- data/kinde_api/lib/kinde_api/models/get_subscribers_response.rb +251 -0
- data/kinde_api/lib/kinde_api/models/logout_redirect_urls.rb +222 -0
- data/kinde_api/lib/kinde_api/models/organization.rb +15 -4
- data/kinde_api/lib/kinde_api/models/organization_user.rb +2 -0
- data/kinde_api/lib/kinde_api/models/organization_user_permission.rb +257 -0
- data/kinde_api/lib/kinde_api/models/organization_user_permission_roles_inner.rb +228 -0
- data/kinde_api/lib/kinde_api/models/organization_user_role.rb +2 -0
- data/kinde_api/lib/kinde_api/models/organization_user_role_permissions.rb +237 -0
- data/kinde_api/lib/kinde_api/models/organization_user_role_permissions_permissions.rb +219 -0
- data/kinde_api/lib/kinde_api/models/permissions.rb +2 -0
- data/kinde_api/lib/kinde_api/models/redirect_callback_urls.rb +2 -0
- data/kinde_api/lib/kinde_api/models/replace_logout_redirect_urls_request.rb +222 -0
- data/kinde_api/lib/kinde_api/models/replace_redirect_callback_urls_request.rb +222 -0
- data/kinde_api/lib/kinde_api/models/role.rb +246 -0
- data/kinde_api/lib/kinde_api/models/roles.rb +13 -1
- data/kinde_api/lib/kinde_api/models/roles_permission_response_inner.rb +246 -0
- data/kinde_api/lib/kinde_api/models/subscriber.rb +246 -0
- data/kinde_api/lib/kinde_api/models/subscribers_subscriber.rb +255 -0
- data/kinde_api/lib/kinde_api/models/success_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/token_error_response.rb +230 -0
- data/kinde_api/lib/kinde_api/models/token_introspect.rb +262 -0
- data/kinde_api/lib/kinde_api/models/update_api_applications_request.rb +226 -0
- data/kinde_api/lib/kinde_api/models/update_api_applications_request_applications_inner.rb +235 -0
- data/kinde_api/lib/kinde_api/models/update_application_request.rb +254 -0
- data/kinde_api/lib/kinde_api/models/update_environement_feature_flag_override_request.rb +225 -0
- data/kinde_api/lib/kinde_api/models/update_organization_request.rb +16 -4
- data/kinde_api/lib/kinde_api/models/update_organization_users_request.rb +3 -1
- data/kinde_api/lib/kinde_api/models/update_organization_users_request_users_inner.rb +2 -0
- data/kinde_api/lib/kinde_api/models/update_organization_users_response.rb +2 -0
- data/kinde_api/lib/kinde_api/models/update_role_permissions_request.rb +222 -0
- data/kinde_api/lib/kinde_api/models/update_role_permissions_request_permissions_inner.rb +230 -0
- data/kinde_api/lib/kinde_api/models/update_role_permissions_response.rb +250 -0
- data/kinde_api/lib/kinde_api/models/update_roles_request.rb +260 -0
- data/kinde_api/lib/kinde_api/models/update_user_request.rb +2 -0
- data/kinde_api/lib/kinde_api/models/update_user_response.rb +280 -0
- data/kinde_api/lib/kinde_api/models/user.rb +37 -32
- data/kinde_api/lib/kinde_api/models/user_identities_inner.rb +228 -0
- data/kinde_api/lib/kinde_api/models/user_identity.rb +2 -0
- data/kinde_api/lib/kinde_api/models/user_identity_result.rb +2 -0
- data/kinde_api/lib/kinde_api/models/user_profile.rb +2 -0
- data/kinde_api/lib/kinde_api/models/user_profile_v2.rb +2 -0
- data/kinde_api/lib/kinde_api/models/users_response.rb +3 -1
- data/kinde_api/lib/kinde_api/models/users_response_users_inner.rb +348 -0
- data/kinde_api/lib/kinde_api.rb +47 -2
- data/kinde_api/spec/api/apis_api_spec.rb +95 -0
- data/kinde_api/spec/api/applications_api_spec.rb +98 -0
- data/kinde_api/spec/api/business_api_spec.rb +75 -0
- data/kinde_api/spec/api/callbacks_api_spec.rb +69 -5
- data/kinde_api/spec/api/environments_api_spec.rb +5 -5
- data/kinde_api/spec/api/feature_flags_api_spec.rb +4 -9
- data/kinde_api/spec/api/industries_api_spec.rb +48 -0
- data/kinde_api/spec/api/o_auth_api_spec.rb +28 -1
- data/kinde_api/spec/api/organizations_api_spec.rb +63 -8
- data/kinde_api/spec/api/permissions_api_spec.rb +16 -4
- data/kinde_api/spec/api/roles_api_spec.rb +57 -4
- data/kinde_api/spec/api/subscribers_api_spec.rb +3 -4
- data/kinde_api/spec/api/timezones_api_spec.rb +48 -0
- data/kinde_api/spec/api/users_api_spec.rb +17 -2
- data/kinde_api/spec/api_client_spec.rb +13 -2
- data/kinde_api/spec/models/{application_spec.rb → add_apis_request_spec.rb} +8 -8
- data/kinde_api/spec/models/api_applications_inner_spec.rb +52 -0
- data/kinde_api/spec/models/api_spec.rb +64 -0
- data/kinde_api/spec/models/apis_spec.rb +52 -0
- data/kinde_api/spec/models/applications_spec.rb +46 -0
- data/kinde_api/spec/models/create_application_request_spec.rb +44 -0
- data/kinde_api/spec/models/create_application_response_application_spec.rb +46 -0
- data/kinde_api/spec/models/create_application_response_spec.rb +46 -0
- data/kinde_api/spec/models/create_feature_flag_request_spec.rb +72 -0
- data/kinde_api/spec/models/create_organization_request_spec.rb +6 -0
- data/kinde_api/spec/models/create_organization_user_permission_request_spec.rb +34 -0
- data/kinde_api/spec/models/get_application_response_application_spec.rb +58 -0
- data/kinde_api/spec/models/get_application_response_spec.rb +46 -0
- data/kinde_api/spec/models/get_applications_response_spec.rb +1 -1
- data/kinde_api/spec/models/{get_organizations_users_response_spec.rb → get_organization_users_response_spec.rb} +6 -6
- data/kinde_api/spec/models/get_organizations_user_permissions_response_spec.rb +46 -0
- data/kinde_api/spec/models/get_permissions_response_spec.rb +52 -0
- data/kinde_api/spec/models/get_roles_response_spec.rb +52 -0
- data/kinde_api/spec/models/get_subscriber_response_spec.rb +46 -0
- data/kinde_api/spec/models/get_subscribers_response_spec.rb +52 -0
- data/kinde_api/spec/models/logout_redirect_urls_spec.rb +34 -0
- data/kinde_api/spec/models/organization_spec.rb +6 -0
- data/kinde_api/spec/models/organization_user_permission_roles_inner_spec.rb +40 -0
- data/kinde_api/spec/models/organization_user_permission_spec.rb +58 -0
- data/kinde_api/spec/models/organization_user_role_permissions_permissions_spec.rb +34 -0
- data/kinde_api/spec/models/organization_user_role_permissions_spec.rb +46 -0
- data/kinde_api/spec/models/replace_logout_redirect_urls_request_spec.rb +34 -0
- data/kinde_api/spec/models/replace_redirect_callback_urls_request_spec.rb +34 -0
- data/kinde_api/spec/models/role_spec.rb +52 -0
- data/kinde_api/spec/models/roles_permission_response_inner_spec.rb +52 -0
- data/kinde_api/spec/models/roles_spec.rb +6 -0
- data/kinde_api/spec/models/subscriber_spec.rb +52 -0
- data/kinde_api/spec/models/subscribers_subscriber_spec.rb +58 -0
- data/kinde_api/spec/models/token_error_response_spec.rb +40 -0
- data/kinde_api/spec/models/token_introspect_spec.rb +58 -0
- data/kinde_api/spec/models/update_api_applications_request_applications_inner_spec.rb +40 -0
- data/kinde_api/spec/models/update_api_applications_request_spec.rb +34 -0
- data/kinde_api/spec/models/update_application_request_spec.rb +52 -0
- data/kinde_api/spec/models/update_environement_feature_flag_override_request_spec.rb +34 -0
- data/kinde_api/spec/models/update_organization_request_spec.rb +6 -0
- data/kinde_api/spec/models/update_role_permissions_request_permissions_inner_spec.rb +40 -0
- data/kinde_api/spec/models/update_role_permissions_request_spec.rb +34 -0
- data/kinde_api/spec/models/update_role_permissions_response_spec.rb +52 -0
- data/kinde_api/spec/models/update_roles_request_spec.rb +52 -0
- data/kinde_api/spec/models/update_user_response_spec.rb +70 -0
- data/kinde_api/spec/models/user_identities_inner_spec.rb +40 -0
- data/kinde_api/spec/models/user_spec.rb +9 -9
- data/kinde_api/spec/models/users_response_users_inner_spec.rb +106 -0
- data/kinde_sdk.gemspec +1 -1
- data/lib/kinde_sdk/version.rb +1 -1
- data/spec/kinde_sdk_spec.rb +0 -46
- metadata +193 -12
- data/kinde_api/docs/Application.md +0 -20
|
@@ -46,7 +46,7 @@ module KindeApi
|
|
|
46
46
|
{
|
|
47
47
|
:'code' => :'String',
|
|
48
48
|
:'message' => :'String',
|
|
49
|
-
:'users' => :'Array<
|
|
49
|
+
:'users' => :'Array<UsersResponseUsersInner>',
|
|
50
50
|
:'next_token' => :'String'
|
|
51
51
|
}
|
|
52
52
|
end
|
|
@@ -245,5 +245,7 @@ module KindeApi
|
|
|
245
245
|
value
|
|
246
246
|
end
|
|
247
247
|
end
|
|
248
|
+
|
|
248
249
|
end
|
|
250
|
+
|
|
249
251
|
end
|
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Kinde Management API
|
|
3
|
+
|
|
4
|
+
#Provides endpoints to manage your Kinde Businesses
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1
|
|
7
|
+
Contact: support@kinde.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.4.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module KindeApi
|
|
17
|
+
class UsersResponseUsersInner
|
|
18
|
+
# Unique id of the user in Kinde.
|
|
19
|
+
attr_accessor :id
|
|
20
|
+
|
|
21
|
+
# External id for user.
|
|
22
|
+
attr_accessor :provided_id
|
|
23
|
+
|
|
24
|
+
# Default email address of the user in Kinde.
|
|
25
|
+
attr_accessor :email
|
|
26
|
+
|
|
27
|
+
# User's last name.
|
|
28
|
+
attr_accessor :last_name
|
|
29
|
+
|
|
30
|
+
# User's first name.
|
|
31
|
+
attr_accessor :first_name
|
|
32
|
+
|
|
33
|
+
# Whether the user is currently suspended or not.
|
|
34
|
+
attr_accessor :is_suspended
|
|
35
|
+
|
|
36
|
+
# User's profile picture URL.
|
|
37
|
+
attr_accessor :picture
|
|
38
|
+
|
|
39
|
+
# Total number of user sign ins.
|
|
40
|
+
attr_accessor :total_sign_ins
|
|
41
|
+
|
|
42
|
+
# Number of consecutive failed user sign ins.
|
|
43
|
+
attr_accessor :failed_sign_ins
|
|
44
|
+
|
|
45
|
+
# Last sign in date in ISO 8601 format.
|
|
46
|
+
attr_accessor :last_signed_in
|
|
47
|
+
|
|
48
|
+
# Date of user creation in ISO 8601 format.
|
|
49
|
+
attr_accessor :created_on
|
|
50
|
+
|
|
51
|
+
# Array of organizations a user belongs to.
|
|
52
|
+
attr_accessor :organizations
|
|
53
|
+
|
|
54
|
+
# Array of identities belonging to the user.
|
|
55
|
+
attr_accessor :identities
|
|
56
|
+
|
|
57
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
58
|
+
def self.attribute_map
|
|
59
|
+
{
|
|
60
|
+
:'id' => :'id',
|
|
61
|
+
:'provided_id' => :'provided_id',
|
|
62
|
+
:'email' => :'email',
|
|
63
|
+
:'last_name' => :'last_name',
|
|
64
|
+
:'first_name' => :'first_name',
|
|
65
|
+
:'is_suspended' => :'is_suspended',
|
|
66
|
+
:'picture' => :'picture',
|
|
67
|
+
:'total_sign_ins' => :'total_sign_ins',
|
|
68
|
+
:'failed_sign_ins' => :'failed_sign_ins',
|
|
69
|
+
:'last_signed_in' => :'last_signed_in',
|
|
70
|
+
:'created_on' => :'created_on',
|
|
71
|
+
:'organizations' => :'organizations',
|
|
72
|
+
:'identities' => :'identities'
|
|
73
|
+
}
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Returns all the JSON keys this model knows about
|
|
77
|
+
def self.acceptable_attributes
|
|
78
|
+
attribute_map.values
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Attribute type mapping.
|
|
82
|
+
def self.openapi_types
|
|
83
|
+
{
|
|
84
|
+
:'id' => :'String',
|
|
85
|
+
:'provided_id' => :'String',
|
|
86
|
+
:'email' => :'String',
|
|
87
|
+
:'last_name' => :'String',
|
|
88
|
+
:'first_name' => :'String',
|
|
89
|
+
:'is_suspended' => :'Boolean',
|
|
90
|
+
:'picture' => :'String',
|
|
91
|
+
:'total_sign_ins' => :'Integer',
|
|
92
|
+
:'failed_sign_ins' => :'Integer',
|
|
93
|
+
:'last_signed_in' => :'String',
|
|
94
|
+
:'created_on' => :'String',
|
|
95
|
+
:'organizations' => :'Array<String>',
|
|
96
|
+
:'identities' => :'Array<UserIdentitiesInner>'
|
|
97
|
+
}
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
# List of attributes with nullable: true
|
|
101
|
+
def self.openapi_nullable
|
|
102
|
+
Set.new([
|
|
103
|
+
:'total_sign_ins',
|
|
104
|
+
:'failed_sign_ins',
|
|
105
|
+
:'last_signed_in',
|
|
106
|
+
:'created_on',
|
|
107
|
+
])
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# Initializes the object
|
|
111
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
112
|
+
def initialize(attributes = {})
|
|
113
|
+
if (!attributes.is_a?(Hash))
|
|
114
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `KindeApi::UsersResponseUsersInner` initialize method"
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
118
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
119
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
120
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `KindeApi::UsersResponseUsersInner`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
121
|
+
end
|
|
122
|
+
h[k.to_sym] = v
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if attributes.key?(:'id')
|
|
126
|
+
self.id = attributes[:'id']
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
if attributes.key?(:'provided_id')
|
|
130
|
+
self.provided_id = attributes[:'provided_id']
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
if attributes.key?(:'email')
|
|
134
|
+
self.email = attributes[:'email']
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
if attributes.key?(:'last_name')
|
|
138
|
+
self.last_name = attributes[:'last_name']
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
if attributes.key?(:'first_name')
|
|
142
|
+
self.first_name = attributes[:'first_name']
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
if attributes.key?(:'is_suspended')
|
|
146
|
+
self.is_suspended = attributes[:'is_suspended']
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
if attributes.key?(:'picture')
|
|
150
|
+
self.picture = attributes[:'picture']
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
if attributes.key?(:'total_sign_ins')
|
|
154
|
+
self.total_sign_ins = attributes[:'total_sign_ins']
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
if attributes.key?(:'failed_sign_ins')
|
|
158
|
+
self.failed_sign_ins = attributes[:'failed_sign_ins']
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
if attributes.key?(:'last_signed_in')
|
|
162
|
+
self.last_signed_in = attributes[:'last_signed_in']
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
if attributes.key?(:'created_on')
|
|
166
|
+
self.created_on = attributes[:'created_on']
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
if attributes.key?(:'organizations')
|
|
170
|
+
if (value = attributes[:'organizations']).is_a?(Array)
|
|
171
|
+
self.organizations = value
|
|
172
|
+
end
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
if attributes.key?(:'identities')
|
|
176
|
+
if (value = attributes[:'identities']).is_a?(Array)
|
|
177
|
+
self.identities = value
|
|
178
|
+
end
|
|
179
|
+
end
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
183
|
+
# @return Array for valid properties with the reasons
|
|
184
|
+
def list_invalid_properties
|
|
185
|
+
invalid_properties = Array.new
|
|
186
|
+
invalid_properties
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
# Check to see if the all the properties in the model are valid
|
|
190
|
+
# @return true if the model is valid
|
|
191
|
+
def valid?
|
|
192
|
+
true
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# Checks equality by comparing each attribute.
|
|
196
|
+
# @param [Object] Object to be compared
|
|
197
|
+
def ==(o)
|
|
198
|
+
return true if self.equal?(o)
|
|
199
|
+
self.class == o.class &&
|
|
200
|
+
id == o.id &&
|
|
201
|
+
provided_id == o.provided_id &&
|
|
202
|
+
email == o.email &&
|
|
203
|
+
last_name == o.last_name &&
|
|
204
|
+
first_name == o.first_name &&
|
|
205
|
+
is_suspended == o.is_suspended &&
|
|
206
|
+
picture == o.picture &&
|
|
207
|
+
total_sign_ins == o.total_sign_ins &&
|
|
208
|
+
failed_sign_ins == o.failed_sign_ins &&
|
|
209
|
+
last_signed_in == o.last_signed_in &&
|
|
210
|
+
created_on == o.created_on &&
|
|
211
|
+
organizations == o.organizations &&
|
|
212
|
+
identities == o.identities
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# @see the `==` method
|
|
216
|
+
# @param [Object] Object to be compared
|
|
217
|
+
def eql?(o)
|
|
218
|
+
self == o
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
# Calculates hash code according to all attributes.
|
|
222
|
+
# @return [Integer] Hash code
|
|
223
|
+
def hash
|
|
224
|
+
[id, provided_id, email, last_name, first_name, is_suspended, picture, total_sign_ins, failed_sign_ins, last_signed_in, created_on, organizations, identities].hash
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
# Builds the object from hash
|
|
228
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
229
|
+
# @return [Object] Returns the model itself
|
|
230
|
+
def self.build_from_hash(attributes)
|
|
231
|
+
new.build_from_hash(attributes)
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
# Builds the object from hash
|
|
235
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
236
|
+
# @return [Object] Returns the model itself
|
|
237
|
+
def build_from_hash(attributes)
|
|
238
|
+
return nil unless attributes.is_a?(Hash)
|
|
239
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
240
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
241
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
242
|
+
self.send("#{key}=", nil)
|
|
243
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
244
|
+
# check to ensure the input is an array given that the attribute
|
|
245
|
+
# is documented as an array but the input is not
|
|
246
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
247
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
248
|
+
end
|
|
249
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
250
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
251
|
+
end
|
|
252
|
+
end
|
|
253
|
+
|
|
254
|
+
self
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
# Deserializes the data based on type
|
|
258
|
+
# @param string type Data type
|
|
259
|
+
# @param string value Value to be deserialized
|
|
260
|
+
# @return [Object] Deserialized data
|
|
261
|
+
def _deserialize(type, value)
|
|
262
|
+
case type.to_sym
|
|
263
|
+
when :Time
|
|
264
|
+
Time.parse(value)
|
|
265
|
+
when :Date
|
|
266
|
+
Date.parse(value)
|
|
267
|
+
when :String
|
|
268
|
+
value.to_s
|
|
269
|
+
when :Integer
|
|
270
|
+
value.to_i
|
|
271
|
+
when :Float
|
|
272
|
+
value.to_f
|
|
273
|
+
when :Boolean
|
|
274
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
275
|
+
true
|
|
276
|
+
else
|
|
277
|
+
false
|
|
278
|
+
end
|
|
279
|
+
when :Object
|
|
280
|
+
# generic object (usually a Hash), return directly
|
|
281
|
+
value
|
|
282
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
283
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
284
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
285
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
286
|
+
k_type = Regexp.last_match[:k_type]
|
|
287
|
+
v_type = Regexp.last_match[:v_type]
|
|
288
|
+
{}.tap do |hash|
|
|
289
|
+
value.each do |k, v|
|
|
290
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
291
|
+
end
|
|
292
|
+
end
|
|
293
|
+
else # model
|
|
294
|
+
# models (e.g. Pet) or oneOf
|
|
295
|
+
klass = KindeApi.const_get(type)
|
|
296
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
297
|
+
end
|
|
298
|
+
end
|
|
299
|
+
|
|
300
|
+
# Returns the string representation of the object
|
|
301
|
+
# @return [String] String presentation of the object
|
|
302
|
+
def to_s
|
|
303
|
+
to_hash.to_s
|
|
304
|
+
end
|
|
305
|
+
|
|
306
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
307
|
+
# @return [Hash] Returns the object in the form of hash
|
|
308
|
+
def to_body
|
|
309
|
+
to_hash
|
|
310
|
+
end
|
|
311
|
+
|
|
312
|
+
# Returns the object in the form of hash
|
|
313
|
+
# @return [Hash] Returns the object in the form of hash
|
|
314
|
+
def to_hash
|
|
315
|
+
hash = {}
|
|
316
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
317
|
+
value = self.send(attr)
|
|
318
|
+
if value.nil?
|
|
319
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
320
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
321
|
+
end
|
|
322
|
+
|
|
323
|
+
hash[param] = _to_hash(value)
|
|
324
|
+
end
|
|
325
|
+
hash
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
# Outputs non-array value in the form of hash
|
|
329
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
330
|
+
# @param [Object] value Any valid value
|
|
331
|
+
# @return [Hash] Returns the value in the form of hash
|
|
332
|
+
def _to_hash(value)
|
|
333
|
+
if value.is_a?(Array)
|
|
334
|
+
value.compact.map { |v| _to_hash(v) }
|
|
335
|
+
elsif value.is_a?(Hash)
|
|
336
|
+
{}.tap do |hash|
|
|
337
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
338
|
+
end
|
|
339
|
+
elsif value.respond_to? :to_hash
|
|
340
|
+
value.to_hash
|
|
341
|
+
else
|
|
342
|
+
value
|
|
343
|
+
end
|
|
344
|
+
end
|
|
345
|
+
|
|
346
|
+
end
|
|
347
|
+
|
|
348
|
+
end
|
data/kinde_api/lib/kinde_api.rb
CHANGED
|
@@ -17,16 +17,25 @@ require 'kinde_api/version'
|
|
|
17
17
|
require 'kinde_api/configuration'
|
|
18
18
|
|
|
19
19
|
# Models
|
|
20
|
+
KindeApi.autoload :AddAPIsRequest, 'kinde_api/models/add_apis_request'
|
|
20
21
|
KindeApi.autoload :AddOrganizationUsersRequest, 'kinde_api/models/add_organization_users_request'
|
|
21
22
|
KindeApi.autoload :AddOrganizationUsersRequestUsersInner, 'kinde_api/models/add_organization_users_request_users_inner'
|
|
22
23
|
KindeApi.autoload :AddOrganizationUsersResponse, 'kinde_api/models/add_organization_users_response'
|
|
24
|
+
KindeApi.autoload :Api, 'kinde_api/models/api'
|
|
25
|
+
KindeApi.autoload :ApiApplicationsInner, 'kinde_api/models/api_applications_inner'
|
|
23
26
|
KindeApi.autoload :ApiResult, 'kinde_api/models/api_result'
|
|
24
|
-
KindeApi.autoload :
|
|
27
|
+
KindeApi.autoload :Apis, 'kinde_api/models/apis'
|
|
28
|
+
KindeApi.autoload :Applications, 'kinde_api/models/applications'
|
|
25
29
|
KindeApi.autoload :ConnectedAppsAccessToken, 'kinde_api/models/connected_apps_access_token'
|
|
26
30
|
KindeApi.autoload :ConnectedAppsAuthUrl, 'kinde_api/models/connected_apps_auth_url'
|
|
31
|
+
KindeApi.autoload :CreateApplicationRequest, 'kinde_api/models/create_application_request'
|
|
32
|
+
KindeApi.autoload :CreateApplicationResponse, 'kinde_api/models/create_application_response'
|
|
33
|
+
KindeApi.autoload :CreateApplicationResponseApplication, 'kinde_api/models/create_application_response_application'
|
|
34
|
+
KindeApi.autoload :CreateFeatureFlagRequest, 'kinde_api/models/create_feature_flag_request'
|
|
27
35
|
KindeApi.autoload :CreateOrganizationRequest, 'kinde_api/models/create_organization_request'
|
|
28
36
|
KindeApi.autoload :CreateOrganizationResponse, 'kinde_api/models/create_organization_response'
|
|
29
37
|
KindeApi.autoload :CreateOrganizationResponseOrganization, 'kinde_api/models/create_organization_response_organization'
|
|
38
|
+
KindeApi.autoload :CreateOrganizationUserPermissionRequest, 'kinde_api/models/create_organization_user_permission_request'
|
|
30
39
|
KindeApi.autoload :CreateOrganizationUserRoleRequest, 'kinde_api/models/create_organization_user_role_request'
|
|
31
40
|
KindeApi.autoload :CreatePermissionRequest, 'kinde_api/models/create_permission_request'
|
|
32
41
|
KindeApi.autoload :CreateRoleRequest, 'kinde_api/models/create_role_request'
|
|
@@ -39,43 +48,79 @@ KindeApi.autoload :CreateUserRequestProfile, 'kinde_api/models/create_user_reque
|
|
|
39
48
|
KindeApi.autoload :CreateUserResponse, 'kinde_api/models/create_user_response'
|
|
40
49
|
KindeApi.autoload :Error, 'kinde_api/models/error'
|
|
41
50
|
KindeApi.autoload :ErrorResponse, 'kinde_api/models/error_response'
|
|
51
|
+
KindeApi.autoload :GetApplicationResponse, 'kinde_api/models/get_application_response'
|
|
52
|
+
KindeApi.autoload :GetApplicationResponseApplication, 'kinde_api/models/get_application_response_application'
|
|
42
53
|
KindeApi.autoload :GetApplicationsResponse, 'kinde_api/models/get_applications_response'
|
|
43
54
|
KindeApi.autoload :GetEnvironmentFeatureFlagsResponse, 'kinde_api/models/get_environment_feature_flags_response'
|
|
44
55
|
KindeApi.autoload :GetOrganizationFeatureFlagsResponse, 'kinde_api/models/get_organization_feature_flags_response'
|
|
45
56
|
KindeApi.autoload :GetOrganizationFeatureFlagsResponseFeatureFlagsValue, 'kinde_api/models/get_organization_feature_flags_response_feature_flags_value'
|
|
57
|
+
KindeApi.autoload :GetOrganizationUsersResponse, 'kinde_api/models/get_organization_users_response'
|
|
46
58
|
KindeApi.autoload :GetOrganizationsResponse, 'kinde_api/models/get_organizations_response'
|
|
59
|
+
KindeApi.autoload :GetOrganizationsUserPermissionsResponse, 'kinde_api/models/get_organizations_user_permissions_response'
|
|
47
60
|
KindeApi.autoload :GetOrganizationsUserRolesResponse, 'kinde_api/models/get_organizations_user_roles_response'
|
|
48
|
-
KindeApi.autoload :
|
|
61
|
+
KindeApi.autoload :GetPermissionsResponse, 'kinde_api/models/get_permissions_response'
|
|
49
62
|
KindeApi.autoload :GetRedirectCallbackUrlsResponse, 'kinde_api/models/get_redirect_callback_urls_response'
|
|
63
|
+
KindeApi.autoload :GetRolesResponse, 'kinde_api/models/get_roles_response'
|
|
64
|
+
KindeApi.autoload :GetSubscriberResponse, 'kinde_api/models/get_subscriber_response'
|
|
65
|
+
KindeApi.autoload :GetSubscribersResponse, 'kinde_api/models/get_subscribers_response'
|
|
66
|
+
KindeApi.autoload :LogoutRedirectUrls, 'kinde_api/models/logout_redirect_urls'
|
|
50
67
|
KindeApi.autoload :Organization, 'kinde_api/models/organization'
|
|
51
68
|
KindeApi.autoload :OrganizationUser, 'kinde_api/models/organization_user'
|
|
69
|
+
KindeApi.autoload :OrganizationUserPermission, 'kinde_api/models/organization_user_permission'
|
|
70
|
+
KindeApi.autoload :OrganizationUserPermissionRolesInner, 'kinde_api/models/organization_user_permission_roles_inner'
|
|
52
71
|
KindeApi.autoload :OrganizationUserRole, 'kinde_api/models/organization_user_role'
|
|
72
|
+
KindeApi.autoload :OrganizationUserRolePermissions, 'kinde_api/models/organization_user_role_permissions'
|
|
73
|
+
KindeApi.autoload :OrganizationUserRolePermissionsPermissions, 'kinde_api/models/organization_user_role_permissions_permissions'
|
|
53
74
|
KindeApi.autoload :Permissions, 'kinde_api/models/permissions'
|
|
54
75
|
KindeApi.autoload :RedirectCallbackUrls, 'kinde_api/models/redirect_callback_urls'
|
|
76
|
+
KindeApi.autoload :ReplaceLogoutRedirectURLsRequest, 'kinde_api/models/replace_logout_redirect_urls_request'
|
|
77
|
+
KindeApi.autoload :ReplaceRedirectCallbackURLsRequest, 'kinde_api/models/replace_redirect_callback_urls_request'
|
|
78
|
+
KindeApi.autoload :Role, 'kinde_api/models/role'
|
|
55
79
|
KindeApi.autoload :Roles, 'kinde_api/models/roles'
|
|
80
|
+
KindeApi.autoload :RolesPermissionResponseInner, 'kinde_api/models/roles_permission_response_inner'
|
|
81
|
+
KindeApi.autoload :Subscriber, 'kinde_api/models/subscriber'
|
|
82
|
+
KindeApi.autoload :SubscribersSubscriber, 'kinde_api/models/subscribers_subscriber'
|
|
56
83
|
KindeApi.autoload :SuccessResponse, 'kinde_api/models/success_response'
|
|
84
|
+
KindeApi.autoload :TokenErrorResponse, 'kinde_api/models/token_error_response'
|
|
85
|
+
KindeApi.autoload :TokenIntrospect, 'kinde_api/models/token_introspect'
|
|
86
|
+
KindeApi.autoload :UpdateAPIApplicationsRequest, 'kinde_api/models/update_api_applications_request'
|
|
87
|
+
KindeApi.autoload :UpdateAPIApplicationsRequestApplicationsInner, 'kinde_api/models/update_api_applications_request_applications_inner'
|
|
88
|
+
KindeApi.autoload :UpdateApplicationRequest, 'kinde_api/models/update_application_request'
|
|
89
|
+
KindeApi.autoload :UpdateEnvironementFeatureFlagOverrideRequest, 'kinde_api/models/update_environement_feature_flag_override_request'
|
|
57
90
|
KindeApi.autoload :UpdateOrganizationRequest, 'kinde_api/models/update_organization_request'
|
|
58
91
|
KindeApi.autoload :UpdateOrganizationUsersRequest, 'kinde_api/models/update_organization_users_request'
|
|
59
92
|
KindeApi.autoload :UpdateOrganizationUsersRequestUsersInner, 'kinde_api/models/update_organization_users_request_users_inner'
|
|
60
93
|
KindeApi.autoload :UpdateOrganizationUsersResponse, 'kinde_api/models/update_organization_users_response'
|
|
94
|
+
KindeApi.autoload :UpdateRolePermissionsRequest, 'kinde_api/models/update_role_permissions_request'
|
|
95
|
+
KindeApi.autoload :UpdateRolePermissionsRequestPermissionsInner, 'kinde_api/models/update_role_permissions_request_permissions_inner'
|
|
96
|
+
KindeApi.autoload :UpdateRolePermissionsResponse, 'kinde_api/models/update_role_permissions_response'
|
|
97
|
+
KindeApi.autoload :UpdateRolesRequest, 'kinde_api/models/update_roles_request'
|
|
61
98
|
KindeApi.autoload :UpdateUserRequest, 'kinde_api/models/update_user_request'
|
|
99
|
+
KindeApi.autoload :UpdateUserResponse, 'kinde_api/models/update_user_response'
|
|
62
100
|
KindeApi.autoload :User, 'kinde_api/models/user'
|
|
101
|
+
KindeApi.autoload :UserIdentitiesInner, 'kinde_api/models/user_identities_inner'
|
|
63
102
|
KindeApi.autoload :UserIdentity, 'kinde_api/models/user_identity'
|
|
64
103
|
KindeApi.autoload :UserIdentityResult, 'kinde_api/models/user_identity_result'
|
|
65
104
|
KindeApi.autoload :UserProfile, 'kinde_api/models/user_profile'
|
|
66
105
|
KindeApi.autoload :UserProfileV2, 'kinde_api/models/user_profile_v2'
|
|
67
106
|
KindeApi.autoload :UsersResponse, 'kinde_api/models/users_response'
|
|
107
|
+
KindeApi.autoload :UsersResponseUsersInner, 'kinde_api/models/users_response_users_inner'
|
|
68
108
|
|
|
69
109
|
# APIs
|
|
110
|
+
KindeApi.autoload :APIsApi, 'kinde_api/api/apis_api'
|
|
111
|
+
KindeApi.autoload :ApplicationsApi, 'kinde_api/api/applications_api'
|
|
112
|
+
KindeApi.autoload :BusinessApi, 'kinde_api/api/business_api'
|
|
70
113
|
KindeApi.autoload :CallbacksApi, 'kinde_api/api/callbacks_api'
|
|
71
114
|
KindeApi.autoload :ConnectedAppsApi, 'kinde_api/api/connected_apps_api'
|
|
72
115
|
KindeApi.autoload :EnvironmentsApi, 'kinde_api/api/environments_api'
|
|
73
116
|
KindeApi.autoload :FeatureFlagsApi, 'kinde_api/api/feature_flags_api'
|
|
117
|
+
KindeApi.autoload :IndustriesApi, 'kinde_api/api/industries_api'
|
|
74
118
|
KindeApi.autoload :OAuthApi, 'kinde_api/api/o_auth_api'
|
|
75
119
|
KindeApi.autoload :OrganizationsApi, 'kinde_api/api/organizations_api'
|
|
76
120
|
KindeApi.autoload :PermissionsApi, 'kinde_api/api/permissions_api'
|
|
77
121
|
KindeApi.autoload :RolesApi, 'kinde_api/api/roles_api'
|
|
78
122
|
KindeApi.autoload :SubscribersApi, 'kinde_api/api/subscribers_api'
|
|
123
|
+
KindeApi.autoload :TimezonesApi, 'kinde_api/api/timezones_api'
|
|
79
124
|
KindeApi.autoload :UsersApi, 'kinde_api/api/users_api'
|
|
80
125
|
|
|
81
126
|
module KindeApi
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Kinde Management API
|
|
3
|
+
|
|
4
|
+
#Provides endpoints to manage your Kinde Businesses
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1
|
|
7
|
+
Contact: support@kinde.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.4.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
|
|
16
|
+
# Unit tests for KindeApi::APIsApi
|
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
18
|
+
# Please update as you see appropriate
|
|
19
|
+
describe 'APIsApi' do
|
|
20
|
+
before do
|
|
21
|
+
# run before each test
|
|
22
|
+
@api_instance = KindeApi::APIsApi.new
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after do
|
|
26
|
+
# run after each test
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
describe 'test an instance of APIsApi' do
|
|
30
|
+
it 'should create an instance of APIsApi' do
|
|
31
|
+
expect(@api_instance).to be_instance_of(KindeApi::APIsApi)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# unit tests for add_apis
|
|
36
|
+
# Add APIs
|
|
37
|
+
# Add APIs.
|
|
38
|
+
# @param add_apis_request API details.
|
|
39
|
+
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @return [SuccessResponse]
|
|
41
|
+
describe 'add_apis test' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# unit tests for delete_api
|
|
48
|
+
# Delete API
|
|
49
|
+
# Deletes API.
|
|
50
|
+
# @param api_id The API's id.
|
|
51
|
+
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @return [SuccessResponse]
|
|
53
|
+
describe 'delete_api test' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# unit tests for get_api
|
|
60
|
+
# List API details
|
|
61
|
+
# Returns the details of the API.
|
|
62
|
+
# @param api_id The API's id.
|
|
63
|
+
# @param [Hash] opts the optional parameters
|
|
64
|
+
# @return [Api]
|
|
65
|
+
describe 'get_api test' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
# unit tests for get_apis
|
|
72
|
+
# List APIs
|
|
73
|
+
# Returns a list of APIs.
|
|
74
|
+
# @param [Hash] opts the optional parameters
|
|
75
|
+
# @return [Apis]
|
|
76
|
+
describe 'get_apis test' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# unit tests for update_api_applications
|
|
83
|
+
# Update API Applications
|
|
84
|
+
# Update the applications under that API.
|
|
85
|
+
# @param api_id The identifier for the API.
|
|
86
|
+
# @param update_api_applications_request The applications you want to connect or disconnect.
|
|
87
|
+
# @param [Hash] opts the optional parameters
|
|
88
|
+
# @return [SuccessResponse]
|
|
89
|
+
describe 'update_api_applications test' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
end
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Kinde Management API
|
|
3
|
+
|
|
4
|
+
#Provides endpoints to manage your Kinde Businesses
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1
|
|
7
|
+
Contact: support@kinde.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.4.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
|
|
16
|
+
# Unit tests for KindeApi::ApplicationsApi
|
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
18
|
+
# Please update as you see appropriate
|
|
19
|
+
describe 'ApplicationsApi' do
|
|
20
|
+
before do
|
|
21
|
+
# run before each test
|
|
22
|
+
@api_instance = KindeApi::ApplicationsApi.new
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after do
|
|
26
|
+
# run after each test
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
describe 'test an instance of ApplicationsApi' do
|
|
30
|
+
it 'should create an instance of ApplicationsApi' do
|
|
31
|
+
expect(@api_instance).to be_instance_of(KindeApi::ApplicationsApi)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# unit tests for create_application
|
|
36
|
+
# Create Application
|
|
37
|
+
# Create an application.
|
|
38
|
+
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @option opts [CreateApplicationRequest] :create_application_request Application details.
|
|
40
|
+
# @return [CreateApplicationResponse]
|
|
41
|
+
describe 'create_application test' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# unit tests for delete_application
|
|
48
|
+
# Delete Application
|
|
49
|
+
# Delete application.
|
|
50
|
+
# @param application_id The identifier for the application.
|
|
51
|
+
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @return [SuccessResponse]
|
|
53
|
+
describe 'delete_application test' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# unit tests for get_application
|
|
60
|
+
# Get Application
|
|
61
|
+
# Gets an application given the application's id.
|
|
62
|
+
# @param application_id The identifier for the application.
|
|
63
|
+
# @param [Hash] opts the optional parameters
|
|
64
|
+
# @return [GetApplicationResponse]
|
|
65
|
+
describe 'get_application test' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
# unit tests for get_applications
|
|
72
|
+
# List Applications
|
|
73
|
+
# Get a list of applications.
|
|
74
|
+
# @param [Hash] opts the optional parameters
|
|
75
|
+
# @option opts [String] :sort Field and order to sort the result by.
|
|
76
|
+
# @option opts [Integer] :page_size Number of results per page. Defaults to 10 if parameter not sent.
|
|
77
|
+
# @option opts [String] :next_token A string to get the next page of results if there are more results.
|
|
78
|
+
# @return [GetApplicationsResponse]
|
|
79
|
+
describe 'get_applications test' do
|
|
80
|
+
it 'should work' do
|
|
81
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# unit tests for update_application
|
|
86
|
+
# Update Application
|
|
87
|
+
# Update an application.
|
|
88
|
+
# @param application_id The identifier for the application.
|
|
89
|
+
# @param [Hash] opts the optional parameters
|
|
90
|
+
# @option opts [UpdateApplicationRequest] :update_application_request Application details.
|
|
91
|
+
# @return [nil]
|
|
92
|
+
describe 'update_application test' do
|
|
93
|
+
it 'should work' do
|
|
94
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
end
|