1.1.0 • Published 9 months ago

unifiedapi-vuejs-directory v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

Unified.to's Integrations Directory Typescript VueJS Component

Installing

Package manager

Using NPM:

$ npm install unifiedapi-vuejs-directory

Using yarn:

$ yarn add unifiedapi-vuejs-directory

Once the package is installed, you can import the component using import

import UnifiedDirectory from 'unifiedapi-vuejs-directory';

Example

<template>
    <UnifiedDirectory workspaceId="12345" />
</template>

<script lang="ts">
import UnifiedDirectory from 'unifiedapi-vuejs-directory';

export default {
    components: {
        UnifiedDirectory,
    },
};
</script>

The following are the props that can be passed to the component:

{
    workspaceId: string;    // your workspace_id found at https://app.unified.to/settings/api
    categories?: string[];  // An array of integration categories to limit the list of integrations (crm, ats, hr, uc,. ticketing, martech)
    external_xref?: string; // Your ID for the account/user that is signed into your application
    state?: string;         // A state string that will be sent back to your success URL
    scopes?: string[];      // An array of Unified.to permission scopes to request from OAUTH2-based integrations found at https://unified.to/apidocs#unified_object_connection
    success_redirect?: string;  // The URL where you want the user to be redirect to after a successful authentication. The Integration ID will be appended with (id=) to this URL, as will the state provided
    failure_redirect?: string;  // The URL where you want the user to be redirect to after an unsuccessful or aborted authorization.  An 'error' variable will be appended.
    nostyle?: boolean;      // Do not include Unified.to's styles.  You must then define CSS styles for the embedded directory classes.
    environment?: string;   // The development environment (Eg. Production, Sandbox, ...)
    lang?: string;          // The language for the API Key authorization page.  (en, fr, es, it, pt, hi, zh)
    notabs?: boolean;       // Do not display tabs in the embedded directory
    nocategories?: boolean; // Do not display category badges for each integration
    dc?: 'us'|'eu';         // data-region


}
1.1.0

9 months ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago