Socket
Socket
Sign inDemoInstall

@giosg/types

Package Overview
Dependencies
Maintainers
8
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@giosg/types - npm Package Compare versions

Comparing version 5.0.0 to 6.0.1

10

CHANGELOG.md

@@ -7,3 +7,12 @@ # Changelog

## 6.0.1
- Added field `index` to `RuleActionPayload`
## 6.0.0
- Updated `WebhookRequestLogEntry` field `status` type with actual status choices instead of `string`.
## 5.0.0
- Rename `VISITOR_BELONGS_TO_AN_TARGET_EXPERIMENT_GROUP` to `VISITOR_BELONGS_TO_A_TARGET_EXPERIMENT_GROUP`.

@@ -13,2 +22,3 @@ - Add `ComposingStatus`, `ChatWithRoom`, `ChatMessageWithChat` and `RulePrediction`.

## 4.6.0

@@ -15,0 +25,0 @@ - Add `is_removed` field for `BarChats`.

1

lib/actions.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ACTION_STYLES = exports.ACTION_TYPES = exports.ActionTypes = void 0;
exports.ActionTypes = {

@@ -4,0 +5,0 @@ /** value: autosuggest message as a string, settings: ActionShowAutosuggestSettings*/

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LANGUAGE_CODES = exports.CURRENCIES = exports.TIMEZONES = void 0;
exports.TIMEZONES = [

@@ -4,0 +5,0 @@ "EET",

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CONDITION_TYPES = exports.ConditionTypes = void 0;
exports.ConditionTypes = {

@@ -4,0 +5,0 @@ /** value: city name as a string, settings: none */

40

lib/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var actions_1 = require("./actions");
exports.ActionTypes = actions_1.ActionTypes;
exports.ACTION_TYPES = actions_1.ACTION_TYPES;
exports.ACTION_STYLES = actions_1.ACTION_STYLES;
Object.defineProperty(exports, "ActionTypes", { enumerable: true, get: function () { return actions_1.ActionTypes; } });
Object.defineProperty(exports, "ACTION_TYPES", { enumerable: true, get: function () { return actions_1.ACTION_TYPES; } });
Object.defineProperty(exports, "ACTION_STYLES", { enumerable: true, get: function () { return actions_1.ACTION_STYLES; } });
var common_1 = require("./common");
exports.TIMEZONES = common_1.TIMEZONES;
exports.CURRENCIES = common_1.CURRENCIES;
exports.LANGUAGE_CODES = common_1.LANGUAGE_CODES;
Object.defineProperty(exports, "TIMEZONES", { enumerable: true, get: function () { return common_1.TIMEZONES; } });
Object.defineProperty(exports, "CURRENCIES", { enumerable: true, get: function () { return common_1.CURRENCIES; } });
Object.defineProperty(exports, "LANGUAGE_CODES", { enumerable: true, get: function () { return common_1.LANGUAGE_CODES; } });
var conditions_1 = require("./conditions");
exports.ConditionTypes = conditions_1.ConditionTypes;
exports.CONDITION_TYPES = conditions_1.CONDITION_TYPES;
Object.defineProperty(exports, "ConditionTypes", { enumerable: true, get: function () { return conditions_1.ConditionTypes; } });
Object.defineProperty(exports, "CONDITION_TYPES", { enumerable: true, get: function () { return conditions_1.CONDITION_TYPES; } });
var oath_1 = require("./oath");
exports.OAUTH_BASE_URL = oath_1.OAUTH_BASE_URL;
exports.OAUTH_SCOPE_OPTIONS = oath_1.OAUTH_SCOPE_OPTIONS;
exports.OAUTH_RESPONSE_TYPES = oath_1.OAUTH_RESPONSE_TYPES;
exports.OAUTH_PROMPT_OPTIONS = oath_1.OAUTH_PROMPT_OPTIONS;
exports.OAUTH_ERROR_TYPES = oath_1.OAUTH_ERROR_TYPES;
Object.defineProperty(exports, "OAUTH_BASE_URL", { enumerable: true, get: function () { return oath_1.OAUTH_BASE_URL; } });
Object.defineProperty(exports, "OAUTH_SCOPE_OPTIONS", { enumerable: true, get: function () { return oath_1.OAUTH_SCOPE_OPTIONS; } });
Object.defineProperty(exports, "OAUTH_RESPONSE_TYPES", { enumerable: true, get: function () { return oath_1.OAUTH_RESPONSE_TYPES; } });
Object.defineProperty(exports, "OAUTH_PROMPT_OPTIONS", { enumerable: true, get: function () { return oath_1.OAUTH_PROMPT_OPTIONS; } });
Object.defineProperty(exports, "OAUTH_ERROR_TYPES", { enumerable: true, get: function () { return oath_1.OAUTH_ERROR_TYPES; } });
var public_1 = require("./public");
exports.AutosuggestPermissionOptions = public_1.AutosuggestPermissionOptions;
exports.AUTOSUGGEST_PERMISSION_OPTIONS = public_1.AUTOSUGGEST_PERMISSION_OPTIONS;
Object.defineProperty(exports, "AutosuggestPermissionOptions", { enumerable: true, get: function () { return public_1.AutosuggestPermissionOptions; } });
Object.defineProperty(exports, "AUTOSUGGEST_PERMISSION_OPTIONS", { enumerable: true, get: function () { return public_1.AUTOSUGGEST_PERMISSION_OPTIONS; } });
var types_1 = require("./types");
exports.ASSET_TYPES = types_1.ASSET_TYPES;
exports.EXPERIMENT_GROUP_TYPES = types_1.EXPERIMENT_GROUP_TYPES;
exports.CHAT_STATUS_MESSAGE_TYPES = types_1.CHAT_STATUS_MESSAGE_TYPES;
exports.CHAT_DATA_MESSAGE_TYPES = types_1.CHAT_DATA_MESSAGE_TYPES;
exports.USER_PERMISSION_SCOPES = types_1.USER_PERMISSION_SCOPES;
Object.defineProperty(exports, "ASSET_TYPES", { enumerable: true, get: function () { return types_1.ASSET_TYPES; } });
Object.defineProperty(exports, "EXPERIMENT_GROUP_TYPES", { enumerable: true, get: function () { return types_1.EXPERIMENT_GROUP_TYPES; } });
Object.defineProperty(exports, "CHAT_STATUS_MESSAGE_TYPES", { enumerable: true, get: function () { return types_1.CHAT_STATUS_MESSAGE_TYPES; } });
Object.defineProperty(exports, "CHAT_DATA_MESSAGE_TYPES", { enumerable: true, get: function () { return types_1.CHAT_DATA_MESSAGE_TYPES; } });
Object.defineProperty(exports, "USER_PERMISSION_SCOPES", { enumerable: true, get: function () { return types_1.USER_PERMISSION_SCOPES; } });
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OAUTH_ERROR_TYPES = exports.OAUTH_PROMPT_OPTIONS = exports.OAUTH_RESPONSE_TYPES = exports.OAUTH_SCOPE_OPTIONS = exports.OAUTH_BASE_URL = void 0;
exports.OAUTH_BASE_URL = "https://service.giosg.com/identity/authorize";

@@ -4,0 +5,0 @@ exports.OAUTH_SCOPE_OPTIONS = [

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AUTOSUGGEST_PERMISSION_OPTIONS = exports.AutosuggestPermissionOptions = void 0;
exports.AutosuggestPermissionOptions = {

@@ -4,0 +5,0 @@ /** Not allowed to autosuggest because of capacity being reached or some other reason */

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.USER_PERMISSION_SCOPES = exports.CHAT_DATA_MESSAGE_TYPES = exports.CHAT_STATUS_MESSAGE_TYPES = exports.EXPERIMENT_GROUP_TYPES = exports.ASSET_TYPES = void 0;
// Types

@@ -4,0 +5,0 @@ exports.ASSET_TYPES = ["image", "css", "javascript", "font"];

@@ -207,5 +207,5 @@ import { NestedUser } from "./customer";

created_at: string;
room_id: string;
room_id: RoomUid;
rule_id: RuleUid;
}
//# sourceMappingURL=visitor.d.ts.map

@@ -29,3 +29,3 @@ import { NestedGiosgApp } from "./apps";

channel: string;
status: string;
status: "pending" | "started" | "successful" | "failed";
retry_index: number;

@@ -32,0 +32,0 @@ reason: string;

{
"name": "@giosg/types",
"version": "5.0.0",
"version": "6.0.1",
"description": "TypeScript interfaces for GiosgAPI",

@@ -17,4 +17,4 @@ "main": "lib/index.js",

"devDependencies": {
"typescript": "^3.5.3",
"ts-node": "^8.5.4"
"ts-node": "^8.5.4",
"typescript": "^3.9.9"
},

@@ -21,0 +21,0 @@ "peerDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc