├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── kinde_sdk ├── __init__.py ├── api_client.py ├── apis │ ├── __init__.py │ ├── path_to_api.py │ ├── paths │ │ ├── __init__.py │ │ ├── api_v1_apis.py │ │ ├── api_v1_apis_api_id.py │ │ ├── api_v1_apis_api_id_applications.py │ │ ├── api_v1_applications.py │ │ ├── api_v1_applications_app_id_auth_logout_urls.py │ │ ├── api_v1_applications_app_id_auth_redirect_urls.py │ │ ├── api_v1_applications_application_id.py │ │ ├── api_v1_applications_application_id_connections.py │ │ ├── api_v1_applications_application_id_connections_connection_id.py │ │ ├── api_v1_business.py │ │ ├── api_v1_connected_apps_auth_url.py │ │ ├── api_v1_connected_apps_revoke.py │ │ ├── api_v1_connected_apps_token.py │ │ ├── api_v1_connections.py │ │ ├── api_v1_connections_connection_id.py │ │ ├── api_v1_environment_feature_flags.py │ │ ├── api_v1_environment_feature_flags_feature_flag_key.py │ │ ├── api_v1_event_types.py │ │ ├── api_v1_events_event_id.py │ │ ├── api_v1_feature_flags.py │ │ ├── api_v1_feature_flags_feature_flag_key.py │ │ ├── api_v1_industries.py │ │ ├── api_v1_organization.py │ │ ├── api_v1_organization_org_code.py │ │ ├── api_v1_organization_org_code_handle.py │ │ ├── api_v1_organizations.py │ │ ├── api_v1_organizations_org_code_feature_flags.py │ │ ├── api_v1_organizations_org_code_feature_flags_feature_flag_key.py │ │ ├── api_v1_organizations_org_code_properties.py │ │ ├── api_v1_organizations_org_code_properties_property_key.py │ │ ├── api_v1_organizations_org_code_users.py │ │ ├── api_v1_organizations_org_code_users_user_id.py │ │ ├── api_v1_organizations_org_code_users_user_id_permissions.py │ │ ├── api_v1_organizations_org_code_users_user_id_permissions_permission_id.py │ │ ├── api_v1_organizations_org_code_users_user_id_roles.py │ │ ├── api_v1_organizations_org_code_users_user_id_roles_role_id.py │ │ ├── api_v1_permissions.py │ │ ├── api_v1_permissions_permission_id.py │ │ ├── api_v1_properties.py │ │ ├── api_v1_properties_property_id.py │ │ ├── api_v1_property_categories.py │ │ ├── api_v1_property_categories_category_id.py │ │ ├── api_v1_roles.py │ │ ├── api_v1_roles_role_id.py │ │ ├── api_v1_roles_role_id_permissions.py │ │ ├── api_v1_roles_role_id_permissions_permission_id.py │ │ ├── api_v1_subscribers.py │ │ ├── api_v1_subscribers_subscriber_id.py │ │ ├── api_v1_timezones.py │ │ ├── api_v1_user.py │ │ ├── api_v1_users.py │ │ ├── api_v1_users_user_id_feature_flags_feature_flag_key.py │ │ ├── api_v1_users_user_id_password.py │ │ ├── api_v1_users_user_id_properties.py │ │ ├── api_v1_users_user_id_properties_property_key.py │ │ ├── api_v1_users_user_id_refresh_claims.py │ │ ├── api_v1_webhooks.py │ │ ├── api_v1_webhooks_webhook_id.py │ │ ├── oauth2_introspect.py │ │ ├── oauth2_revoke.py │ │ ├── oauth2_user_profile.py │ │ └── oauth2_v2_user_profile.py │ ├── tag_to_api.py │ └── tags │ │ ├── __init__.py │ │ ├── apis_api.py │ │ ├── applications_api.py │ │ ├── business_api.py │ │ ├── callbacks_api.py │ │ ├── connected_apps_api.py │ │ ├── connections_api.py │ │ ├── environments_api.py │ │ ├── feature_flags_api.py │ │ ├── industries_api.py │ │ ├── o_auth_api.py │ │ ├── organizations_api.py │ │ ├── permissions_api.py │ │ ├── properties_api.py │ │ ├── property_categories_api.py │ │ ├── roles_api.py │ │ ├── subscribers_api.py │ │ ├── timezones_api.py │ │ ├── users_api.py │ │ └── webhooks_api.py ├── configuration.py ├── docs │ ├── apis │ │ └── tags │ │ │ ├── APIsApi.md │ │ │ ├── ApplicationsApi.md │ │ │ ├── BusinessApi.md │ │ │ ├── CallbacksApi.md │ │ │ ├── ConnectedAppsApi.md │ │ │ ├── ConnectionsApi.md │ │ │ ├── EnvironmentsApi.md │ │ │ ├── FeatureFlagsApi.md │ │ │ ├── IndustriesApi.md │ │ │ ├── OAuthApi.md │ │ │ ├── OrganizationsApi.md │ │ │ ├── PermissionsApi.md │ │ │ ├── PropertiesApi.md │ │ │ ├── PropertyCategoriesApi.md │ │ │ ├── RolesApi.md │ │ │ ├── SubscribersApi.md │ │ │ ├── TimezonesApi.md │ │ │ ├── UsersApi.md │ │ │ └── WebhooksApi.md │ └── models │ │ ├── AddOrganizationUsersResponse.md │ │ ├── Api.md │ │ ├── ApiResult.md │ │ ├── Apis.md │ │ ├── Applications.md │ │ ├── Category.md │ │ ├── ConnectedAppsAccessToken.md │ │ ├── ConnectedAppsAuthUrl.md │ │ ├── Connection.md │ │ ├── CreateApplicationResponse.md │ │ ├── CreateCategoryResponse.md │ │ ├── CreateConnectionResponse.md │ │ ├── CreateOrganizationResponse.md │ │ ├── CreatePropertyResponse.md │ │ ├── CreateSubscriberSuccessResponse.md │ │ ├── CreateUserResponse.md │ │ ├── CreateWebhookResponse.md │ │ ├── DeleteWebhookResponse.md │ │ ├── Error.md │ │ ├── ErrorResponse.md │ │ ├── EventType.md │ │ ├── GetApplicationResponse.md │ │ ├── GetApplicationsResponse.md │ │ ├── GetCategoriesResponse.md │ │ ├── GetConnectionsResponse.md │ │ ├── GetEnvironmentFeatureFlagsResponse.md │ │ ├── GetEventResponse.md │ │ ├── GetEventTypesResponse.md │ │ ├── GetOrganizationFeatureFlagsResponse.md │ │ ├── GetOrganizationUsersResponse.md │ │ ├── GetOrganizationsResponse.md │ │ ├── GetOrganizationsUserPermissionsResponse.md │ │ ├── GetOrganizationsUserRolesResponse.md │ │ ├── GetPermissionsResponse.md │ │ ├── GetPropertiesResponse.md │ │ ├── GetPropertyValuesResponse.md │ │ ├── GetRedirectCallbackUrlsResponse.md │ │ ├── GetRolesResponse.md │ │ ├── GetSubscriberResponse.md │ │ ├── GetSubscribersResponse.md │ │ ├── GetWebhooksResponse.md │ │ ├── LogoutRedirectUrls.md │ │ ├── ModelProperty.md │ │ ├── Organization.md │ │ ├── OrganizationUser.md │ │ ├── OrganizationUserPermission.md │ │ ├── OrganizationUserRole.md │ │ ├── OrganizationUserRolePermissions.md │ │ ├── OrganizationUsers.md │ │ ├── Permissions.md │ │ ├── PropertyValue.md │ │ ├── RedirectCallbackUrls.md │ │ ├── Role.md │ │ ├── Roles.md │ │ ├── RolesPermissionResponse.md │ │ ├── Subscriber.md │ │ ├── SubscribersSubscriber.md │ │ ├── SuccessResponse.md │ │ ├── TokenErrorResponse.md │ │ ├── TokenIntrospect.md │ │ ├── UpdateOrganizationUsersResponse.md │ │ ├── UpdateRolePermissionsResponse.md │ │ ├── UpdateUserResponse.md │ │ ├── UpdateWebhookResponse.md │ │ ├── User.md │ │ ├── UserIdentity.md │ │ ├── UserProfile.md │ │ ├── UserProfileV2.md │ │ ├── Users.md │ │ ├── UsersResponse.md │ │ └── Webhook.md ├── exceptions.py ├── kinde_api_client.py ├── model │ ├── __init__.py │ ├── add_organization_users_response.py │ ├── add_organization_users_response.pyi │ ├── api.py │ ├── api.pyi │ ├── api_result.py │ ├── api_result.pyi │ ├── apis.py │ ├── apis.pyi │ ├── applications.py │ ├── applications.pyi │ ├── category.py │ ├── category.pyi │ ├── connected_apps_access_token.py │ ├── connected_apps_access_token.pyi │ ├── connected_apps_auth_url.py │ ├── connected_apps_auth_url.pyi │ ├── connection.py │ ├── connection.pyi │ ├── create_application_response.py │ ├── create_application_response.pyi │ ├── create_category_response.py │ ├── create_category_response.pyi │ ├── create_connection_response.py │ ├── create_connection_response.pyi │ ├── create_organization_response.py │ ├── create_organization_response.pyi │ ├── create_property_response.py │ ├── create_property_response.pyi │ ├── create_subscriber_success_response.py │ ├── create_subscriber_success_response.pyi │ ├── create_user_response.py │ ├── create_user_response.pyi │ ├── create_webhook_response.py │ ├── create_webhook_response.pyi │ ├── delete_webhook_response.py │ ├── delete_webhook_response.pyi │ ├── error.py │ ├── error.pyi │ ├── error_response.py │ ├── error_response.pyi │ ├── event_type.py │ ├── event_type.pyi │ ├── get_application_response.py │ ├── get_application_response.pyi │ ├── get_applications_response.py │ ├── get_applications_response.pyi │ ├── get_categories_response.py │ ├── get_categories_response.pyi │ ├── get_connections_response.py │ ├── get_connections_response.pyi │ ├── get_environment_feature_flags_response.py │ ├── get_environment_feature_flags_response.pyi │ ├── get_event_response.py │ ├── get_event_response.pyi │ ├── get_event_types_response.py │ ├── get_event_types_response.pyi │ ├── get_organization_feature_flags_response.py │ ├── get_organization_feature_flags_response.pyi │ ├── get_organization_users_response.py │ ├── get_organization_users_response.pyi │ ├── get_organizations_response.py │ ├── get_organizations_response.pyi │ ├── get_organizations_user_permissions_response.py │ ├── get_organizations_user_permissions_response.pyi │ ├── get_organizations_user_roles_response.py │ ├── get_organizations_user_roles_response.pyi │ ├── get_permissions_response.py │ ├── get_permissions_response.pyi │ ├── get_properties_response.py │ ├── get_properties_response.pyi │ ├── get_property_values_response.py │ ├── get_property_values_response.pyi │ ├── get_redirect_callback_urls_response.py │ ├── get_redirect_callback_urls_response.pyi │ ├── get_roles_response.py │ ├── get_roles_response.pyi │ ├── get_subscriber_response.py │ ├── get_subscriber_response.pyi │ ├── get_subscribers_response.py │ ├── get_subscribers_response.pyi │ ├── get_webhooks_response.py │ ├── get_webhooks_response.pyi │ ├── logout_redirect_urls.py │ ├── logout_redirect_urls.pyi │ ├── model_property.py │ ├── model_property.pyi │ ├── organization.py │ ├── organization.pyi │ ├── organization_user.py │ ├── organization_user.pyi │ ├── organization_user_permission.py │ ├── organization_user_permission.pyi │ ├── organization_user_role.py │ ├── organization_user_role.pyi │ ├── organization_user_role_permissions.py │ ├── organization_user_role_permissions.pyi │ ├── organization_users.py │ ├── organization_users.pyi │ ├── permissions.py │ ├── permissions.pyi │ ├── property_value.py │ ├── property_value.pyi │ ├── redirect_callback_urls.py │ ├── redirect_callback_urls.pyi │ ├── role.py │ ├── role.pyi │ ├── roles.py │ ├── roles.pyi │ ├── roles_permission_response.py │ ├── roles_permission_response.pyi │ ├── subscriber.py │ ├── subscriber.pyi │ ├── subscribers_subscriber.py │ ├── subscribers_subscriber.pyi │ ├── success_response.py │ ├── success_response.pyi │ ├── token_error_response.py │ ├── token_error_response.pyi │ ├── token_introspect.py │ ├── token_introspect.pyi │ ├── update_organization_users_response.py │ ├── update_organization_users_response.pyi │ ├── update_role_permissions_response.py │ ├── update_role_permissions_response.pyi │ ├── update_user_response.py │ ├── update_user_response.pyi │ ├── update_webhook_response.py │ ├── update_webhook_response.pyi │ ├── user.py │ ├── user.pyi │ ├── user_identity.py │ ├── user_identity.pyi │ ├── user_profile.py │ ├── user_profile.pyi │ ├── user_profile_v2.py │ ├── user_profile_v2.pyi │ ├── users.py │ ├── users.pyi │ ├── users_response.py │ ├── users_response.pyi │ ├── webhook.py │ └── webhook.pyi ├── models │ └── __init__.py ├── paths │ ├── __init__.py │ ├── api_v1_apis │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_apis_api_id │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_apis_api_id_applications │ │ ├── __init__.py │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_applications │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_applications_app_id_auth_logout_urls │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ ├── post.pyi │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_applications_app_id_auth_redirect_urls │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ ├── post.pyi │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_applications_application_id │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_applications_application_id_connections │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_applications_application_id_connections_connection_id │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_business │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_connected_apps_auth_url │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_connected_apps_revoke │ │ ├── __init__.py │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_connected_apps_token │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_connections │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_connections_connection_id │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_environment_feature_flags │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_environment_feature_flags_feature_flag_key │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_event_types │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_events_event_id │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_feature_flags │ │ ├── __init__.py │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_feature_flags_feature_flag_key │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_industries │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_organization │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_organization_org_code │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_organization_org_code_handle │ │ ├── __init__.py │ │ ├── delete.py │ │ └── delete.pyi │ ├── api_v1_organizations │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_organizations_org_code_feature_flags │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_organizations_org_code_feature_flags_feature_flag_key │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_organizations_org_code_properties │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_organizations_org_code_properties_property_key │ │ ├── __init__.py │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_organizations_org_code_users │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ ├── patch.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_organizations_org_code_users_user_id │ │ ├── __init__.py │ │ ├── delete.py │ │ └── delete.pyi │ ├── api_v1_organizations_org_code_users_user_id_permissions │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_organizations_org_code_users_user_id_permissions_permission_id │ │ ├── __init__.py │ │ ├── delete.py │ │ └── delete.pyi │ ├── api_v1_organizations_org_code_users_user_id_roles │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_organizations_org_code_users_user_id_roles_role_id │ │ ├── __init__.py │ │ ├── delete.py │ │ └── delete.pyi │ ├── api_v1_permissions │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_permissions_permission_id │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_properties │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_properties_property_id │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_property_categories │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_property_categories_category_id │ │ ├── __init__.py │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_roles │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_roles_role_id │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_roles_role_id_permissions │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_roles_role_id_permissions_permission_id │ │ ├── __init__.py │ │ ├── delete.py │ │ └── delete.pyi │ ├── api_v1_subscribers │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_subscribers_subscriber_id │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_timezones │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_user │ │ ├── __init__.py │ │ ├── delete.py │ │ ├── delete.pyi │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ ├── patch.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_users │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ ├── api_v1_users_user_id_feature_flags_feature_flag_key │ │ ├── __init__.py │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_users_user_id_password │ │ ├── __init__.py │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_users_user_id_properties │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ └── patch.pyi │ ├── api_v1_users_user_id_properties_property_key │ │ ├── __init__.py │ │ ├── put.py │ │ └── put.pyi │ ├── api_v1_users_user_id_refresh_claims │ │ ├── __init__.py │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_webhooks │ │ ├── __init__.py │ │ ├── get.py │ │ ├── get.pyi │ │ ├── patch.py │ │ ├── patch.pyi │ │ ├── post.py │ │ └── post.pyi │ ├── api_v1_webhooks_webhook_id │ │ ├── __init__.py │ │ ├── delete.py │ │ └── delete.pyi │ ├── oauth2_introspect │ │ ├── __init__.py │ │ ├── post.py │ │ └── post.pyi │ ├── oauth2_revoke │ │ ├── __init__.py │ │ ├── post.py │ │ └── post.pyi │ ├── oauth2_user_profile │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi │ └── oauth2_v2_user_profile │ │ ├── __init__.py │ │ ├── get.py │ │ └── get.pyi ├── rest.py ├── schemas.py └── test │ ├── __init__.py │ ├── test_kinde_api_client.py │ └── test_models │ ├── __init__.py │ ├── test_add_organization_users_response.py │ ├── test_api.py │ ├── test_api_result.py │ ├── test_apis.py │ ├── test_applications.py │ ├── test_category.py │ ├── test_connected_apps_access_token.py │ ├── test_connected_apps_auth_url.py │ ├── test_connection.py │ ├── test_create_application_response.py │ ├── test_create_category_response.py │ ├── test_create_connection_response.py │ ├── test_create_organization_response.py │ ├── test_create_property_response.py │ ├── test_create_subscriber_success_response.py │ ├── test_create_user_response.py │ ├── test_create_webhook_response.py │ ├── test_delete_webhook_response.py │ ├── test_error.py │ ├── test_error_response.py │ ├── test_event_type.py │ ├── test_get_application_response.py │ ├── test_get_applications_response.py │ ├── test_get_categories_response.py │ ├── test_get_connections_response.py │ ├── test_get_environment_feature_flags_response.py │ ├── test_get_event_response.py │ ├── test_get_event_types_response.py │ ├── test_get_organization_feature_flags_response.py │ ├── test_get_organization_users_response.py │ ├── test_get_organizations_response.py │ ├── test_get_organizations_user_permissions_response.py │ ├── test_get_organizations_user_roles_response.py │ ├── test_get_permissions_response.py │ ├── test_get_properties_response.py │ ├── test_get_property_values_response.py │ ├── test_get_redirect_callback_urls_response.py │ ├── test_get_roles_response.py │ ├── test_get_subscriber_response.py │ ├── test_get_subscribers_response.py │ ├── test_get_webhooks_response.py │ ├── test_logout_redirect_urls.py │ ├── test_model_property.py │ ├── test_organization.py │ ├── test_organization_user.py │ ├── test_organization_user_permission.py │ ├── test_organization_user_role.py │ ├── test_organization_user_role_permissions.py │ ├── test_organization_users.py │ ├── test_permissions.py │ ├── test_property_value.py │ ├── test_redirect_callback_urls.py │ ├── test_role.py │ ├── test_roles.py │ ├── test_roles_permission_response.py │ ├── test_subscriber.py │ ├── test_subscribers_subscriber.py │ ├── test_success_response.py │ ├── test_token_error_response.py │ ├── test_token_introspect.py │ ├── test_update_organization_users_response.py │ ├── test_update_role_permissions_response.py │ ├── test_update_user_response.py │ ├── test_update_webhook_response.py │ ├── test_user.py │ ├── test_user_identity.py │ ├── test_user_profile.py │ ├── test_user_profile_v2.py │ ├── test_users.py │ ├── test_users_response.py │ └── test_webhook.py ├── kinde_sdk_README.md ├── pyproject.toml ├── requirements.txt └── test └── test_paths ├── __init__.py ├── test_api_v1_apis ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_apis_api_id ├── __init__.py ├── test_delete.py └── test_get.py ├── test_api_v1_apis_api_id_applications ├── __init__.py └── test_patch.py ├── test_api_v1_applications ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_applications_app_id_auth_logout_urls ├── __init__.py ├── test_delete.py ├── test_get.py ├── test_post.py └── test_put.py ├── test_api_v1_applications_app_id_auth_redirect_urls ├── __init__.py ├── test_delete.py ├── test_get.py ├── test_post.py └── test_put.py ├── test_api_v1_applications_application_id ├── __init__.py ├── test_delete.py ├── test_get.py └── test_patch.py ├── test_api_v1_applications_application_id_connections ├── __init__.py └── test_get.py ├── test_api_v1_applications_application_id_connections_connection_id ├── __init__.py ├── test_delete.py └── test_post.py ├── test_api_v1_business ├── __init__.py ├── test_get.py └── test_patch.py ├── test_api_v1_connected_apps_auth_url ├── __init__.py └── test_get.py ├── test_api_v1_connected_apps_revoke ├── __init__.py └── test_post.py ├── test_api_v1_connected_apps_token ├── __init__.py └── test_get.py ├── test_api_v1_connections ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_connections_connection_id ├── __init__.py ├── test_delete.py ├── test_get.py └── test_patch.py ├── test_api_v1_environment_feature_flags ├── __init__.py ├── test_delete.py └── test_get.py ├── test_api_v1_environment_feature_flags_ └── test_delete.py ├── test_api_v1_environment_feature_flags_feature_flag_key ├── __init__.py ├── test_delete.py └── test_patch.py ├── test_api_v1_event_types ├── __init__.py └── test_get.py ├── test_api_v1_events_event_id ├── __init__.py └── test_get.py ├── test_api_v1_feature_flags ├── __init__.py └── test_post.py ├── test_api_v1_feature_flags_feature_flag_key ├── __init__.py ├── test_delete.py └── test_put.py ├── test_api_v1_industries ├── __init__.py └── test_get.py ├── test_api_v1_organization ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_organization_org_code ├── __init__.py ├── test_delete.py └── test_patch.py ├── test_api_v1_organization_org_code_handle ├── __init__.py └── test_delete.py ├── test_api_v1_organization_users ├── __init__.py ├── test_get.py ├── test_patch.py └── test_post.py ├── test_api_v1_organizations ├── __init__.py └── test_get.py ├── test_api_v1_organizations_org_code_feature_flags ├── __init__.py ├── test_delete.py └── test_get.py ├── test_api_v1_organizations_org_code_feature_flags_feature_flag_key ├── __init__.py ├── test_delete.py └── test_patch.py ├── test_api_v1_organizations_org_code_properties ├── __init__.py ├── test_get.py └── test_patch.py ├── test_api_v1_organizations_org_code_properties_property_key ├── __init__.py └── test_put.py ├── test_api_v1_organizations_org_code_users ├── __init__.py ├── test_get.py ├── test_patch.py └── test_post.py ├── test_api_v1_organizations_org_code_users_user_id ├── __init__.py └── test_delete.py ├── test_api_v1_organizations_org_code_users_user_id_permissions ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_organizations_org_code_users_user_id_permissions_permission_id ├── __init__.py └── test_delete.py ├── test_api_v1_organizations_org_code_users_user_id_roles ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_organizations_org_code_users_user_id_roles_role_id ├── __init__.py └── test_delete.py ├── test_api_v1_permissions ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_permissions_permission_id ├── __init__.py ├── test_delete.py └── test_patch.py ├── test_api_v1_properties ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_properties_property_id ├── __init__.py ├── test_delete.py └── test_put.py ├── test_api_v1_property_categories ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_property_categories_category_id ├── __init__.py └── test_put.py ├── test_api_v1_role ├── __init__.py └── test_post.py ├── test_api_v1_roles ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_roles_role_id ├── __init__.py ├── test_delete.py └── test_patch.py ├── test_api_v1_roles_role_id_permission_permission_id ├── __init__.py └── test_delete.py ├── test_api_v1_roles_role_id_permissions ├── __init__.py ├── test_get.py └── test_patch.py ├── test_api_v1_roles_role_id_permissions_permission_id ├── __init__.py └── test_delete.py ├── test_api_v1_subscribers ├── __init__.py ├── test_get.py └── test_post.py ├── test_api_v1_subscribers_subscriber_id ├── __init__.py └── test_get.py ├── test_api_v1_timezones ├── __init__.py └── test_get.py ├── test_api_v1_user ├── __init__.py ├── test_delete.py ├── test_get.py ├── test_patch.py └── test_post.py ├── test_api_v1_users ├── __init__.py └── test_get.py ├── test_api_v1_users_user_id_feature_flags_feature_flag_key ├── __init__.py └── test_patch.py ├── test_api_v1_users_user_id_password ├── __init__.py └── test_put.py ├── test_api_v1_users_user_id_properties ├── __init__.py ├── test_get.py └── test_patch.py ├── test_api_v1_users_user_id_properties_property_key ├── __init__.py └── test_put.py ├── test_api_v1_users_user_id_refresh_claims ├── __init__.py └── test_post.py ├── test_api_v1_webhooks ├── __init__.py ├── test_get.py ├── test_patch.py └── test_post.py ├── test_api_v1_webhooks_webhook_id ├── __init__.py └── test_delete.py ├── test_oauth2_introspect ├── __init__.py └── test_post.py ├── test_oauth2_revoke ├── __init__.py └── test_post.py ├── test_oauth2_user_profile ├── __init__.py └── test_get.py └── test_oauth2_v2_user_profile ├── __init__.py └── test_get.py /.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.5.0 -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | default_stages: [commit] 2 | 3 | repos: 4 | - repo: https://github.com/pre-commit/pre-commit-hooks 5 | rev: v4.4.0 6 | hooks: 7 | - id: trailing-whitespace 8 | - id: end-of-file-fixer 9 | 10 | - repo: https://github.com/psf/black 11 | rev: 22.12.0 12 | hooks: 13 | - id: black 14 | 15 | # sets up .pre-commit-ci.yaml to ensure pre-commit dependencies stay up to date 16 | ci: 17 | autoupdate_schedule: weekly 18 | skip: [] 19 | submodules: false 20 | -------------------------------------------------------------------------------- /kinde_sdk/__init__.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | # flake8: noqa 4 | 5 | """ 6 | Kinde Management API 7 | 8 | Provides endpoints to manage your Kinde Businesses # noqa: E501 9 | 10 | The version of the OpenAPI document: 1 11 | Contact: support@kinde.com 12 | Generated by: https://openapi-generator.tech 13 | """ 14 | 15 | __version__ = "1.2.5" 16 | 17 | # import ApiClient 18 | from kinde_sdk.api_client import ApiClient 19 | 20 | # import Configuration 21 | from kinde_sdk.configuration import Configuration 22 | 23 | # import exceptions 24 | from kinde_sdk.exceptions import OpenApiException 25 | from kinde_sdk.exceptions import ApiAttributeError 26 | from kinde_sdk.exceptions import ApiTypeError 27 | from kinde_sdk.exceptions import ApiValueError 28 | from kinde_sdk.exceptions import ApiKeyError 29 | from kinde_sdk.exceptions import ApiException 30 | -------------------------------------------------------------------------------- /kinde_sdk/apis/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints then import them from 3 | # tags, paths, or path_to_api, or tag_to_api -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.apis.path_to_api import path_to_api 4 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_apis.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_apis.get import ApiForget 2 | from kinde_sdk.paths.api_v1_apis.post import ApiForpost 3 | 4 | 5 | class ApiV1Apis( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_apis_api_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_apis_api_id.get import ApiForget 2 | from kinde_sdk.paths.api_v1_apis_api_id.delete import ApiFordelete 3 | 4 | 5 | class ApiV1ApisApiId( 6 | ApiForget, 7 | ApiFordelete, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_apis_api_id_applications.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_apis_api_id_applications.patch import ApiForpatch 2 | 3 | 4 | class ApiV1ApisApiIdApplications( 5 | ApiForpatch, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_applications.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_applications.get import ApiForget 2 | from kinde_sdk.paths.api_v1_applications.post import ApiForpost 3 | 4 | 5 | class ApiV1Applications( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_applications_app_id_auth_logout_urls.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_applications_app_id_auth_logout_urls.get import ApiForget 2 | from kinde_sdk.paths.api_v1_applications_app_id_auth_logout_urls.put import ApiForput 3 | from kinde_sdk.paths.api_v1_applications_app_id_auth_logout_urls.post import ApiForpost 4 | from kinde_sdk.paths.api_v1_applications_app_id_auth_logout_urls.delete import ApiFordelete 5 | 6 | 7 | class ApiV1ApplicationsAppIdAuthLogoutUrls( 8 | ApiForget, 9 | ApiForput, 10 | ApiForpost, 11 | ApiFordelete, 12 | ): 13 | pass 14 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_applications_app_id_auth_redirect_urls.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_applications_app_id_auth_redirect_urls.get import ApiForget 2 | from kinde_sdk.paths.api_v1_applications_app_id_auth_redirect_urls.put import ApiForput 3 | from kinde_sdk.paths.api_v1_applications_app_id_auth_redirect_urls.post import ApiForpost 4 | from kinde_sdk.paths.api_v1_applications_app_id_auth_redirect_urls.delete import ApiFordelete 5 | 6 | 7 | class ApiV1ApplicationsAppIdAuthRedirectUrls( 8 | ApiForget, 9 | ApiForput, 10 | ApiForpost, 11 | ApiFordelete, 12 | ): 13 | pass 14 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_applications_application_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_applications_application_id.get import ApiForget 2 | from kinde_sdk.paths.api_v1_applications_application_id.delete import ApiFordelete 3 | from kinde_sdk.paths.api_v1_applications_application_id.patch import ApiForpatch 4 | 5 | 6 | class ApiV1ApplicationsApplicationId( 7 | ApiForget, 8 | ApiFordelete, 9 | ApiForpatch, 10 | ): 11 | pass 12 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_applications_application_id_connections.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_applications_application_id_connections.get import ApiForget 2 | 3 | 4 | class ApiV1ApplicationsApplicationIdConnections( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_applications_application_id_connections_connection_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_applications_application_id_connections_connection_id.post import ApiForpost 2 | from kinde_sdk.paths.api_v1_applications_application_id_connections_connection_id.delete import ApiFordelete 3 | 4 | 5 | class ApiV1ApplicationsApplicationIdConnectionsConnectionId( 6 | ApiForpost, 7 | ApiFordelete, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_business.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_business.get import ApiForget 2 | from kinde_sdk.paths.api_v1_business.patch import ApiForpatch 3 | 4 | 5 | class ApiV1Business( 6 | ApiForget, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_connected_apps_auth_url.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_connected_apps_auth_url.get import ApiForget 2 | 3 | 4 | class ApiV1ConnectedAppsAuthUrl( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_connected_apps_revoke.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_connected_apps_revoke.post import ApiForpost 2 | 3 | 4 | class ApiV1ConnectedAppsRevoke( 5 | ApiForpost, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_connected_apps_token.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_connected_apps_token.get import ApiForget 2 | 3 | 4 | class ApiV1ConnectedAppsToken( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_connections.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_connections.get import ApiForget 2 | from kinde_sdk.paths.api_v1_connections.post import ApiForpost 3 | 4 | 5 | class ApiV1Connections( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_connections_connection_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_connections_connection_id.get import ApiForget 2 | from kinde_sdk.paths.api_v1_connections_connection_id.delete import ApiFordelete 3 | from kinde_sdk.paths.api_v1_connections_connection_id.patch import ApiForpatch 4 | 5 | 6 | class ApiV1ConnectionsConnectionId( 7 | ApiForget, 8 | ApiFordelete, 9 | ApiForpatch, 10 | ): 11 | pass 12 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_environment_feature_flags.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_environment_feature_flags.get import ApiForget 2 | from kinde_sdk.paths.api_v1_environment_feature_flags.delete import ApiFordelete 3 | 4 | 5 | class ApiV1EnvironmentFeatureFlags( 6 | ApiForget, 7 | ApiFordelete, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_environment_feature_flags_feature_flag_key.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_environment_feature_flags_feature_flag_key.delete import ApiFordelete 2 | from kinde_sdk.paths.api_v1_environment_feature_flags_feature_flag_key.patch import ApiForpatch 3 | 4 | 5 | class ApiV1EnvironmentFeatureFlagsFeatureFlagKey( 6 | ApiFordelete, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_event_types.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_event_types.get import ApiForget 2 | 3 | 4 | class ApiV1EventTypes( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_events_event_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_events_event_id.get import ApiForget 2 | 3 | 4 | class ApiV1EventsEventId( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_feature_flags.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_feature_flags.post import ApiForpost 2 | 3 | 4 | class ApiV1FeatureFlags( 5 | ApiForpost, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_feature_flags_feature_flag_key.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_feature_flags_feature_flag_key.put import ApiForput 2 | from kinde_sdk.paths.api_v1_feature_flags_feature_flag_key.delete import ApiFordelete 3 | 4 | 5 | class ApiV1FeatureFlagsFeatureFlagKey( 6 | ApiForput, 7 | ApiFordelete, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_industries.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_industries.get import ApiForget 2 | 3 | 4 | class ApiV1Industries( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organization.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organization.get import ApiForget 2 | from kinde_sdk.paths.api_v1_organization.post import ApiForpost 3 | 4 | 5 | class ApiV1Organization( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organization_org_code.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organization_org_code.delete import ApiFordelete 2 | from kinde_sdk.paths.api_v1_organization_org_code.patch import ApiForpatch 3 | 4 | 5 | class ApiV1OrganizationOrgCode( 6 | ApiFordelete, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organization_org_code_handle.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organization_org_code_handle.delete import ApiFordelete 2 | 3 | 4 | class ApiV1OrganizationOrgCodeHandle( 5 | ApiFordelete, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations.get import ApiForget 2 | 3 | 4 | class ApiV1Organizations( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_feature_flags.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_feature_flags.get import ApiForget 2 | from kinde_sdk.paths.api_v1_organizations_org_code_feature_flags.delete import ApiFordelete 3 | 4 | 5 | class ApiV1OrganizationsOrgCodeFeatureFlags( 6 | ApiForget, 7 | ApiFordelete, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_feature_flags_feature_flag_key.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_feature_flags_feature_flag_key.delete import ApiFordelete 2 | from kinde_sdk.paths.api_v1_organizations_org_code_feature_flags_feature_flag_key.patch import ApiForpatch 3 | 4 | 5 | class ApiV1OrganizationsOrgCodeFeatureFlagsFeatureFlagKey( 6 | ApiFordelete, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_properties.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_properties.get import ApiForget 2 | from kinde_sdk.paths.api_v1_organizations_org_code_properties.patch import ApiForpatch 3 | 4 | 5 | class ApiV1OrganizationsOrgCodeProperties( 6 | ApiForget, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_properties_property_key.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_properties_property_key.put import ApiForput 2 | 3 | 4 | class ApiV1OrganizationsOrgCodePropertiesPropertyKey( 5 | ApiForput, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_users.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_users.get import ApiForget 2 | from kinde_sdk.paths.api_v1_organizations_org_code_users.post import ApiForpost 3 | from kinde_sdk.paths.api_v1_organizations_org_code_users.patch import ApiForpatch 4 | 5 | 6 | class ApiV1OrganizationsOrgCodeUsers( 7 | ApiForget, 8 | ApiForpost, 9 | ApiForpatch, 10 | ): 11 | pass 12 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_users_user_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id.delete import ApiFordelete 2 | 3 | 4 | class ApiV1OrganizationsOrgCodeUsersUserId( 5 | ApiFordelete, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_users_user_id_permissions.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_permissions.get import ApiForget 2 | from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_permissions.post import ApiForpost 3 | 4 | 5 | class ApiV1OrganizationsOrgCodeUsersUserIdPermissions( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_users_user_id_permissions_permission_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_permissions_permission_id.delete import ApiFordelete 2 | 3 | 4 | class ApiV1OrganizationsOrgCodeUsersUserIdPermissionsPermissionId( 5 | ApiFordelete, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_users_user_id_roles.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_roles.get import ApiForget 2 | from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_roles.post import ApiForpost 3 | 4 | 5 | class ApiV1OrganizationsOrgCodeUsersUserIdRoles( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_organizations_org_code_users_user_id_roles_role_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_roles_role_id.delete import ApiFordelete 2 | 3 | 4 | class ApiV1OrganizationsOrgCodeUsersUserIdRolesRoleId( 5 | ApiFordelete, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_permissions.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_permissions.get import ApiForget 2 | from kinde_sdk.paths.api_v1_permissions.post import ApiForpost 3 | 4 | 5 | class ApiV1Permissions( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_permissions_permission_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_permissions_permission_id.delete import ApiFordelete 2 | from kinde_sdk.paths.api_v1_permissions_permission_id.patch import ApiForpatch 3 | 4 | 5 | class ApiV1PermissionsPermissionId( 6 | ApiFordelete, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_properties.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_properties.get import ApiForget 2 | from kinde_sdk.paths.api_v1_properties.post import ApiForpost 3 | 4 | 5 | class ApiV1Properties( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_properties_property_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_properties_property_id.put import ApiForput 2 | from kinde_sdk.paths.api_v1_properties_property_id.delete import ApiFordelete 3 | 4 | 5 | class ApiV1PropertiesPropertyId( 6 | ApiForput, 7 | ApiFordelete, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_property_categories.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_property_categories.get import ApiForget 2 | from kinde_sdk.paths.api_v1_property_categories.post import ApiForpost 3 | 4 | 5 | class ApiV1PropertyCategories( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_property_categories_category_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_property_categories_category_id.put import ApiForput 2 | 3 | 4 | class ApiV1PropertyCategoriesCategoryId( 5 | ApiForput, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_roles.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_roles.get import ApiForget 2 | from kinde_sdk.paths.api_v1_roles.post import ApiForpost 3 | 4 | 5 | class ApiV1Roles( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_roles_role_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_roles_role_id.delete import ApiFordelete 2 | from kinde_sdk.paths.api_v1_roles_role_id.patch import ApiForpatch 3 | 4 | 5 | class ApiV1RolesRoleId( 6 | ApiFordelete, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_roles_role_id_permissions.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_roles_role_id_permissions.get import ApiForget 2 | from kinde_sdk.paths.api_v1_roles_role_id_permissions.patch import ApiForpatch 3 | 4 | 5 | class ApiV1RolesRoleIdPermissions( 6 | ApiForget, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_roles_role_id_permissions_permission_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_roles_role_id_permissions_permission_id.delete import ApiFordelete 2 | 3 | 4 | class ApiV1RolesRoleIdPermissionsPermissionId( 5 | ApiFordelete, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_subscribers.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_subscribers.get import ApiForget 2 | from kinde_sdk.paths.api_v1_subscribers.post import ApiForpost 3 | 4 | 5 | class ApiV1Subscribers( 6 | ApiForget, 7 | ApiForpost, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_subscribers_subscriber_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_subscribers_subscriber_id.get import ApiForget 2 | 3 | 4 | class ApiV1SubscribersSubscriberId( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_timezones.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_timezones.get import ApiForget 2 | 3 | 4 | class ApiV1Timezones( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_user.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_user.get import ApiForget 2 | from kinde_sdk.paths.api_v1_user.post import ApiForpost 3 | from kinde_sdk.paths.api_v1_user.delete import ApiFordelete 4 | from kinde_sdk.paths.api_v1_user.patch import ApiForpatch 5 | 6 | 7 | class ApiV1User( 8 | ApiForget, 9 | ApiForpost, 10 | ApiFordelete, 11 | ApiForpatch, 12 | ): 13 | pass 14 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_users.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_users.get import ApiForget 2 | 3 | 4 | class ApiV1Users( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_users_user_id_feature_flags_feature_flag_key.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_users_user_id_feature_flags_feature_flag_key.patch import ApiForpatch 2 | 3 | 4 | class ApiV1UsersUserIdFeatureFlagsFeatureFlagKey( 5 | ApiForpatch, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_users_user_id_password.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_users_user_id_password.put import ApiForput 2 | 3 | 4 | class ApiV1UsersUserIdPassword( 5 | ApiForput, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_users_user_id_properties.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_users_user_id_properties.get import ApiForget 2 | from kinde_sdk.paths.api_v1_users_user_id_properties.patch import ApiForpatch 3 | 4 | 5 | class ApiV1UsersUserIdProperties( 6 | ApiForget, 7 | ApiForpatch, 8 | ): 9 | pass 10 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_users_user_id_properties_property_key.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_users_user_id_properties_property_key.put import ApiForput 2 | 3 | 4 | class ApiV1UsersUserIdPropertiesPropertyKey( 5 | ApiForput, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_users_user_id_refresh_claims.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_users_user_id_refresh_claims.post import ApiForpost 2 | 3 | 4 | class ApiV1UsersUserIdRefreshClaims( 5 | ApiForpost, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_webhooks.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_webhooks.get import ApiForget 2 | from kinde_sdk.paths.api_v1_webhooks.post import ApiForpost 3 | from kinde_sdk.paths.api_v1_webhooks.patch import ApiForpatch 4 | 5 | 6 | class ApiV1Webhooks( 7 | ApiForget, 8 | ApiForpost, 9 | ApiForpatch, 10 | ): 11 | pass 12 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/api_v1_webhooks_webhook_id.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.api_v1_webhooks_webhook_id.delete import ApiFordelete 2 | 3 | 4 | class ApiV1WebhooksWebhookId( 5 | ApiFordelete, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/oauth2_introspect.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.oauth2_introspect.post import ApiForpost 2 | 3 | 4 | class Oauth2Introspect( 5 | ApiForpost, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/oauth2_revoke.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.oauth2_revoke.post import ApiForpost 2 | 3 | 4 | class Oauth2Revoke( 5 | ApiForpost, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/oauth2_user_profile.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.oauth2_user_profile.get import ApiForget 2 | 3 | 4 | class Oauth2UserProfile( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/paths/oauth2_v2_user_profile.py: -------------------------------------------------------------------------------- 1 | from kinde_sdk.paths.oauth2_v2_user_profile.get import ApiForget 2 | 3 | 4 | class Oauth2V2UserProfile( 5 | ApiForget, 6 | ): 7 | pass 8 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.apis.tag_to_api import tag_to_api 4 | 5 | import enum 6 | 7 | 8 | class TagValues(str, enum.Enum): 9 | OAUTH = "OAuth" 10 | APIS = "APIs" 11 | APPLICATIONS = "Applications" 12 | BUSINESS = "Business" 13 | INDUSTRIES = "Industries" 14 | TIMEZONES = "Timezones" 15 | CALLBACKS = "Callbacks" 16 | CONNECTED_APPS = "Connected Apps" 17 | CONNECTIONS = "Connections" 18 | ENVIRONMENTS = "Environments" 19 | FEATURE_FLAGS = "Feature Flags" 20 | ORGANIZATIONS = "Organizations" 21 | PERMISSIONS = "Permissions" 22 | PROPERTIES = "Properties" 23 | PROPERTY_CATEGORIES = "Property Categories" 24 | ROLES = "Roles" 25 | SUBSCRIBERS = "Subscribers" 26 | USERS = "Users" 27 | WEBHOOKS = "Webhooks" 28 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/apis_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_apis.post import AddApis 14 | from kinde_sdk.paths.api_v1_apis_api_id.delete import DeleteApi 15 | from kinde_sdk.paths.api_v1_apis_api_id.get import GetApi 16 | from kinde_sdk.paths.api_v1_apis.get import GetApis 17 | from kinde_sdk.paths.api_v1_apis_api_id_applications.patch import UpdateApiApplications 18 | 19 | 20 | class APIsApi( 21 | AddApis, 22 | DeleteApi, 23 | GetApi, 24 | GetApis, 25 | UpdateApiApplications, 26 | ): 27 | """NOTE: This class is auto generated by OpenAPI Generator 28 | Ref: https://openapi-generator.tech 29 | 30 | Do not edit the class manually. 31 | """ 32 | pass 33 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/business_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_business.get import GetBusiness 14 | from kinde_sdk.paths.api_v1_business.patch import UpdateBusiness 15 | 16 | 17 | class BusinessApi( 18 | GetBusiness, 19 | UpdateBusiness, 20 | ): 21 | """NOTE: This class is auto generated by OpenAPI Generator 22 | Ref: https://openapi-generator.tech 23 | 24 | Do not edit the class manually. 25 | """ 26 | pass 27 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/connected_apps_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_connected_apps_auth_url.get import GetConnectedAppAuthUrl 14 | from kinde_sdk.paths.api_v1_connected_apps_token.get import GetConnectedAppToken 15 | from kinde_sdk.paths.api_v1_connected_apps_revoke.post import RevokeConnectedAppToken 16 | 17 | 18 | class ConnectedAppsApi( 19 | GetConnectedAppAuthUrl, 20 | GetConnectedAppToken, 21 | RevokeConnectedAppToken, 22 | ): 23 | """NOTE: This class is auto generated by OpenAPI Generator 24 | Ref: https://openapi-generator.tech 25 | 26 | Do not edit the class manually. 27 | """ 28 | pass 29 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/connections_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_connections.post import CreateConnection 14 | from kinde_sdk.paths.api_v1_connections_connection_id.delete import DeleteConnection 15 | from kinde_sdk.paths.api_v1_connections_connection_id.get import GetConnection 16 | from kinde_sdk.paths.api_v1_connections.get import GetConnections 17 | from kinde_sdk.paths.api_v1_connections_connection_id.patch import UpdateConnection 18 | 19 | 20 | class ConnectionsApi( 21 | CreateConnection, 22 | DeleteConnection, 23 | GetConnection, 24 | GetConnections, 25 | UpdateConnection, 26 | ): 27 | """NOTE: This class is auto generated by OpenAPI Generator 28 | Ref: https://openapi-generator.tech 29 | 30 | Do not edit the class manually. 31 | """ 32 | pass 33 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/feature_flags_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_feature_flags.post import CreateFeatureFlag 14 | from kinde_sdk.paths.api_v1_feature_flags_feature_flag_key.delete import DeleteFeatureFlag 15 | from kinde_sdk.paths.api_v1_feature_flags_feature_flag_key.put import UpdateFeatureFlag 16 | 17 | 18 | class FeatureFlagsApi( 19 | CreateFeatureFlag, 20 | DeleteFeatureFlag, 21 | UpdateFeatureFlag, 22 | ): 23 | """NOTE: This class is auto generated by OpenAPI Generator 24 | Ref: https://openapi-generator.tech 25 | 26 | Do not edit the class manually. 27 | """ 28 | pass 29 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/industries_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_industries.get import GetIndustries 14 | 15 | 16 | class IndustriesApi( 17 | GetIndustries, 18 | ): 19 | """NOTE: This class is auto generated by OpenAPI Generator 20 | Ref: https://openapi-generator.tech 21 | 22 | Do not edit the class manually. 23 | """ 24 | pass 25 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/o_auth_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.oauth2_user_profile.get import GetUser 14 | from kinde_sdk.paths.oauth2_v2_user_profile.get import GetUserProfileV2 15 | from kinde_sdk.paths.oauth2_introspect.post import TokenIntrospection 16 | from kinde_sdk.paths.oauth2_revoke.post import TokenRevocation 17 | 18 | 19 | class OAuthApi( 20 | GetUser, 21 | GetUserProfileV2, 22 | TokenIntrospection, 23 | TokenRevocation, 24 | ): 25 | """NOTE: This class is auto generated by OpenAPI Generator 26 | Ref: https://openapi-generator.tech 27 | 28 | Do not edit the class manually. 29 | """ 30 | pass 31 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/permissions_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_permissions.post import CreatePermission 14 | from kinde_sdk.paths.api_v1_permissions_permission_id.delete import DeletePermission 15 | from kinde_sdk.paths.api_v1_permissions.get import GetPermissions 16 | from kinde_sdk.paths.api_v1_permissions_permission_id.patch import UpdatePermissions 17 | 18 | 19 | class PermissionsApi( 20 | CreatePermission, 21 | DeletePermission, 22 | GetPermissions, 23 | UpdatePermissions, 24 | ): 25 | """NOTE: This class is auto generated by OpenAPI Generator 26 | Ref: https://openapi-generator.tech 27 | 28 | Do not edit the class manually. 29 | """ 30 | pass 31 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/properties_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_properties.post import CreateProperty 14 | from kinde_sdk.paths.api_v1_properties_property_id.delete import DeleteProperty 15 | from kinde_sdk.paths.api_v1_properties.get import GetProperties 16 | from kinde_sdk.paths.api_v1_properties_property_id.put import UpdateProperty 17 | 18 | 19 | class PropertiesApi( 20 | CreateProperty, 21 | DeleteProperty, 22 | GetProperties, 23 | UpdateProperty, 24 | ): 25 | """NOTE: This class is auto generated by OpenAPI Generator 26 | Ref: https://openapi-generator.tech 27 | 28 | Do not edit the class manually. 29 | """ 30 | pass 31 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/property_categories_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_property_categories.post import CreateCategory 14 | from kinde_sdk.paths.api_v1_property_categories.get import GetCategories 15 | from kinde_sdk.paths.api_v1_property_categories_category_id.put import UpdateCategory 16 | 17 | 18 | class PropertyCategoriesApi( 19 | CreateCategory, 20 | GetCategories, 21 | UpdateCategory, 22 | ): 23 | """NOTE: This class is auto generated by OpenAPI Generator 24 | Ref: https://openapi-generator.tech 25 | 26 | Do not edit the class manually. 27 | """ 28 | pass 29 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/subscribers_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_subscribers.post import CreateSubscriber 14 | from kinde_sdk.paths.api_v1_subscribers_subscriber_id.get import GetSubscriber 15 | from kinde_sdk.paths.api_v1_subscribers.get import GetSubscribers 16 | 17 | 18 | class SubscribersApi( 19 | CreateSubscriber, 20 | GetSubscriber, 21 | GetSubscribers, 22 | ): 23 | """NOTE: This class is auto generated by OpenAPI Generator 24 | Ref: https://openapi-generator.tech 25 | 26 | Do not edit the class manually. 27 | """ 28 | pass 29 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/timezones_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_timezones.get import GetTimezones 14 | 15 | 16 | class TimezonesApi( 17 | GetTimezones, 18 | ): 19 | """NOTE: This class is auto generated by OpenAPI Generator 20 | Ref: https://openapi-generator.tech 21 | 22 | Do not edit the class manually. 23 | """ 24 | pass 25 | -------------------------------------------------------------------------------- /kinde_sdk/apis/tags/webhooks_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | from kinde_sdk.paths.api_v1_webhooks.post import CreateWebHook 14 | from kinde_sdk.paths.api_v1_webhooks_webhook_id.delete import DeleteWebHook 15 | from kinde_sdk.paths.api_v1_events_event_id.get import GetEvent 16 | from kinde_sdk.paths.api_v1_event_types.get import GetEventTypes 17 | from kinde_sdk.paths.api_v1_webhooks.get import GetWebHooks 18 | from kinde_sdk.paths.api_v1_webhooks.patch import UpdateWebHook 19 | 20 | 21 | class WebhooksApi( 22 | CreateWebHook, 23 | DeleteWebHook, 24 | GetEvent, 25 | GetEventTypes, 26 | GetWebHooks, 27 | UpdateWebHook, 28 | ): 29 | """NOTE: This class is auto generated by OpenAPI Generator 30 | Ref: https://openapi-generator.tech 31 | 32 | Do not edit the class manually. 33 | """ 34 | pass 35 | -------------------------------------------------------------------------------- /kinde_sdk/docs/models/ApiResult.md: -------------------------------------------------------------------------------- 1 | # kinde_sdk.model.api_result.ApiResult 2 | 3 | ## Model Type Info 4 | Input Type | Accessed Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | dict, frozendict.frozendict, | frozendict.frozendict, | | 7 | 8 | ### Dictionary Keys 9 | Key | Input Type | Accessed Type | Description | Notes 10 | ------------ | ------------- | ------------- | ------------- | ------------- 11 | **result** | str, | str, | The result of the api operation. | [optional] 12 | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] 13 | 14 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 15 | 16 | -------------------------------------------------------------------------------- /kinde_sdk/docs/models/Applications.md: -------------------------------------------------------------------------------- 1 | # kinde_sdk.model.applications.Applications 2 | 3 | ## Model Type Info 4 | Input Type | Accessed Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | dict, frozendict.frozendict, | frozendict.frozendict, | | 7 | 8 | ### Dictionary Keys 9 | Key | Input Type | Accessed Type | Description | Notes 10 | ------------ | ------------- | ------------- | ------------- | ------------- 11 | **id** | str, | str, | | [optional] 12 | **name** | str, | str, | | [optional] 13 | **type** | str, | str, | | [optional] 14 | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] 15 | 16 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 17 | 18 | -------------------------------------------------------------------------------- /kinde_sdk/docs/models/Category.md: -------------------------------------------------------------------------------- 1 | # kinde_sdk.model.category.Category 2 | 3 | ## Model Type Info 4 | Input Type | Accessed Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | dict, frozendict.frozendict, | frozendict.frozendict, | | 7 | 8 | ### Dictionary Keys 9 | Key | Input Type | Accessed Type | Description | Notes 10 | ------------ | ------------- | ------------- | ------------- | ------------- 11 | **id** | str, | str, | | [optional] 12 | **name** | str, | str, | | [optional] 13 | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] 14 | 15 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 16 | 17 | -------------------------------------------------------------------------------- /kinde_sdk/docs/models/Error.md: -------------------------------------------------------------------------------- 1 | # kinde_sdk.model.error.Error 2 | 3 | ## Model Type Info 4 | Input Type | Accessed Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | dict, frozendict.frozendict, | frozendict.frozendict, | | 7 | 8 | ### Dictionary Keys 9 | Key | Input Type | Accessed Type | Description | Notes 10 | ------------ | ------------- | ------------- | ------------- | ------------- 11 | **code** | str, | str, | Error code. | [optional] 12 | **message** | str, | str, | Error message. | [optional] 13 | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] 14 | 15 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 16 | 17 | -------------------------------------------------------------------------------- /kinde_sdk/docs/models/OrganizationUsers.md: -------------------------------------------------------------------------------- 1 | # kinde_sdk.model.organization_users.OrganizationUsers 2 | 3 | ## Model Type Info 4 | Input Type | Accessed Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | list, tuple, | tuple, | | 7 | 8 | ### Tuple Items 9 | Class Name | Input Type | Accessed Type | Description | Notes 10 | ------------- | ------------- | ------------- | ------------- | ------------- 11 | [**OrganizationUser**](OrganizationUser.md) | [**OrganizationUser**](OrganizationUser.md) | [**OrganizationUser**](OrganizationUser.md) | | 12 | 13 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 14 | 15 | -------------------------------------------------------------------------------- /kinde_sdk/docs/models/SuccessResponse.md: -------------------------------------------------------------------------------- 1 | # kinde_sdk.model.success_response.SuccessResponse 2 | 3 | ## Model Type Info 4 | Input Type | Accessed Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | dict, frozendict.frozendict, | frozendict.frozendict, | | 7 | 8 | ### Dictionary Keys 9 | Key | Input Type | Accessed Type | Description | Notes 10 | ------------ | ------------- | ------------- | ------------- | ------------- 11 | **message** | str, | str, | | [optional] 12 | **code** | str, | str, | | [optional] 13 | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] 14 | 15 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 16 | 17 | -------------------------------------------------------------------------------- /kinde_sdk/docs/models/Users.md: -------------------------------------------------------------------------------- 1 | # kinde_sdk.model.users.Users 2 | 3 | Array of users. 4 | 5 | ## Model Type Info 6 | Input Type | Accessed Type | Description | Notes 7 | ------------ | ------------- | ------------- | ------------- 8 | list, tuple, | tuple, | Array of users. | 9 | 10 | ### Tuple Items 11 | Class Name | Input Type | Accessed Type | Description | Notes 12 | ------------- | ------------- | ------------- | ------------- | ------------- 13 | [**User**](User.md) | [**User**](User.md) | [**User**](User.md) | | 14 | 15 | [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) 16 | 17 | -------------------------------------------------------------------------------- /kinde_sdk/model/__init__.py: -------------------------------------------------------------------------------- 1 | # we can not import model classes here because that would create a circular 2 | # reference which would not work in python2 3 | # do not import all models into this module because that uses a lot of memory and stack frames 4 | # if you need the ability to import all models from one package, import them with 5 | # from kinde_sdk.models import ModelA, ModelB 6 | -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_apis/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_apis import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APIS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_apis_api_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_apis_api_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APIS_API_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_apis_api_id_applications/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_apis_api_id_applications import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APIS_API_ID_APPLICATIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_applications/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_applications import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APPLICATIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_applications_app_id_auth_logout_urls/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_applications_app_id_auth_logout_urls import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APPLICATIONS_APP_ID_AUTH_LOGOUT_URLS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_applications_app_id_auth_redirect_urls/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_applications_app_id_auth_redirect_urls import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APPLICATIONS_APP_ID_AUTH_REDIRECT_URLS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_applications_application_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_applications_application_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APPLICATIONS_APPLICATION_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_applications_application_id_connections/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_applications_application_id_connections import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APPLICATIONS_APPLICATION_ID_CONNECTIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_applications_application_id_connections_connection_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_applications_application_id_connections_connection_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_APPLICATIONS_APPLICATION_ID_CONNECTIONS_CONNECTION_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_business/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_business import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_BUSINESS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_connected_apps_auth_url/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_connected_apps_auth_url import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_CONNECTED_APPS_AUTH_URL -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_connected_apps_revoke/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_connected_apps_revoke import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_CONNECTED_APPS_REVOKE -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_connected_apps_token/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_connected_apps_token import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_CONNECTED_APPS_TOKEN -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_connections/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_connections import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_CONNECTIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_connections_connection_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_connections_connection_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_CONNECTIONS_CONNECTION_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_environment_feature_flags/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_environment_feature_flags import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ENVIRONMENT_FEATURE_FLAGS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_environment_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_environment_feature_flags_feature_flag_key import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ENVIRONMENT_FEATURE_FLAGS_FEATURE_FLAG_KEY -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_event_types/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_event_types import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_EVENT_TYPES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_events_event_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_events_event_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_EVENTS_EVENT_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_feature_flags/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_feature_flags import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_FEATURE_FLAGS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_feature_flags_feature_flag_key import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_FEATURE_FLAGS_FEATURE_FLAG_KEY -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_industries/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_industries import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_INDUSTRIES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organization/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organization import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATION -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organization_org_code/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organization_org_code import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATION_ORG_CODE -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organization_org_code_handle/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organization_org_code_handle import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATION_ORG_CODE_HANDLE -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_feature_flags/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_feature_flags import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_FEATURE_FLAGS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_feature_flags_feature_flag_key import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_FEATURE_FLAGS_FEATURE_FLAG_KEY -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_properties/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_properties import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_PROPERTIES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_properties_property_key/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_properties_property_key import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_PROPERTIES_PROPERTY_KEY -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_users/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_users import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_USERS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_users_user_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_USERS_USER_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_users_user_id_permissions/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_permissions import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_USERS_USER_ID_PERMISSIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_users_user_id_permissions_permission_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_permissions_permission_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_USERS_USER_ID_PERMISSIONS_PERMISSION_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_users_user_id_roles/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_roles import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_USERS_USER_ID_ROLES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_organizations_org_code_users_user_id_roles_role_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_organizations_org_code_users_user_id_roles_role_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ORGANIZATIONS_ORG_CODE_USERS_USER_ID_ROLES_ROLE_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_permissions/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_permissions import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_PERMISSIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_permissions_permission_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_permissions_permission_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_PERMISSIONS_PERMISSION_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_properties/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_properties import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_PROPERTIES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_properties_property_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_properties_property_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_PROPERTIES_PROPERTY_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_property_categories/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_property_categories import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_PROPERTY_CATEGORIES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_property_categories_category_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_property_categories_category_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_PROPERTY_CATEGORIES_CATEGORY_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_roles/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_roles import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ROLES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_roles_role_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_roles_role_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ROLES_ROLE_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_roles_role_id_permissions/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_roles_role_id_permissions import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ROLES_ROLE_ID_PERMISSIONS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_roles_role_id_permissions_permission_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_roles_role_id_permissions_permission_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_ROLES_ROLE_ID_PERMISSIONS_PERMISSION_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_subscribers/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_subscribers import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_SUBSCRIBERS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_subscribers_subscriber_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_subscribers_subscriber_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_SUBSCRIBERS_SUBSCRIBER_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_timezones/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_timezones import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_TIMEZONES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_user/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_user import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_USER -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_users/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_users import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_USERS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_users_user_id_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_users_user_id_feature_flags_feature_flag_key import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_USERS_USER_ID_FEATURE_FLAGS_FEATURE_FLAG_KEY -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_users_user_id_password/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_users_user_id_password import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_USERS_USER_ID_PASSWORD -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_users_user_id_properties/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_users_user_id_properties import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_USERS_USER_ID_PROPERTIES -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_users_user_id_properties_property_key/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_users_user_id_properties_property_key import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_USERS_USER_ID_PROPERTIES_PROPERTY_KEY -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_users_user_id_refresh_claims/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_users_user_id_refresh_claims import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_USERS_USER_ID_REFRESH_CLAIMS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_webhooks/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_webhooks import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_WEBHOOKS -------------------------------------------------------------------------------- /kinde_sdk/paths/api_v1_webhooks_webhook_id/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.api_v1_webhooks_webhook_id import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.API_V1_WEBHOOKS_WEBHOOK_ID -------------------------------------------------------------------------------- /kinde_sdk/paths/oauth2_introspect/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.oauth2_introspect import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.OAUTH2_INTROSPECT -------------------------------------------------------------------------------- /kinde_sdk/paths/oauth2_revoke/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.oauth2_revoke import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.OAUTH2_REVOKE -------------------------------------------------------------------------------- /kinde_sdk/paths/oauth2_user_profile/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.oauth2_user_profile import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.OAUTH2_USER_PROFILE -------------------------------------------------------------------------------- /kinde_sdk/paths/oauth2_v2_user_profile/__init__.py: -------------------------------------------------------------------------------- 1 | # do not import all endpoints into this module because that uses a lot of memory and stack frames 2 | # if you need the ability to import all endpoints from this module, import them with 3 | # from kinde_sdk.paths.oauth2_v2_user_profile import Api 4 | 5 | from kinde_sdk.paths import PathValues 6 | 7 | path = PathValues.OAUTH2_V2_USER_PROFILE -------------------------------------------------------------------------------- /kinde_sdk/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/kinde_sdk/test/__init__.py -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/kinde_sdk/test/test_models/__init__.py -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_api.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.api import Api 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestApi(unittest.TestCase): 21 | """Api unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_api_result.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.api_result import ApiResult 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestApiResult(unittest.TestCase): 21 | """ApiResult unit test stubs""" 22 | 23 | def test_api_result(self): 24 | inst = ApiResult({}) 25 | with self.assertRaises(KeyError): 26 | inst["result"] 27 | assert inst.get_item_oapg("result") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.result 30 | 31 | inst = ApiResult(result="") 32 | result = inst["result"] 33 | assert result == "" 34 | 35 | if __name__ == "__main__": 36 | unittest.main() 37 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_apis.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.apis import Apis 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestApis(unittest.TestCase): 21 | """Apis unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_applications.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.applications import Applications 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestApplications(unittest.TestCase): 21 | """Applications unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_category.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.category import Category 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCategory(unittest.TestCase): 21 | """Category unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_connection.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.connection import Connection 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestConnection(unittest.TestCase): 21 | """Connection unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_application_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_application_response import CreateApplicationResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCreateApplicationResponse(unittest.TestCase): 21 | """CreateApplicationResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_category_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_category_response import CreateCategoryResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCreateCategoryResponse(unittest.TestCase): 21 | """CreateCategoryResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_connection_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_connection_response import CreateConnectionResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCreateConnectionResponse(unittest.TestCase): 21 | """CreateConnectionResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_organization_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_organization_response import CreateOrganizationResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCreateOrganizationResponse(unittest.TestCase): 21 | """CreateOrganizationResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_property_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_property_response import CreatePropertyResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCreatePropertyResponse(unittest.TestCase): 21 | """CreatePropertyResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_subscriber_success_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_subscriber_success_response import CreateSubscriberSuccessResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCreateSubscriberSuccessResponse(unittest.TestCase): 21 | """CreateSubscriberSuccessResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_user_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_user_response import CreateUserResponse 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestCreateUserResponse(unittest.TestCase): 21 | """CreateUserResponse unit test stubs""" 22 | 23 | def test_create_user_response(self): 24 | inst = CreateUserResponse({}) 25 | with self.assertRaises(KeyError): 26 | inst["id"] 27 | assert inst.get_item_oapg("id") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.id 30 | 31 | inst = CreateUserResponse(id="") 32 | id = inst["id"] 33 | assert id == "" 34 | 35 | 36 | if __name__ == '__main__': 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_create_webhook_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.create_webhook_response import CreateWebhookResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestCreateWebhookResponse(unittest.TestCase): 21 | """CreateWebhookResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_delete_webhook_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.delete_webhook_response import DeleteWebhookResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestDeleteWebhookResponse(unittest.TestCase): 21 | """DeleteWebhookResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_error.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.error import Error 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestError(unittest.TestCase): 21 | """Error unit test stubs""" 22 | 23 | def test_error(self): 24 | inst = Error({}) 25 | with self.assertRaises(KeyError): 26 | inst["code"] 27 | assert inst.get_item_oapg("code") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.code 30 | 31 | inst = Error(code="") 32 | code = inst["code"] 33 | assert code == "" 34 | 35 | 36 | if __name__ == "__main__": 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_event_type.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.event_type import EventType 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestEventType(unittest.TestCase): 21 | """EventType unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_application_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_application_response import GetApplicationResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetApplicationResponse(unittest.TestCase): 21 | """GetApplicationResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_applications_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_applications_response import GetApplicationsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetApplicationsResponse(unittest.TestCase): 21 | """GetApplicationsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_categories_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_categories_response import GetCategoriesResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetCategoriesResponse(unittest.TestCase): 21 | """GetCategoriesResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_connections_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_connections_response import GetConnectionsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetConnectionsResponse(unittest.TestCase): 21 | """GetConnectionsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_environment_feature_flags_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_environment_feature_flags_response import GetEnvironmentFeatureFlagsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetEnvironmentFeatureFlagsResponse(unittest.TestCase): 21 | """GetEnvironmentFeatureFlagsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_event_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_event_response import GetEventResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetEventResponse(unittest.TestCase): 21 | """GetEventResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_event_types_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_event_types_response import GetEventTypesResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetEventTypesResponse(unittest.TestCase): 21 | """GetEventTypesResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_organization_feature_flags_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_organization_feature_flags_response import GetOrganizationFeatureFlagsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetOrganizationFeatureFlagsResponse(unittest.TestCase): 21 | """GetOrganizationFeatureFlagsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_organization_users_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_organization_users_response import GetOrganizationUsersResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetOrganizationUsersResponse(unittest.TestCase): 21 | """GetOrganizationUsersResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_organizations_user_permissions_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_organizations_user_permissions_response import GetOrganizationsUserPermissionsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetOrganizationsUserPermissionsResponse(unittest.TestCase): 21 | """GetOrganizationsUserPermissionsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_organizations_user_roles_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_organizations_user_roles_response import GetOrganizationsUserRolesResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetOrganizationsUserRolesResponse(unittest.TestCase): 21 | """GetOrganizationsUserRolesResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_permissions_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_permissions_response import GetPermissionsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetPermissionsResponse(unittest.TestCase): 21 | """GetPermissionsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_properties_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_properties_response import GetPropertiesResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetPropertiesResponse(unittest.TestCase): 21 | """GetPropertiesResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_property_values_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_property_values_response import GetPropertyValuesResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetPropertyValuesResponse(unittest.TestCase): 21 | """GetPropertyValuesResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_redirect_callback_urls_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_redirect_callback_urls_response import GetRedirectCallbackUrlsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetRedirectCallbackUrlsResponse(unittest.TestCase): 21 | """GetRedirectCallbackUrlsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_roles_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_roles_response import GetRolesResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetRolesResponse(unittest.TestCase): 21 | """GetRolesResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_subscriber_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_subscriber_response import GetSubscriberResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetSubscriberResponse(unittest.TestCase): 21 | """GetSubscriberResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_subscribers_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_subscribers_response import GetSubscribersResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetSubscribersResponse(unittest.TestCase): 21 | """GetSubscribersResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_get_webhooks_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.get_webhooks_response import GetWebhooksResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestGetWebhooksResponse(unittest.TestCase): 21 | """GetWebhooksResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_logout_redirect_urls.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.logout_redirect_urls import LogoutRedirectUrls 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestLogoutRedirectUrls(unittest.TestCase): 21 | """LogoutRedirectUrls unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_model_property.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.model_property import ModelProperty 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestModelProperty(unittest.TestCase): 21 | """ModelProperty unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_organization.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.organization import Organization 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestOrganization(unittest.TestCase): 21 | """Organization unit test stubs""" 22 | 23 | def test_organization(self): 24 | inst = Organization({}) 25 | with self.assertRaises(KeyError): 26 | inst["code"] 27 | assert inst.get_item_oapg("code") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.code 30 | 31 | inst = Organization(code="") 32 | code = inst["code"] 33 | assert code == "" 34 | 35 | 36 | if __name__ == "__main__": 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_organization_user.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.organization_user import OrganizationUser 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestOrganizationUser(unittest.TestCase): 21 | """OrganizationUser unit test stubs""" 22 | 23 | def test_organization_user(self): 24 | inst = OrganizationUser({}) 25 | with self.assertRaises(KeyError): 26 | inst["id"] 27 | assert inst.get_item_oapg("id") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.id 30 | 31 | inst = OrganizationUser(id="") 32 | id = inst["id"] 33 | assert id == "" 34 | 35 | 36 | if __name__ == "__main__": 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_organization_user_permission.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.organization_user_permission import OrganizationUserPermission 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestOrganizationUserPermission(unittest.TestCase): 21 | """OrganizationUserPermission unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_organization_user_role.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.organization_user_role import OrganizationUserRole 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestOrganizationUserRole(unittest.TestCase): 21 | """OrganizationUserRole unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_organization_user_role_permissions.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.organization_user_role_permissions import OrganizationUserRolePermissions 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestOrganizationUserRolePermissions(unittest.TestCase): 21 | """OrganizationUserRolePermissions unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_organization_users.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.organization_users import OrganizationUsers 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestOrganizationUsers(unittest.TestCase): 21 | """OrganizationUsers unit test stubs""" 22 | 23 | _configuration = configuration.Configuration() 24 | 25 | 26 | if __name__ == "__main__": 27 | unittest.main() 28 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_permissions.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.permissions import Permissions 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestPermissions(unittest.TestCase): 21 | """Permissions unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_property_value.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.property_value import PropertyValue 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestPropertyValue(unittest.TestCase): 21 | """PropertyValue unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_redirect_callback_urls.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.redirect_callback_urls import RedirectCallbackUrls 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestRedirectCallbackUrls(unittest.TestCase): 21 | """RedirectCallbackUrls unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_role.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.role import Role 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestRole(unittest.TestCase): 21 | """Role unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_roles.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.roles import Roles 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestRoles(unittest.TestCase): 21 | """Roles unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_roles_permission_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.roles_permission_response import RolesPermissionResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestRolesPermissionResponse(unittest.TestCase): 21 | """RolesPermissionResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_subscriber.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.subscriber import Subscriber 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestSubscriber(unittest.TestCase): 21 | """Subscriber unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_subscribers_subscriber.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.subscribers_subscriber import SubscribersSubscriber 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestSubscribersSubscriber(unittest.TestCase): 21 | """SubscribersSubscriber unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_success_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.success_response import SuccessResponse 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestSuccessResponse(unittest.TestCase): 21 | """SuccessResponse unit test stubs""" 22 | 23 | def test_success_response(self): 24 | inst = SuccessResponse({}) 25 | with self.assertRaises(KeyError): 26 | inst["message"] 27 | assert inst.get_item_oapg("message") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.message 30 | 31 | inst = SuccessResponse(message="success") 32 | message = inst["message"] 33 | assert message == "success" 34 | 35 | if __name__ == "__main__": 36 | unittest.main() 37 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_token_error_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.token_error_response import TokenErrorResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestTokenErrorResponse(unittest.TestCase): 21 | """TokenErrorResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_token_introspect.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.token_introspect import TokenIntrospect 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestTokenIntrospect(unittest.TestCase): 21 | """TokenIntrospect unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_update_organization_users_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.update_organization_users_response import UpdateOrganizationUsersResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestUpdateOrganizationUsersResponse(unittest.TestCase): 21 | """UpdateOrganizationUsersResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_update_role_permissions_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.update_role_permissions_response import UpdateRolePermissionsResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestUpdateRolePermissionsResponse(unittest.TestCase): 21 | """UpdateRolePermissionsResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_update_user_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.update_user_response import UpdateUserResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestUpdateUserResponse(unittest.TestCase): 21 | """UpdateUserResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_update_webhook_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.update_webhook_response import UpdateWebhookResponse 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestUpdateWebhookResponse(unittest.TestCase): 21 | """UpdateWebhookResponse unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_user.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.user import User 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestUser(unittest.TestCase): 21 | """User unit test stubs""" 22 | 23 | def test_user(self): 24 | inst = User({}) 25 | with self.assertRaises(KeyError): 26 | inst["id"] 27 | assert inst.get_item_oapg("id") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.id 30 | 31 | inst = User(id="") 32 | id = inst["id"] 33 | assert id == "" 34 | 35 | 36 | if __name__ == "__main__": 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_user_identity.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.user_identity import UserIdentity 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestUserIdentity(unittest.TestCase): 21 | """UserIdentity unit test stubs""" 22 | 23 | def test_user_identity(self): 24 | inst = UserIdentity({}) 25 | with self.assertRaises(KeyError): 26 | inst["type"] 27 | assert inst.get_item_oapg("type") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.type 30 | 31 | inst = UserIdentity(type="") 32 | type = inst["type"] 33 | assert type == "" 34 | 35 | 36 | if __name__ == "__main__": 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_user_profile.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.user_profile import UserProfile 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestUserProfile(unittest.TestCase): 21 | """UserProfile unit test stubs""" 22 | 23 | def test_user_profile(self): 24 | inst = UserProfile({}) 25 | with self.assertRaises(KeyError): 26 | inst["id"] 27 | assert inst.get_item_oapg("id") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.id 30 | 31 | inst = UserProfile(id="") 32 | id = inst["id"] 33 | assert id == "" 34 | 35 | 36 | if __name__ == "__main__": 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_user_profile_v2.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.user_profile_v2 import UserProfileV2 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestUserProfileV2(unittest.TestCase): 21 | """UserProfileV2 unit test stubs""" 22 | 23 | def test_user_profile_v2(self): 24 | inst = UserProfileV2({}) 25 | with self.assertRaises(KeyError): 26 | inst["id"] 27 | assert inst.get_item_oapg("id") is schemas.unset 28 | with self.assertRaises(AttributeError): 29 | inst.id 30 | 31 | inst = UserProfileV2(id="") 32 | id = inst["id"] 33 | assert id == "" 34 | 35 | 36 | if __name__ == "__main__": 37 | unittest.main() 38 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_users.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.users import Users 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestUsers(unittest.TestCase): 21 | """Users unit test stubs""" 22 | 23 | _configuration = configuration.Configuration() 24 | 25 | 26 | if __name__ == "__main__": 27 | unittest.main() 28 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_users_response.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.users_response import UsersResponse 17 | from kinde_sdk import schemas 18 | 19 | 20 | class TestUsersResponse(unittest.TestCase): 21 | """UsersResponse unit test stubs""" 22 | def test_users_response(self): 23 | inst = UsersResponse({}) 24 | with self.assertRaises(KeyError): 25 | inst["code"] 26 | assert inst.get_item_oapg("code") is schemas.unset 27 | with self.assertRaises(AttributeError): 28 | inst.code 29 | 30 | inst = UsersResponse(code="") 31 | code = inst["code"] 32 | assert code == "" 33 | 34 | 35 | if __name__ == '__main__': 36 | unittest.main() 37 | -------------------------------------------------------------------------------- /kinde_sdk/test/test_models/test_webhook.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | Kinde Management API 5 | 6 | Provides endpoints to manage your Kinde Businesses # noqa: E501 7 | 8 | The version of the OpenAPI document: 1 9 | Contact: support@kinde.com 10 | Generated by: https://openapi-generator.tech 11 | """ 12 | 13 | import unittest 14 | 15 | import kinde_sdk 16 | from kinde_sdk.model.webhook import Webhook 17 | from kinde_sdk import configuration 18 | 19 | 20 | class TestWebhook(unittest.TestCase): 21 | """Webhook unit test stubs""" 22 | _configuration = configuration.Configuration() 23 | 24 | 25 | if __name__ == '__main__': 26 | unittest.main() 27 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "kinde-python-sdk" 3 | version = "1.2.9" 4 | authors = [ 5 | { name = "Kinde Engineering", email = "engineering@kinde.com" }, 6 | ] 7 | description = "Connect your app to the Kinde platform" 8 | readme = "README.md" 9 | requires-python = ">=3.8" 10 | classifiers = [ 11 | "Development Status :: 5 - Production/Stable", 12 | "License :: OSI Approved :: MIT License", 13 | "Natural Language :: English", 14 | "Operating System :: OS Independent", 15 | "Programming Language :: Python", 16 | "Programming Language :: Python :: 3.8", 17 | "Programming Language :: Python :: 3.9", 18 | ] 19 | dependencies = [ 20 | "urllib3", 21 | "python-dateutil", 22 | "Authlib", 23 | "pyjwt", 24 | "requests", 25 | "typing-extensions >=4.11.0", 26 | "frozendict >=2.4.3", 27 | "certifi >=2024.7.4", 28 | ] 29 | [project.urls] 30 | "Homepage" = "https://github.com/kinde-oss/kinde-python-sdk" 31 | [build-system] 32 | requires = ["setuptools >= 61.0"] 33 | build-backend = "setuptools.build_meta" 34 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | urllib3>=2.2.2 # https://github.com/urllib3/urllib3 2 | python-dateutil>=2.9.0 # https://github.com/dateutil/dateutil 3 | Authlib>=1.3.1 # https://github.com/lepture/authlib 4 | pyjwt>=2.8.0 # https://github.com/jpadilla/pyjwt 5 | requests>=2.32.0 # https://github.com/psf/requests 6 | typing-extensions>=4.11 # https://github.com/python/typing_extensions 7 | frozendict>=2.4 # https://github.com/Marco-Sulla/python-frozendict 8 | certifi>=2024.12.14 # https://github.com/certifi/python-certifi -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_apis/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_apis/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_apis import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Apis(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Apis unit test stubs 24 | List APIs # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_apis/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_apis import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Apis(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Apis unit test stubs 24 | Add APIs # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_apis_api_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_apis_api_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_apis_api_id/test_delete.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_apis_api_id import delete # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1ApisApiId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1ApisApiId unit test stubs 24 | Delete API # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = delete.ApiFordelete(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_apis_api_id/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_apis_api_id import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1ApisApiId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1ApisApiId unit test stubs 24 | List API details # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_apis_api_id_applications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_apis_api_id_applications/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_applications/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_applications import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Applications(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Applications unit test stubs 24 | List Applications # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_applications import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Applications(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Applications unit test stubs 24 | Create Application # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications_app_id_auth_logout_urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_applications_app_id_auth_logout_urls/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications_app_id_auth_redirect_urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_applications_app_id_auth_redirect_urls/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications_application_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_applications_application_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications_application_id/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_applications_application_id import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1ApplicationsApplicationId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1ApplicationsApplicationId unit test stubs 24 | Get Application # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications_application_id_connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_applications_application_id_connections/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_applications_application_id_connections_connection_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_applications_application_id_connections_connection_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_business/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_business/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_business/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_business import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Business(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Business unit test stubs 24 | List business details # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_business/test_patch.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_business import patch # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Business(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Business unit test stubs 24 | Update business details # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = patch.ApiForpatch(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connected_apps_auth_url/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_connected_apps_auth_url/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connected_apps_revoke/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_connected_apps_revoke/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connected_apps_token/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_connected_apps_token/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_connections/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connections/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_connections import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Connections(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Connections unit test stubs 24 | List Connections # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connections/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_connections import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Connections(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Connections unit test stubs 24 | Create Connection # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connections_connection_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_connections_connection_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_connections_connection_id/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_connections_connection_id import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1ConnectionsConnectionId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1ConnectionsConnectionId unit test stubs 24 | Get Connection # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_environment_feature_flags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_environment_feature_flags/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_environment_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_environment_feature_flags_feature_flag_key/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_event_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_event_types/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_event_types/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_event_types import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1EventTypes(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1EventTypes unit test stubs 24 | List Event Types # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_events_event_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_events_event_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_events_event_id/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_events_event_id import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1EventsEventId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1EventsEventId unit test stubs 24 | Get Event # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_feature_flags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_feature_flags/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_feature_flags/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_feature_flags import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1FeatureFlags(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1FeatureFlags unit test stubs 24 | Create a new feature flag # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_feature_flags_feature_flag_key/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_industries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_industries/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_industries/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_industries import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Industries(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Industries unit test stubs 24 | List industries and industry keys. # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organization/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_org_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organization_org_code/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_org_code/test_delete.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_organization_org_code import delete # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1OrganizationOrgCode(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1OrganizationOrgCode unit test stubs 24 | Delete Organization # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = delete.ApiFordelete(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | response_body = '' 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_org_code/test_patch.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_organization_org_code import patch # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1OrganizationOrgCode(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1OrganizationOrgCode unit test stubs 24 | Update Organization # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = patch.ApiForpatch(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_org_code_handle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organization_org_code_handle/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organization_users/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_users/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk import configuration, schemas, api_client 16 | from kinde_sdk.test.test_kinde_api_client import TestKindeApiClientAuthorizationCode 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1OrganizationUsers(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1OrganizationUsers unit test stubs 24 | List Organization Users # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | kinde_api_client = TestKindeApiClientAuthorizationCode() 30 | kinde_api_client.setUp() 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_users/test_patch.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk import configuration, schemas, api_client 16 | 17 | from .. import ApiTestMixin 18 | 19 | 20 | class TestApiV1OrganizationUsers(ApiTestMixin, unittest.TestCase): 21 | """ 22 | ApiV1OrganizationUsers unit test stubs 23 | Remove Users from an Organization # noqa: E501 24 | """ 25 | _configuration = configuration.Configuration() 26 | 27 | def setUp(self): 28 | used_api_client = api_client.ApiClient(configuration=self._configuration) 29 | self.api = patch.ApiForpatch(api_client=used_api_client) # noqa: E501 30 | 31 | def tearDown(self): 32 | pass 33 | 34 | response_status = 200 35 | 36 | 37 | 38 | 39 | 40 | 41 | if __name__ == '__main__': 42 | unittest.main() 43 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organization_users/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk import configuration, schemas, api_client 16 | from kinde_sdk.test.test_kinde_api_client import TestKindeApiClientAuthorizationCode 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1OrganizationUsers(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1OrganizationUsers unit test stubs 24 | Assign Users to an Organization # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | kinde_api_client = TestKindeApiClientAuthorizationCode() 30 | kinde_api_client.setUp() 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_feature_flags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_feature_flags/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_feature_flags_feature_flag_key/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_properties/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_properties_property_key/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_properties_property_key/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_users/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_users_user_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_users_user_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_users_user_id_permissions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_users_user_id_permissions/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_users_user_id_permissions_permission_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_users_user_id_permissions_permission_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_users_user_id_roles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_users_user_id_roles/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_organizations_org_code_users_user_id_roles_role_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_organizations_org_code_users_user_id_roles_role_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_permissions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_permissions/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_permissions/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_permissions import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Permissions(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Permissions unit test stubs 24 | List Permissions # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_permissions/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_permissions import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Permissions(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Permissions unit test stubs 24 | Create Permission # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_permissions_permission_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_permissions_permission_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_permissions_permission_id/test_patch.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_permissions_permission_id import patch # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1PermissionsPermissionId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1PermissionsPermissionId unit test stubs 24 | Update Permission # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = patch.ApiForpatch(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_properties/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_properties/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_properties import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Properties(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Properties unit test stubs 24 | List properties # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_properties/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_properties import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Properties(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Properties unit test stubs 24 | Create Property # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_properties_property_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_properties_property_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_properties_property_id/test_delete.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_properties_property_id import delete # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1PropertiesPropertyId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1PropertiesPropertyId unit test stubs 24 | Delete Property # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = delete.ApiFordelete(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_properties_property_id/test_put.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_properties_property_id import put # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1PropertiesPropertyId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1PropertiesPropertyId unit test stubs 24 | Update Property # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = put.ApiForput(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_property_categories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_property_categories/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_property_categories/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_property_categories import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1PropertyCategories(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1PropertyCategories unit test stubs 24 | List categories # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_property_categories/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_property_categories import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1PropertyCategories(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1PropertyCategories unit test stubs 24 | Create Category # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_property_categories_category_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_property_categories_category_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_role/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_role/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_role/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_role import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Role(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Role unit test stubs 24 | Create Role # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_roles/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_roles import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Roles(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Roles unit test stubs 24 | List Roles # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_roles import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Roles(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Roles unit test stubs 24 | Create Role # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles_role_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_roles_role_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles_role_id/test_delete.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_roles_role_id import delete # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1RolesRoleId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1RolesRoleId unit test stubs 24 | Delete Role # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = delete.ApiFordelete(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles_role_id/test_patch.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_roles_role_id import patch # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1RolesRoleId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1RolesRoleId unit test stubs 24 | Update Role # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = patch.ApiForpatch(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles_role_id_permission_permission_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_roles_role_id_permission_permission_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles_role_id_permissions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_roles_role_id_permissions/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles_role_id_permissions/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_roles_role_id_permissions import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1RolesRoleIdPermissions(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1RolesRoleIdPermissions unit test stubs 24 | Get Role Permissions # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_roles_role_id_permissions_permission_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_roles_role_id_permissions_permission_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_subscribers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_subscribers/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_subscribers/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_subscribers import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Subscribers(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Subscribers unit test stubs 24 | List Subscribers # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_subscribers/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_subscribers import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Subscribers(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Subscribers unit test stubs 24 | Create Subscriber # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_subscribers_subscriber_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_subscribers_subscriber_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_subscribers_subscriber_id/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_subscribers_subscriber_id import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1SubscribersSubscriberId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1SubscribersSubscriberId unit test stubs 24 | Get Subscriber # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_timezones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_timezones/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_timezones/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_timezones import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Timezones(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Timezones unit test stubs 24 | List timezones and timezone IDs. # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 201 36 | 37 | 38 | 39 | 40 | if __name__ == '__main__': 41 | unittest.main() 42 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_user/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_user/test_patch.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_user import patch # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1User(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1User unit test stubs 24 | Update User # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = patch.ApiForpatch(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_users/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users_user_id_feature_flags_feature_flag_key/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_users_user_id_feature_flags_feature_flag_key/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users_user_id_password/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_users_user_id_password/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users_user_id_password/test_put.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_users_user_id_password import put # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1UsersUserIdPassword(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1UsersUserIdPassword unit test stubs 24 | Set User password # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = put.ApiForput(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users_user_id_properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_users_user_id_properties/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users_user_id_properties/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_users_user_id_properties import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1UsersUserIdProperties(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1UsersUserIdProperties unit test stubs 24 | Get property values # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users_user_id_properties_property_key/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_users_user_id_properties_property_key/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_users_user_id_refresh_claims/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_users_user_id_refresh_claims/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_webhooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_webhooks/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_webhooks/test_get.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_webhooks import get # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Webhooks(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Webhooks unit test stubs 24 | List Webhooks # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = get.ApiForget(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_webhooks/test_patch.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_webhooks import patch # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Webhooks(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Webhooks unit test stubs 24 | Update a Webhook # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = patch.ApiForpatch(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_webhooks/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_webhooks import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1Webhooks(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1Webhooks unit test stubs 24 | Create a Webhook # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | if __name__ == '__main__': 45 | unittest.main() 46 | -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_webhooks_webhook_id/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_api_v1_webhooks_webhook_id/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_api_v1_webhooks_webhook_id/test_delete.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.api_v1_webhooks_webhook_id import delete # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestApiV1WebhooksWebhookId(ApiTestMixin, unittest.TestCase): 22 | """ 23 | ApiV1WebhooksWebhookId unit test stubs 24 | Delete Webhook # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = delete.ApiFordelete(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_oauth2_introspect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_oauth2_introspect/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_oauth2_introspect/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.oauth2_introspect import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestOauth2Introspect(ApiTestMixin, unittest.TestCase): 22 | """ 23 | Oauth2Introspect unit test stubs 24 | Get token details # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | 37 | 38 | 39 | 40 | 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /test/test_paths/test_oauth2_revoke/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_oauth2_revoke/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_oauth2_revoke/test_post.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | 5 | 6 | Generated by: https://openapi-generator.tech 7 | """ 8 | 9 | import unittest 10 | from unittest.mock import patch 11 | 12 | import urllib3 13 | 14 | import kinde_sdk 15 | from kinde_sdk.paths.oauth2_revoke import post # noqa: E501 16 | from kinde_sdk import configuration, schemas, api_client 17 | 18 | from .. import ApiTestMixin 19 | 20 | 21 | class TestOauth2Revoke(ApiTestMixin, unittest.TestCase): 22 | """ 23 | Oauth2Revoke unit test stubs 24 | Revoke token # noqa: E501 25 | """ 26 | _configuration = configuration.Configuration() 27 | 28 | def setUp(self): 29 | used_api_client = api_client.ApiClient(configuration=self._configuration) 30 | self.api = post.ApiForpost(api_client=used_api_client) # noqa: E501 31 | 32 | def tearDown(self): 33 | pass 34 | 35 | response_status = 200 36 | response_body = '' 37 | 38 | 39 | if __name__ == '__main__': 40 | unittest.main() 41 | -------------------------------------------------------------------------------- /test/test_paths/test_oauth2_user_profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_oauth2_user_profile/__init__.py -------------------------------------------------------------------------------- /test/test_paths/test_oauth2_v2_user_profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-oss/kinde-python-sdk/55038eb7665ef48009aac6387f53a8078505f928/test/test_paths/test_oauth2_v2_user_profile/__init__.py --------------------------------------------------------------------------------