@tcn/tcnapi-connect-es
Advanced tools
Comparing version 1.7.25 to 1.7.26
{ | ||
"name": "@tcn/tcnapi-connect-es", | ||
"private": false, | ||
"version": "1.7.25", | ||
"version": "1.7.26", | ||
"files": [ | ||
@@ -6,0 +6,0 @@ "src" |
@@ -9,3 +9,3 @@ // @generated by protoc-gen-es v1.3.0 with parameter "target=js+dts" | ||
import type { OperatorApplications } from "../../commons/org_pb.js"; | ||
import type { Encryption } from "../../commons/delivery_pb.js"; | ||
import type { Encryption, TransferStatus } from "../../commons/delivery_pb.js"; | ||
@@ -828,2 +828,38 @@ /** | ||
/** | ||
* @generated from field: string org_id = 12; | ||
*/ | ||
orgId: string; | ||
/** | ||
* this should only be the first 64 chars of the message_payload | ||
* | ||
* @generated from field: string message_payload = 13; | ||
*/ | ||
messagePayload: string; | ||
/** | ||
* this represents the full actual length of the message_payload from the frontend | ||
* | ||
* @generated from field: int32 message_payload_len = 14; | ||
*/ | ||
messagePayloadLen: number; | ||
/** | ||
* the status of the delivery | ||
* | ||
* @generated from field: api.commons.TransferStatus status = 15; | ||
*/ | ||
status: TransferStatus; | ||
/** | ||
* @generated from field: bool is_inbound = 16; | ||
*/ | ||
isInbound: boolean; | ||
/** | ||
* @generated from field: int64 transaction_sid = 17; | ||
*/ | ||
transactionSid: bigint; | ||
constructor(data?: PartialMessage<History>); | ||
@@ -830,0 +866,0 @@ |
@@ -8,3 +8,3 @@ // @generated by protoc-gen-es v1.3.0 with parameter "target=js+dts" | ||
import { OperatorApplications } from "../../commons/org_pb.js"; | ||
import { Encryption } from "../../commons/delivery_pb.js"; | ||
import { Encryption, TransferStatus } from "../../commons/delivery_pb.js"; | ||
@@ -302,2 +302,8 @@ /** | ||
{ no: 11, name: "origin", kind: "enum", T: proto3.getEnumType(OperatorApplications) }, | ||
{ no: 12, name: "org_id", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 13, name: "message_payload", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 14, name: "message_payload_len", kind: "scalar", T: 5 /* ScalarType.INT32 */ }, | ||
{ no: 15, name: "status", kind: "enum", T: proto3.getEnumType(TransferStatus) }, | ||
{ no: 16, name: "is_inbound", kind: "scalar", T: 8 /* ScalarType.BOOL */ }, | ||
{ no: 17, name: "transaction_sid", kind: "scalar", T: 3 /* ScalarType.INT64 */ }, | ||
], | ||
@@ -304,0 +310,0 @@ ); |
@@ -247,2 +247,3 @@ // @generated by protoc-gen-es v1.3.0 with parameter "target=js+dts" | ||
{ no: 10, name: "agent_call_log", kind: "message", T: SearchQuery_AgentCallLog }, | ||
{ no: 11, name: "phone", kind: "message", T: SearchQuery_Phone }, | ||
], | ||
@@ -252,2 +253,181 @@ ); | ||
/** | ||
* Phone defines a query on the phone. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Phone | ||
*/ | ||
export const SearchQuery_Phone = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Phone", | ||
() => [ | ||
{ no: 1, name: "cc", kind: "message", T: SearchQuery_Cc }, | ||
{ no: 2, name: "ndc", kind: "message", T: SearchQuery_Ndc }, | ||
{ no: 3, name: "prefix", kind: "message", T: SearchQuery_Prefix }, | ||
{ no: 4, name: "city", kind: "message", T: SearchQuery_City }, | ||
{ no: 5, name: "iso2", kind: "message", T: SearchQuery_Iso2 }, | ||
{ no: 6, name: "region_code", kind: "message", T: SearchQuery_RegionCode }, | ||
{ no: 7, name: "region_name", kind: "message", T: SearchQuery_RegionName }, | ||
{ no: 8, name: "time_zone", kind: "message", T: SearchQuery_TimeZone }, | ||
{ no: 9, name: "type", kind: "message", T: SearchQuery_Type }, | ||
{ no: 10, name: "utc", kind: "message", T: SearchQuery_Utc }, | ||
{ no: 11, name: "location", kind: "message", T: SearchQuery_Location }, | ||
], | ||
{localName: "SearchQuery_Phone"}, | ||
); | ||
/** | ||
* Cc defines a query on the phone country code. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Cc | ||
*/ | ||
export const SearchQuery_Cc = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Cc", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_Cc"}, | ||
); | ||
/** | ||
* Ndc defines a query on the phone ndc. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Ndc | ||
*/ | ||
export const SearchQuery_Ndc = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Ndc", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_Ndc"}, | ||
); | ||
/** | ||
* Prefix defines a query on the phone prefix. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Prefix | ||
*/ | ||
export const SearchQuery_Prefix = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Prefix", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_Prefix"}, | ||
); | ||
/** | ||
* City defines a query on the phone city. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.City | ||
*/ | ||
export const SearchQuery_City = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.City", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_City"}, | ||
); | ||
/** | ||
* Iso2 defines a query on the phone Iso2. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Iso2 | ||
*/ | ||
export const SearchQuery_Iso2 = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Iso2", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_Iso2"}, | ||
); | ||
/** | ||
* RegionCode defines a query on the phone region code. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.RegionCode | ||
*/ | ||
export const SearchQuery_RegionCode = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.RegionCode", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_RegionCode"}, | ||
); | ||
/** | ||
* RegionName defines a query on the phone region name. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.RegionName | ||
*/ | ||
export const SearchQuery_RegionName = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.RegionName", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_RegionName"}, | ||
); | ||
/** | ||
* TimeZone defines a query on the phone time zone. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.TimeZone | ||
*/ | ||
export const SearchQuery_TimeZone = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.TimeZone", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_TimeZone"}, | ||
); | ||
/** | ||
* Type defines a query on the phone type. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Type | ||
*/ | ||
export const SearchQuery_Type = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Type", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_Type"}, | ||
); | ||
/** | ||
* Utc defines a query on the phone utc. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Utc | ||
*/ | ||
export const SearchQuery_Utc = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Utc", | ||
() => [ | ||
{ no: 1, name: "in", kind: "scalar", T: 2 /* ScalarType.FLOAT */, repeated: true }, | ||
], | ||
{localName: "SearchQuery_Utc"}, | ||
); | ||
/** | ||
* Location defines a query on the phone location. | ||
* | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Location | ||
*/ | ||
export const SearchQuery_Location = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Location", | ||
() => [ | ||
{ no: 1, name: "zip_code_proximity", kind: "message", T: SearchQuery_Location_ZipCodeProximity }, | ||
], | ||
{localName: "SearchQuery_Location"}, | ||
); | ||
/** | ||
* @generated from message api.v1alpha1.vanalytics.SearchQuery.Location.ZipCodeProximity | ||
*/ | ||
export const SearchQuery_Location_ZipCodeProximity = proto3.makeMessageType( | ||
"api.v1alpha1.vanalytics.SearchQuery.Location.ZipCodeProximity", | ||
() => [ | ||
{ no: 1, name: "country_code", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 2, name: "zip_code", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 3, name: "distance", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
], | ||
{localName: "SearchQuery_Location_ZipCodeProximity"}, | ||
); | ||
/** | ||
* AgentCallLog is a query for the agent call log. | ||
@@ -254,0 +434,0 @@ * |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9930016
233179