New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

permify-javascript

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

permify-javascript

Permify is an open source authorization service for creating fine-grained and scalable authorization systems.

latest
npmnpm
Version
0.11.1
Version published
Maintainers
0
Created
Source

permify-javascript

PermifyApi - JavaScript client for Permify REST Api Permify is an open source authorization service for creating fine-grained and scalable authorization systems. This SDK is automatically generated by the OpenAPI Generator project:

  • API version: v0.10.0
  • Package version: v0.10.0
  • Generator version: 7.7.0
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen For more information, please visit https://github.com/Permify/permify/issues

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install permify-javascript --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your permify_api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var PermifyApi = require('permify-javascript');


var api = new PermifyApi.BundleApi()
var tenantId = "tenantId_example"; // {String} Identifier of the tenant, if you are not using multi-tenancy (have only one tenant) use pre-inserted tenant <code>t1</code> for this field. Required, and must match the pattern \\“[a-zA-Z0-9-,]+\\“, max 64 bytes.
var body = new PermifyApi.BundleDeleteBody(); // {BundleDeleteBody} 
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.bundleDelete(tenantId, body, callback);

Documentation for API Endpoints

All URIs are relative to http://localhost

ClassMethodHTTP requestDescription
PermifyApi.BundleApibundleDeletePOST /v1/tenants/{tenant_id}/bundle/deletedelete bundle
PermifyApi.BundleApibundleReadPOST /v1/tenants/{tenant_id}/bundle/readread bundle
PermifyApi.BundleApibundleWritePOST /v1/tenants/{tenant_id}/bundle/writewrite bundle
PermifyApi.DataApibundleRunPOST /v1/tenants/{tenant_id}/data/run-bundlerun bundle
PermifyApi.DataApidataAttributesReadPOST /v1/tenants/{tenant_id}/data/attributes/readread attributes
PermifyApi.DataApidataDeletePOST /v1/tenants/{tenant_id}/data/deletedelete data
PermifyApi.DataApidataRelationshipsReadPOST /v1/tenants/{tenant_id}/data/relationships/readread relationships
PermifyApi.DataApidataWritePOST /v1/tenants/{tenant_id}/data/writewrite data
PermifyApi.DataApirelationshipsDeletePOST /v1/tenants/{tenant_id}/relationships/deletedelete relationships
PermifyApi.DataApirelationshipsWritePOST /v1/tenants/{tenant_id}/relationships/writewrite relationships
PermifyApi.PermissionApipermissionsCheckPOST /v1/tenants/{tenant_id}/permissions/checkcheck api
PermifyApi.PermissionApipermissionsExpandPOST /v1/tenants/{tenant_id}/permissions/expandexpand api
PermifyApi.PermissionApipermissionsLookupEntityPOST /v1/tenants/{tenant_id}/permissions/lookup-entitylookup entity
PermifyApi.PermissionApipermissionsLookupEntityStreamPOST /v1/tenants/{tenant_id}/permissions/lookup-entity-streamlookup entity stream
PermifyApi.PermissionApipermissionsLookupSubjectPOST /v1/tenants/{tenant_id}/permissions/lookup-subjectlookup-subject
PermifyApi.PermissionApipermissionsSubjectPermissionPOST /v1/tenants/{tenant_id}/permissions/subject-permissionsubject permission
PermifyApi.SchemaApischemasListPOST /v1/tenants/{tenant_id}/schemas/listlist schema
PermifyApi.SchemaApischemasPartialWritePATCH /v1/tenants/{tenant_id}/schemas/partial-writepartially update your authorization model
PermifyApi.SchemaApischemasReadPOST /v1/tenants/{tenant_id}/schemas/readread schema
PermifyApi.SchemaApischemasWritePOST /v1/tenants/{tenant_id}/schemas/writewrite schema
PermifyApi.TenancyApitenantsCreatePOST /v1/tenants/createcreate tenant
PermifyApi.TenancyApitenantsDeleteDELETE /v1/tenants/{id}delete tenant
PermifyApi.TenancyApitenantsListPOST /v1/tenants/listlist tenants
PermifyApi.WatchApiwatchWatchPOST /v1/tenants/{tenant_id}/watchwatch changes

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

ApiKeyAuth

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

FAQs

Package last updated on 29 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts