PermifyClient - JavaScript client for permify-javascript 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: v1.6.8
- Package version: 0.11.0
- Generator version: 7.13.0
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen For more information, please visit https://github.com/Permify/permify/issues
For Node.js
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install permify-javascript --saveFinally, you need to build the module:
npm run buildTo 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 installNext, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:
npm linkTo use the link you just defined in your project, switch to the directory you want to use your permify-javascript from, and run:
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>Finally, you need to build the module:
npm run buildIf 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 --saveThe 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.jsThen include bundle.js in the HTML pages.
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
}
}
]
}Please follow the installation instruction and execute the following JS code:
var PermifyClient = require('permify-javascript');
var api = new PermifyClient.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 PermifyClient.BundleDeleteBody(); // {BundleDeleteBody}
api.bundleDelete(tenantId, body).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| PermifyClient.BundleApi | bundleDelete | POST /v1/tenants/{tenant_id}/bundle/delete | delete bundle |
| PermifyClient.BundleApi | bundleRead | POST /v1/tenants/{tenant_id}/bundle/read | read bundle |
| PermifyClient.BundleApi | bundleWrite | POST /v1/tenants/{tenant_id}/bundle/write | write bundle |
| PermifyClient.DataApi | bundleRun | POST /v1/tenants/{tenant_id}/data/run-bundle | run bundle |
| PermifyClient.DataApi | dataAttributesRead | POST /v1/tenants/{tenant_id}/data/attributes/read | read attributes |
| PermifyClient.DataApi | dataDelete | POST /v1/tenants/{tenant_id}/data/delete | delete data |
| PermifyClient.DataApi | dataRelationshipsRead | POST /v1/tenants/{tenant_id}/data/relationships/read | read relationships |
| PermifyClient.DataApi | dataWrite | POST /v1/tenants/{tenant_id}/data/write | write data |
| PermifyClient.DataApi | relationshipsDelete | POST /v1/tenants/{tenant_id}/relationships/delete | delete relationships |
| PermifyClient.DataApi | relationshipsWrite | POST /v1/tenants/{tenant_id}/relationships/write | write relationships |
| PermifyClient.PermissionApi | permissionsBulkCheck | POST /v1/tenants/{tenant_id}/permissions/bulk-check | bulk check api |
| PermifyClient.PermissionApi | permissionsCheck | POST /v1/tenants/{tenant_id}/permissions/check | check api |
| PermifyClient.PermissionApi | permissionsExpand | POST /v1/tenants/{tenant_id}/permissions/expand | expand api |
| PermifyClient.PermissionApi | permissionsLookupEntity | POST /v1/tenants/{tenant_id}/permissions/lookup-entity | lookup entity |
| PermifyClient.PermissionApi | permissionsLookupEntityStream | POST /v1/tenants/{tenant_id}/permissions/lookup-entity-stream | lookup entity stream |
| PermifyClient.PermissionApi | permissionsLookupSubject | POST /v1/tenants/{tenant_id}/permissions/lookup-subject | lookup-subject |
| PermifyClient.PermissionApi | permissionsSubjectPermission | POST /v1/tenants/{tenant_id}/permissions/subject-permission | subject permission |
| PermifyClient.SchemaApi | schemasList | POST /v1/tenants/{tenant_id}/schemas/list | list schema |
| PermifyClient.SchemaApi | schemasPartialWrite | PATCH /v1/tenants/{tenant_id}/schemas/partial-write | partially update your authorization model |
| PermifyClient.SchemaApi | schemasRead | POST /v1/tenants/{tenant_id}/schemas/read | read schema |
| PermifyClient.SchemaApi | schemasWrite | POST /v1/tenants/{tenant_id}/schemas/write | write schema |
| PermifyClient.TenancyApi | tenantsCreate | POST /v1/tenants/create | create tenant |
| PermifyClient.TenancyApi | tenantsDelete | DELETE /v1/tenants/{id} | delete tenant |
| PermifyClient.TenancyApi | tenantsList | POST /v1/tenants/list | list tenants |
| PermifyClient.WatchApi | watchWatch | POST /v1/tenants/{tenant_id}/watch | watch changes |
- PermifyClient.AbstractType
- PermifyClient.Any
- PermifyClient.Argument
- PermifyClient.Attribute
- PermifyClient.AttributeDefinition
- PermifyClient.AttributeFilter
- PermifyClient.AttributeReadRequestMetadata
- PermifyClient.AttributeReadResponse
- PermifyClient.AttributeType
- PermifyClient.BulkCheckBody
- PermifyClient.BundleDeleteBody
- PermifyClient.BundleDeleteResponse
- PermifyClient.BundleReadBody
- PermifyClient.BundleReadResponse
- PermifyClient.BundleRunResponse
- PermifyClient.BundleWriteBody
- PermifyClient.BundleWriteResponse
- PermifyClient.CheckBody
- PermifyClient.CheckResult
- PermifyClient.CheckedExpr
- PermifyClient.Child
- PermifyClient.Component
- PermifyClient.Comprehension
- PermifyClient.ComputedAttribute
- PermifyClient.ComputedUserSet
- PermifyClient.Constant
- PermifyClient.Context
- PermifyClient.CreateList
- PermifyClient.CreateStruct
- PermifyClient.DataBundle
- PermifyClient.DataChange
- PermifyClient.DataChangeOperation
- PermifyClient.DataChanges
- PermifyClient.DataDeleteBody
- PermifyClient.DataDeleteResponse
- PermifyClient.DataWriteBody
- PermifyClient.DataWriteRequestMetadata
- PermifyClient.DataWriteResponse
- PermifyClient.DeleteRelationshipsBody
- PermifyClient.Entity
- PermifyClient.EntityDefinition
- PermifyClient.EntityDefinitionReference
- PermifyClient.EntityFilter
- PermifyClient.Entry
- PermifyClient.ExpandLeaf
- PermifyClient.ExpandTreeNode
- PermifyClient.ExpandTreeNodeOperation
- PermifyClient.Expr
- PermifyClient.ExprCall
- PermifyClient.Extension
- PermifyClient.FunctionType
- PermifyClient.Ident
- PermifyClient.Leaf
- PermifyClient.ListType
- PermifyClient.LookupEntityBody
- PermifyClient.LookupEntityStreamBody
- PermifyClient.LookupSubjectBody
- PermifyClient.MapType
- PermifyClient.PartialWriteBody
- PermifyClient.Partials
- PermifyClient.PermissionBulkCheckRequestItem
- PermifyClient.PermissionBulkCheckResponse
- PermifyClient.PermissionCheckRequestMetadata
- PermifyClient.PermissionCheckResponse
- PermifyClient.PermissionCheckResponseMetadata
- PermifyClient.PermissionDefinition
- PermifyClient.PermissionExpandBody
- PermifyClient.PermissionExpandRequestMetadata
- PermifyClient.PermissionExpandResponse
- PermifyClient.PermissionLookupEntityRequestMetadata
- PermifyClient.PermissionLookupEntityResponse
- PermifyClient.PermissionLookupEntityStreamResponse
- PermifyClient.PermissionLookupSubjectRequestMetadata
- PermifyClient.PermissionLookupSubjectResponse
- PermifyClient.PermissionSubjectPermissionRequestMetadata
- PermifyClient.PermissionSubjectPermissionResponse
- PermifyClient.PrimitiveType
- PermifyClient.ReadAttributesBody
- PermifyClient.ReadRelationshipsBody
- PermifyClient.RelationDefinition
- PermifyClient.RelationReference
- PermifyClient.RelationshipDeleteResponse
- PermifyClient.RelationshipReadRequestMetadata
- PermifyClient.RelationshipReadResponse
- PermifyClient.RelationshipWriteRequestMetadata
- PermifyClient.RelationshipWriteResponse
- PermifyClient.Rewrite
- PermifyClient.RewriteOperation
- PermifyClient.RuleDefinition
- PermifyClient.RunBundleBody
- PermifyClient.SchemaDefinition
- PermifyClient.SchemaDefinitionReference
- PermifyClient.SchemaList
- PermifyClient.SchemaListBody
- PermifyClient.SchemaListResponse
- PermifyClient.SchemaPartialWriteRequestMetadata
- PermifyClient.SchemaPartialWriteResponse
- PermifyClient.SchemaReadBody
- PermifyClient.SchemaReadRequestMetadata
- PermifyClient.SchemaReadResponse
- PermifyClient.SchemaWriteBody
- PermifyClient.SchemaWriteResponse
- PermifyClient.Select
- PermifyClient.SourceInfo
- PermifyClient.Status
- PermifyClient.StreamResultOfPermissionLookupEntityStreamResponse
- PermifyClient.StreamResultOfWatchResponse
- PermifyClient.StringArrayValue
- PermifyClient.Subject
- PermifyClient.SubjectFilter
- PermifyClient.SubjectPermissionBody
- PermifyClient.Subjects
- PermifyClient.Tenant
- PermifyClient.TenantCreateRequest
- PermifyClient.TenantCreateResponse
- PermifyClient.TenantDeleteResponse
- PermifyClient.TenantListRequest
- PermifyClient.TenantListResponse
- PermifyClient.Tuple
- PermifyClient.TupleFilter
- PermifyClient.TupleSet
- PermifyClient.TupleToUserSet
- PermifyClient.V1Call
- PermifyClient.V1Expand
- PermifyClient.V1Operation
- PermifyClient.V1alpha1Reference
- PermifyClient.V1alpha1Type
- PermifyClient.Values
- PermifyClient.Version
- PermifyClient.WatchBody
- PermifyClient.WatchResponse
- PermifyClient.WellKnownType
- PermifyClient.WriteRelationshipsBody
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header