@snap/push2web 0.13.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -130,6 +130,7 @@ export type LensExcludedErrorEvent = {
130
130
  lensId: number;
131
131
  /**
132
132
  * Contains the reason why the lens was excluded.
133
+ * @deprecated Use `cause.message` instead.
133
134
  */
134
135
  reason: ListenLensPushResponse_ExcludedLens_Code;
135
136
  };
package/dist/Push2Web.js CHANGED
@@ -1,4 +1,4 @@
1
- import { cameraKitUserAgent, toPublicLens, TypedCustomEvent, TypedEventTarget, } from "@snap/camera-kit";
1
+ import { toPublicLens, TypedCustomEvent, TypedEventTarget, getCameraKitUserAgent, } from "@snap/camera-kit";
2
2
  import { grpc } from "@improbable-eng/grpc-web";
3
3
  import { map, catchError, of, switchMap, ReplaySubject } from "rxjs";
4
4
  import { GrpcWebImpl, ListenLensPushRequest, listenLensPushResponse_ExcludedLens_CodeFromJSON, PushToDeviceClientImpl, } from "./generated-api-client/camera_kit/v3/push_to_device";
@@ -42,7 +42,7 @@ export class Push2Web {
42
42
  this.pushedLenses = this.accesToken.pipe(switchMap((accessToken) => {
43
43
  const metadata = new grpc.Metadata();
44
44
  metadata.append("Authorization", `Bearer ${accessToken}`);
45
- metadata.append("x-snap-client-user-agent", cameraKitUserAgent.userAgent);
45
+ metadata.append("x-snap-client-user-agent", getCameraKitUserAgent());
46
46
  const grpcWeb = new GrpcWebImpl("https://api-kit.snapchat.com", {
47
47
  metadata,
48
48
  });
@@ -51,7 +51,7 @@ export class Push2Web {
51
51
  if (excludedLens) {
52
52
  return new TypedCustomEvent("error", {
53
53
  name: "LensExcludedError",
54
- cause: new Error("Lens excluded"),
54
+ cause: new Error(listenLensPushResponse_ExcludedLens_CodeFromJSON(excludedLens.code)),
55
55
  lensId: excludedLens.lensId,
56
56
  reason: listenLensPushResponse_ExcludedLens_CodeFromJSON(excludedLens.code),
57
57
  });
@@ -59,7 +59,8 @@ export class Push2Web {
59
59
  const envelope = Object.values(lenses)[0];
60
60
  this.push2WebExtension.updateEnvelope(envelope);
61
61
  const [lens] = Envelope.decode(envelope).lenses;
62
- return new TypedCustomEvent("lensReceived", toPublicLens(lens));
62
+ const groupId = this.push2WebExtension.groupId;
63
+ return new TypedCustomEvent("lensReceived", toPublicLens({ ...lens, groupId }));
63
64
  }), catchError((error) => {
64
65
  const grpcError = /Error ([\d]{1,3})/.exec(error.message);
65
66
  if (grpcError) {
@@ -12,7 +12,7 @@ export function reportEvent(metricsReporter, event) {
12
12
  dimensions.set("type", "subscription").set("cause", event.detail.grpcStatus);
13
13
  }
14
14
  else if (event.detail.name === "LensExcludedError") {
15
- dimensions.set("type", "lens_excluded").set("cause", event.detail.reason);
15
+ dimensions.set("type", "lens_excluded").set("cause", event.detail.cause.message);
16
16
  }
17
17
  metricsReporter.count("push2web_error", 1, dimensions);
18
18
  break;
@@ -1 +1 @@
1
- window.searchData = JSON.parse("{\"rows\":[{\"kind\":4194304,\"name\":\"ErrorEvent\",\"url\":\"types/ErrorEvent.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"LensReceivedEvent\",\"url\":\"types/LensReceivedEvent.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Push2WebEvents\",\"url\":\"types/Push2WebEvents.html\",\"classes\":\"\"},{\"kind\":8,\"name\":\"State\",\"url\":\"enums/State.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"Subscribed\",\"url\":\"enums/State.html#Subscribed\",\"classes\":\"\",\"parent\":\"State\"},{\"kind\":16,\"name\":\"Unsubscribed\",\"url\":\"enums/State.html#Unsubscribed\",\"classes\":\"\",\"parent\":\"State\"},{\"kind\":4194304,\"name\":\"SubscriptionChangedEvent\",\"url\":\"types/SubscriptionChangedEvent.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Push2Web\",\"url\":\"classes/Push2Web.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Push2Web.html#constructor\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Push2Web.html#events\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":262144,\"name\":\"extension\",\"url\":\"classes/Push2Web.html#extension\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":2048,\"name\":\"subscribe\",\"url\":\"classes/Push2Web.html#subscribe\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":4194304,\"name\":\"GenericErrorEvent\",\"url\":\"types/GenericErrorEvent.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/GenericErrorEvent.html#__type\",\"classes\":\"\",\"parent\":\"GenericErrorEvent\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/GenericErrorEvent.html#__type.name\",\"classes\":\"\",\"parent\":\"GenericErrorEvent.__type\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"types/GenericErrorEvent.html#__type.cause\",\"classes\":\"\",\"parent\":\"GenericErrorEvent.__type\"},{\"kind\":4194304,\"name\":\"CommunicationErrorEvent\",\"url\":\"types/CommunicationErrorEvent.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/CommunicationErrorEvent.html#__type\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/CommunicationErrorEvent.html#__type.name\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"types/CommunicationErrorEvent.html#__type.cause\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":1024,\"name\":\"grpcCode\",\"url\":\"types/CommunicationErrorEvent.html#__type.grpcCode\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":1024,\"name\":\"grpcStatus\",\"url\":\"types/CommunicationErrorEvent.html#__type.grpcStatus\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":4194304,\"name\":\"LensExcludedErrorEvent\",\"url\":\"types/LensExcludedErrorEvent.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/LensExcludedErrorEvent.html#__type\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/LensExcludedErrorEvent.html#__type.name\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"types/LensExcludedErrorEvent.html#__type.cause\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":1024,\"name\":\"lensId\",\"url\":\"types/LensExcludedErrorEvent.html#__type.lensId\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"types/LensExcludedErrorEvent.html#__type.reason\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":4194304,\"name\":\"SubscriptionInstance\",\"url\":\"types/SubscriptionInstance.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SubscriptionInstance.html#__type\",\"classes\":\"\",\"parent\":\"SubscriptionInstance\"},{\"kind\":2048,\"name\":\"unsubscribe\",\"url\":\"types/SubscriptionInstance.html#__type.unsubscribe\",\"classes\":\"\",\"parent\":\"SubscriptionInstance.__type\"},{\"kind\":2048,\"name\":\"updateAccessToken\",\"url\":\"types/SubscriptionInstance.html#__type.updateAccessToken\",\"classes\":\"\",\"parent\":\"SubscriptionInstance.__type\"},{\"kind\":256,\"name\":\"Lens\",\"url\":\"interfaces/Lens.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/Lens.html#id\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Lens.html#name\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"iconUrl\",\"url\":\"interfaces/Lens.html#iconUrl\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"vendorData\",\"url\":\"interfaces/Lens.html#vendorData\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Lens.html#vendorData.__type\",\"classes\":\"\",\"parent\":\"Lens.vendorData\"},{\"kind\":1024,\"name\":\"cameraFacingPreference\",\"url\":\"interfaces/Lens.html#cameraFacingPreference\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"preview\",\"url\":\"interfaces/Lens.html#preview\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"lensCreator\",\"url\":\"interfaces/Lens.html#lensCreator\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"snapcode\",\"url\":\"interfaces/Lens.html#snapcode\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":8,\"name\":\"Code\",\"url\":\"enums/Code.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"OK\",\"url\":\"enums/Code.html#OK\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"CANCELLED\",\"url\":\"enums/Code.html#CANCELLED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/Code.html#UNKNOWN\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"INVALID_ARGUMENT\",\"url\":\"enums/Code.html#INVALID_ARGUMENT\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"DEADLINE_EXCEEDED\",\"url\":\"enums/Code.html#DEADLINE_EXCEEDED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"NOT_FOUND\",\"url\":\"enums/Code.html#NOT_FOUND\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"ALREADY_EXISTS\",\"url\":\"enums/Code.html#ALREADY_EXISTS\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"PERMISSION_DENIED\",\"url\":\"enums/Code.html#PERMISSION_DENIED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNAUTHENTICATED\",\"url\":\"enums/Code.html#UNAUTHENTICATED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"RESOURCE_EXHAUSTED\",\"url\":\"enums/Code.html#RESOURCE_EXHAUSTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"FAILED_PRECONDITION\",\"url\":\"enums/Code.html#FAILED_PRECONDITION\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"ABORTED\",\"url\":\"enums/Code.html#ABORTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"OUT_OF_RANGE\",\"url\":\"enums/Code.html#OUT_OF_RANGE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNIMPLEMENTED\",\"url\":\"enums/Code.html#UNIMPLEMENTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"INTERNAL\",\"url\":\"enums/Code.html#INTERNAL\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNAVAILABLE\",\"url\":\"enums/Code.html#UNAVAILABLE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"DATA_LOSS\",\"url\":\"enums/Code.html#DATA_LOSS\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"NOT_MODIFIED\",\"url\":\"enums/Code.html#NOT_MODIFIED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"DECRYPTION_FAILED\",\"url\":\"enums/Code.html#DECRYPTION_FAILED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"INVALID_MEDIA\",\"url\":\"enums/Code.html#INVALID_MEDIA\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"IN_PROGRESS\",\"url\":\"enums/Code.html#IN_PROGRESS\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"CONTENT_TOO_LARGE\",\"url\":\"enums/Code.html#CONTENT_TOO_LARGE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"URL_PROTOCOL_NOT_SUPPORTED\",\"url\":\"enums/Code.html#URL_PROTOCOL_NOT_SUPPORTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"URL_CONTENT_TYPE_NOT_WHITELISTED\",\"url\":\"enums/Code.html#URL_CONTENT_TYPE_NOT_WHITELISTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"URL_DOWNLOAD_FAILURE\",\"url\":\"enums/Code.html#URL_DOWNLOAD_FAILURE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"CLOUD_STORAGE_FAILURE\",\"url\":\"enums/Code.html#CLOUD_STORAGE_FAILURE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNRECOGNIZED\",\"url\":\"enums/Code.html#UNRECOGNIZED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":8,\"name\":\"ListenLensPushResponse_ExcludedLens_Code\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"UNSET\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#UNSET\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#UNKNOWN\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"NOT_FOUND\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#NOT_FOUND\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"INCOMPATIBLE_LENS_CORE_VERSION\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#INCOMPATIBLE_LENS_CORE_VERSION\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"ARCHIVED_OR_INVISIBLE\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#ARCHIVED_OR_INVISIBLE\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"CONTAINS_MUSIC\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#CONTAINS_MUSIC\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"UNRECOGNIZED\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#UNRECOGNIZED\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,39.64]],[\"comment/0\",[]],[\"name/1\",[1,39.64]],[\"comment/1\",[]],[\"name/2\",[2,39.64]],[\"comment/2\",[]],[\"name/3\",[3,39.64]],[\"comment/3\",[]],[\"name/4\",[4,39.64]],[\"comment/4\",[]],[\"name/5\",[5,39.64]],[\"comment/5\",[]],[\"name/6\",[6,39.64]],[\"comment/6\",[]],[\"name/7\",[7,39.64]],[\"comment/7\",[]],[\"name/8\",[8,39.64]],[\"comment/8\",[]],[\"name/9\",[9,39.64]],[\"comment/9\",[]],[\"name/10\",[10,39.64]],[\"comment/10\",[]],[\"name/11\",[11,39.64]],[\"comment/11\",[]],[\"name/12\",[12,39.64]],[\"comment/12\",[]],[\"name/13\",[13,26.647]],[\"comment/13\",[]],[\"name/14\",[14,28.654]],[\"comment/14\",[]],[\"name/15\",[15,31.167]],[\"comment/15\",[]],[\"name/16\",[16,39.64]],[\"comment/16\",[]],[\"name/17\",[13,26.647]],[\"comment/17\",[]],[\"name/18\",[14,28.654]],[\"comment/18\",[]],[\"name/19\",[15,31.167]],[\"comment/19\",[]],[\"name/20\",[17,39.64]],[\"comment/20\",[]],[\"name/21\",[18,39.64]],[\"comment/21\",[]],[\"name/22\",[19,39.64]],[\"comment/22\",[]],[\"name/23\",[13,26.647]],[\"comment/23\",[]],[\"name/24\",[14,28.654]],[\"comment/24\",[]],[\"name/25\",[15,31.167]],[\"comment/25\",[]],[\"name/26\",[20,39.64]],[\"comment/26\",[]],[\"name/27\",[21,39.64]],[\"comment/27\",[]],[\"name/28\",[22,39.64]],[\"comment/28\",[]],[\"name/29\",[13,26.647]],[\"comment/29\",[]],[\"name/30\",[23,39.64]],[\"comment/30\",[]],[\"name/31\",[24,39.64]],[\"comment/31\",[]],[\"name/32\",[25,39.64]],[\"comment/32\",[]],[\"name/33\",[26,39.64]],[\"comment/33\",[]],[\"name/34\",[14,28.654]],[\"comment/34\",[]],[\"name/35\",[27,39.64]],[\"comment/35\",[]],[\"name/36\",[28,39.64]],[\"comment/36\",[]],[\"name/37\",[13,26.647]],[\"comment/37\",[]],[\"name/38\",[29,39.64]],[\"comment/38\",[]],[\"name/39\",[30,39.64]],[\"comment/39\",[]],[\"name/40\",[31,39.64]],[\"comment/40\",[]],[\"name/41\",[32,39.64]],[\"comment/41\",[]],[\"name/42\",[33,39.64]],[\"comment/42\",[]],[\"name/43\",[34,39.64]],[\"comment/43\",[]],[\"name/44\",[35,39.64]],[\"comment/44\",[]],[\"name/45\",[36,34.532]],[\"comment/45\",[]],[\"name/46\",[37,39.64]],[\"comment/46\",[]],[\"name/47\",[38,39.64]],[\"comment/47\",[]],[\"name/48\",[39,34.532]],[\"comment/48\",[]],[\"name/49\",[40,39.64]],[\"comment/49\",[]],[\"name/50\",[41,39.64]],[\"comment/50\",[]],[\"name/51\",[42,39.64]],[\"comment/51\",[]],[\"name/52\",[43,39.64]],[\"comment/52\",[]],[\"name/53\",[44,39.64]],[\"comment/53\",[]],[\"name/54\",[45,39.64]],[\"comment/54\",[]],[\"name/55\",[46,39.64]],[\"comment/55\",[]],[\"name/56\",[47,39.64]],[\"comment/56\",[]],[\"name/57\",[48,39.64]],[\"comment/57\",[]],[\"name/58\",[49,39.64]],[\"comment/58\",[]],[\"name/59\",[50,39.64]],[\"comment/59\",[]],[\"name/60\",[51,39.64]],[\"comment/60\",[]],[\"name/61\",[52,39.64]],[\"comment/61\",[]],[\"name/62\",[53,39.64]],[\"comment/62\",[]],[\"name/63\",[54,39.64]],[\"comment/63\",[]],[\"name/64\",[55,39.64]],[\"comment/64\",[]],[\"name/65\",[56,39.64]],[\"comment/65\",[]],[\"name/66\",[57,39.64]],[\"comment/66\",[]],[\"name/67\",[58,39.64]],[\"comment/67\",[]],[\"name/68\",[59,39.64]],[\"comment/68\",[]],[\"name/69\",[60,34.532]],[\"comment/69\",[]],[\"name/70\",[61,39.64]],[\"comment/70\",[]],[\"name/71\",[62,39.64]],[\"comment/71\",[]],[\"name/72\",[36,34.532]],[\"comment/72\",[]],[\"name/73\",[39,34.532]],[\"comment/73\",[]],[\"name/74\",[63,39.64]],[\"comment/74\",[]],[\"name/75\",[64,39.64]],[\"comment/75\",[]],[\"name/76\",[65,39.64]],[\"comment/76\",[]],[\"name/77\",[60,34.532]],[\"comment/77\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":13,\"name\":{\"13\":{},\"17\":{},\"23\":{},\"29\":{},\"37\":{}},\"comment\":{}}],[\"aborted\",{\"_index\":45,\"name\":{\"54\":{}},\"comment\":{}}],[\"already_exists\",{\"_index\":40,\"name\":{\"49\":{}},\"comment\":{}}],[\"archived_or_invisible\",{\"_index\":64,\"name\":{\"75\":{}},\"comment\":{}}],[\"camerafacingpreference\",{\"_index\":29,\"name\":{\"38\":{}},\"comment\":{}}],[\"cancelled\",{\"_index\":35,\"name\":{\"44\":{}},\"comment\":{}}],[\"cause\",{\"_index\":15,\"name\":{\"15\":{},\"19\":{},\"25\":{}},\"comment\":{}}],[\"cloud_storage_failure\",{\"_index\":59,\"name\":{\"68\":{}},\"comment\":{}}],[\"code\",{\"_index\":33,\"name\":{\"42\":{}},\"comment\":{}}],[\"communicationerrorevent\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"contains_music\",{\"_index\":65,\"name\":{\"76\":{}},\"comment\":{}}],[\"content_too_large\",{\"_index\":55,\"name\":{\"64\":{}},\"comment\":{}}],[\"data_loss\",{\"_index\":50,\"name\":{\"59\":{}},\"comment\":{}}],[\"deadline_exceeded\",{\"_index\":38,\"name\":{\"47\":{}},\"comment\":{}}],[\"decryption_failed\",{\"_index\":52,\"name\":{\"61\":{}},\"comment\":{}}],[\"errorevent\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"events\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"extension\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"failed_precondition\",{\"_index\":44,\"name\":{\"53\":{}},\"comment\":{}}],[\"genericerrorevent\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"grpccode\",{\"_index\":17,\"name\":{\"20\":{}},\"comment\":{}}],[\"grpcstatus\",{\"_index\":18,\"name\":{\"21\":{}},\"comment\":{}}],[\"iconurl\",{\"_index\":27,\"name\":{\"35\":{}},\"comment\":{}}],[\"id\",{\"_index\":26,\"name\":{\"33\":{}},\"comment\":{}}],[\"in_progress\",{\"_index\":54,\"name\":{\"63\":{}},\"comment\":{}}],[\"incompatible_lens_core_version\",{\"_index\":63,\"name\":{\"74\":{}},\"comment\":{}}],[\"internal\",{\"_index\":48,\"name\":{\"57\":{}},\"comment\":{}}],[\"invalid_argument\",{\"_index\":37,\"name\":{\"46\":{}},\"comment\":{}}],[\"invalid_media\",{\"_index\":53,\"name\":{\"62\":{}},\"comment\":{}}],[\"lens\",{\"_index\":25,\"name\":{\"32\":{}},\"comment\":{}}],[\"lenscreator\",{\"_index\":31,\"name\":{\"40\":{}},\"comment\":{}}],[\"lensexcludederrorevent\",{\"_index\":19,\"name\":{\"22\":{}},\"comment\":{}}],[\"lensid\",{\"_index\":20,\"name\":{\"26\":{}},\"comment\":{}}],[\"lensreceivedevent\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"listenlenspushresponse_excludedlens_code\",{\"_index\":61,\"name\":{\"70\":{}},\"comment\":{}}],[\"name\",{\"_index\":14,\"name\":{\"14\":{},\"18\":{},\"24\":{},\"34\":{}},\"comment\":{}}],[\"not_found\",{\"_index\":39,\"name\":{\"48\":{},\"73\":{}},\"comment\":{}}],[\"not_modified\",{\"_index\":51,\"name\":{\"60\":{}},\"comment\":{}}],[\"ok\",{\"_index\":34,\"name\":{\"43\":{}},\"comment\":{}}],[\"out_of_range\",{\"_index\":46,\"name\":{\"55\":{}},\"comment\":{}}],[\"permission_denied\",{\"_index\":41,\"name\":{\"50\":{}},\"comment\":{}}],[\"preview\",{\"_index\":30,\"name\":{\"39\":{}},\"comment\":{}}],[\"push2web\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"push2webevents\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"reason\",{\"_index\":21,\"name\":{\"27\":{}},\"comment\":{}}],[\"resource_exhausted\",{\"_index\":43,\"name\":{\"52\":{}},\"comment\":{}}],[\"snapcode\",{\"_index\":32,\"name\":{\"41\":{}},\"comment\":{}}],[\"state\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"subscribe\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"subscribed\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"subscriptionchangedevent\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"subscriptioninstance\",{\"_index\":22,\"name\":{\"28\":{}},\"comment\":{}}],[\"unauthenticated\",{\"_index\":42,\"name\":{\"51\":{}},\"comment\":{}}],[\"unavailable\",{\"_index\":49,\"name\":{\"58\":{}},\"comment\":{}}],[\"unimplemented\",{\"_index\":47,\"name\":{\"56\":{}},\"comment\":{}}],[\"unknown\",{\"_index\":36,\"name\":{\"45\":{},\"72\":{}},\"comment\":{}}],[\"unrecognized\",{\"_index\":60,\"name\":{\"69\":{},\"77\":{}},\"comment\":{}}],[\"unset\",{\"_index\":62,\"name\":{\"71\":{}},\"comment\":{}}],[\"unsubscribe\",{\"_index\":23,\"name\":{\"30\":{}},\"comment\":{}}],[\"unsubscribed\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"updateaccesstoken\",{\"_index\":24,\"name\":{\"31\":{}},\"comment\":{}}],[\"url_content_type_not_whitelisted\",{\"_index\":57,\"name\":{\"66\":{}},\"comment\":{}}],[\"url_download_failure\",{\"_index\":58,\"name\":{\"67\":{}},\"comment\":{}}],[\"url_protocol_not_supported\",{\"_index\":56,\"name\":{\"65\":{}},\"comment\":{}}],[\"vendordata\",{\"_index\":28,\"name\":{\"36\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
1
+ window.searchData = JSON.parse("{\"rows\":[{\"kind\":4194304,\"name\":\"ErrorEvent\",\"url\":\"types/ErrorEvent.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"LensReceivedEvent\",\"url\":\"types/LensReceivedEvent.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Push2WebEvents\",\"url\":\"types/Push2WebEvents.html\",\"classes\":\"\"},{\"kind\":8,\"name\":\"State\",\"url\":\"enums/State.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"Subscribed\",\"url\":\"enums/State.html#Subscribed\",\"classes\":\"\",\"parent\":\"State\"},{\"kind\":16,\"name\":\"Unsubscribed\",\"url\":\"enums/State.html#Unsubscribed\",\"classes\":\"\",\"parent\":\"State\"},{\"kind\":4194304,\"name\":\"SubscriptionChangedEvent\",\"url\":\"types/SubscriptionChangedEvent.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Push2Web\",\"url\":\"classes/Push2Web.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Push2Web.html#constructor\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Push2Web.html#events\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":262144,\"name\":\"extension\",\"url\":\"classes/Push2Web.html#extension\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":2048,\"name\":\"subscribe\",\"url\":\"classes/Push2Web.html#subscribe\",\"classes\":\"\",\"parent\":\"Push2Web\"},{\"kind\":4194304,\"name\":\"GenericErrorEvent\",\"url\":\"types/GenericErrorEvent.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/GenericErrorEvent.html#__type\",\"classes\":\"\",\"parent\":\"GenericErrorEvent\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/GenericErrorEvent.html#__type.name\",\"classes\":\"\",\"parent\":\"GenericErrorEvent.__type\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"types/GenericErrorEvent.html#__type.cause\",\"classes\":\"\",\"parent\":\"GenericErrorEvent.__type\"},{\"kind\":4194304,\"name\":\"CommunicationErrorEvent\",\"url\":\"types/CommunicationErrorEvent.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/CommunicationErrorEvent.html#__type\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/CommunicationErrorEvent.html#__type.name\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"types/CommunicationErrorEvent.html#__type.cause\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":1024,\"name\":\"grpcCode\",\"url\":\"types/CommunicationErrorEvent.html#__type.grpcCode\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":1024,\"name\":\"grpcStatus\",\"url\":\"types/CommunicationErrorEvent.html#__type.grpcStatus\",\"classes\":\"\",\"parent\":\"CommunicationErrorEvent.__type\"},{\"kind\":4194304,\"name\":\"LensExcludedErrorEvent\",\"url\":\"types/LensExcludedErrorEvent.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/LensExcludedErrorEvent.html#__type\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/LensExcludedErrorEvent.html#__type.name\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":1024,\"name\":\"cause\",\"url\":\"types/LensExcludedErrorEvent.html#__type.cause\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":1024,\"name\":\"lensId\",\"url\":\"types/LensExcludedErrorEvent.html#__type.lensId\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":1024,\"name\":\"reason\",\"url\":\"types/LensExcludedErrorEvent.html#__type.reason\",\"classes\":\"\",\"parent\":\"LensExcludedErrorEvent.__type\"},{\"kind\":4194304,\"name\":\"SubscriptionInstance\",\"url\":\"types/SubscriptionInstance.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SubscriptionInstance.html#__type\",\"classes\":\"\",\"parent\":\"SubscriptionInstance\"},{\"kind\":2048,\"name\":\"unsubscribe\",\"url\":\"types/SubscriptionInstance.html#__type.unsubscribe\",\"classes\":\"\",\"parent\":\"SubscriptionInstance.__type\"},{\"kind\":2048,\"name\":\"updateAccessToken\",\"url\":\"types/SubscriptionInstance.html#__type.updateAccessToken\",\"classes\":\"\",\"parent\":\"SubscriptionInstance.__type\"},{\"kind\":256,\"name\":\"Lens\",\"url\":\"interfaces/Lens.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/Lens.html#id\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"groupId\",\"url\":\"interfaces/Lens.html#groupId\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Lens.html#name\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"iconUrl\",\"url\":\"interfaces/Lens.html#iconUrl\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"vendorData\",\"url\":\"interfaces/Lens.html#vendorData\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Lens.html#vendorData.__type\",\"classes\":\"\",\"parent\":\"Lens.vendorData\"},{\"kind\":1024,\"name\":\"cameraFacingPreference\",\"url\":\"interfaces/Lens.html#cameraFacingPreference\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"preview\",\"url\":\"interfaces/Lens.html#preview\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"lensCreator\",\"url\":\"interfaces/Lens.html#lensCreator\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"snapcode\",\"url\":\"interfaces/Lens.html#snapcode\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":1024,\"name\":\"featureMetadata\",\"url\":\"interfaces/Lens.html#featureMetadata\",\"classes\":\"\",\"parent\":\"Lens\"},{\"kind\":8,\"name\":\"Code\",\"url\":\"enums/Code.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"OK\",\"url\":\"enums/Code.html#OK\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"CANCELLED\",\"url\":\"enums/Code.html#CANCELLED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/Code.html#UNKNOWN\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"INVALID_ARGUMENT\",\"url\":\"enums/Code.html#INVALID_ARGUMENT\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"DEADLINE_EXCEEDED\",\"url\":\"enums/Code.html#DEADLINE_EXCEEDED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"NOT_FOUND\",\"url\":\"enums/Code.html#NOT_FOUND\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"ALREADY_EXISTS\",\"url\":\"enums/Code.html#ALREADY_EXISTS\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"PERMISSION_DENIED\",\"url\":\"enums/Code.html#PERMISSION_DENIED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNAUTHENTICATED\",\"url\":\"enums/Code.html#UNAUTHENTICATED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"RESOURCE_EXHAUSTED\",\"url\":\"enums/Code.html#RESOURCE_EXHAUSTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"FAILED_PRECONDITION\",\"url\":\"enums/Code.html#FAILED_PRECONDITION\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"ABORTED\",\"url\":\"enums/Code.html#ABORTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"OUT_OF_RANGE\",\"url\":\"enums/Code.html#OUT_OF_RANGE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNIMPLEMENTED\",\"url\":\"enums/Code.html#UNIMPLEMENTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"INTERNAL\",\"url\":\"enums/Code.html#INTERNAL\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNAVAILABLE\",\"url\":\"enums/Code.html#UNAVAILABLE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"DATA_LOSS\",\"url\":\"enums/Code.html#DATA_LOSS\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"NOT_MODIFIED\",\"url\":\"enums/Code.html#NOT_MODIFIED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"DECRYPTION_FAILED\",\"url\":\"enums/Code.html#DECRYPTION_FAILED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"INVALID_MEDIA\",\"url\":\"enums/Code.html#INVALID_MEDIA\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"IN_PROGRESS\",\"url\":\"enums/Code.html#IN_PROGRESS\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"CONTENT_TOO_LARGE\",\"url\":\"enums/Code.html#CONTENT_TOO_LARGE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"URL_PROTOCOL_NOT_SUPPORTED\",\"url\":\"enums/Code.html#URL_PROTOCOL_NOT_SUPPORTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"URL_CONTENT_TYPE_NOT_WHITELISTED\",\"url\":\"enums/Code.html#URL_CONTENT_TYPE_NOT_WHITELISTED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"URL_DOWNLOAD_FAILURE\",\"url\":\"enums/Code.html#URL_DOWNLOAD_FAILURE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"CLOUD_STORAGE_FAILURE\",\"url\":\"enums/Code.html#CLOUD_STORAGE_FAILURE\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":16,\"name\":\"UNRECOGNIZED\",\"url\":\"enums/Code.html#UNRECOGNIZED\",\"classes\":\"\",\"parent\":\"Code\"},{\"kind\":8,\"name\":\"ListenLensPushResponse_ExcludedLens_Code\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html\",\"classes\":\"\"},{\"kind\":16,\"name\":\"UNSET\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#UNSET\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"UNKNOWN\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#UNKNOWN\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"NOT_FOUND\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#NOT_FOUND\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"INCOMPATIBLE_LENS_CORE_VERSION\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#INCOMPATIBLE_LENS_CORE_VERSION\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"ARCHIVED_OR_INVISIBLE\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#ARCHIVED_OR_INVISIBLE\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"CONTAINS_MUSIC\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#CONTAINS_MUSIC\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"},{\"kind\":16,\"name\":\"UNRECOGNIZED\",\"url\":\"enums/ListenLensPushResponse_ExcludedLens_Code.html#UNRECOGNIZED\",\"classes\":\"\",\"parent\":\"ListenLensPushResponse_ExcludedLens_Code\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,39.89]],[\"comment/0\",[]],[\"name/1\",[1,39.89]],[\"comment/1\",[]],[\"name/2\",[2,39.89]],[\"comment/2\",[]],[\"name/3\",[3,39.89]],[\"comment/3\",[]],[\"name/4\",[4,39.89]],[\"comment/4\",[]],[\"name/5\",[5,39.89]],[\"comment/5\",[]],[\"name/6\",[6,39.89]],[\"comment/6\",[]],[\"name/7\",[7,39.89]],[\"comment/7\",[]],[\"name/8\",[8,39.89]],[\"comment/8\",[]],[\"name/9\",[9,39.89]],[\"comment/9\",[]],[\"name/10\",[10,39.89]],[\"comment/10\",[]],[\"name/11\",[11,39.89]],[\"comment/11\",[]],[\"name/12\",[12,39.89]],[\"comment/12\",[]],[\"name/13\",[13,26.897]],[\"comment/13\",[]],[\"name/14\",[14,28.904]],[\"comment/14\",[]],[\"name/15\",[15,31.417]],[\"comment/15\",[]],[\"name/16\",[16,39.89]],[\"comment/16\",[]],[\"name/17\",[13,26.897]],[\"comment/17\",[]],[\"name/18\",[14,28.904]],[\"comment/18\",[]],[\"name/19\",[15,31.417]],[\"comment/19\",[]],[\"name/20\",[17,39.89]],[\"comment/20\",[]],[\"name/21\",[18,39.89]],[\"comment/21\",[]],[\"name/22\",[19,39.89]],[\"comment/22\",[]],[\"name/23\",[13,26.897]],[\"comment/23\",[]],[\"name/24\",[14,28.904]],[\"comment/24\",[]],[\"name/25\",[15,31.417]],[\"comment/25\",[]],[\"name/26\",[20,39.89]],[\"comment/26\",[]],[\"name/27\",[21,39.89]],[\"comment/27\",[]],[\"name/28\",[22,39.89]],[\"comment/28\",[]],[\"name/29\",[13,26.897]],[\"comment/29\",[]],[\"name/30\",[23,39.89]],[\"comment/30\",[]],[\"name/31\",[24,39.89]],[\"comment/31\",[]],[\"name/32\",[25,39.89]],[\"comment/32\",[]],[\"name/33\",[26,39.89]],[\"comment/33\",[]],[\"name/34\",[27,39.89]],[\"comment/34\",[]],[\"name/35\",[14,28.904]],[\"comment/35\",[]],[\"name/36\",[28,39.89]],[\"comment/36\",[]],[\"name/37\",[29,39.89]],[\"comment/37\",[]],[\"name/38\",[13,26.897]],[\"comment/38\",[]],[\"name/39\",[30,39.89]],[\"comment/39\",[]],[\"name/40\",[31,39.89]],[\"comment/40\",[]],[\"name/41\",[32,39.89]],[\"comment/41\",[]],[\"name/42\",[33,39.89]],[\"comment/42\",[]],[\"name/43\",[34,39.89]],[\"comment/43\",[]],[\"name/44\",[35,39.89]],[\"comment/44\",[]],[\"name/45\",[36,39.89]],[\"comment/45\",[]],[\"name/46\",[37,39.89]],[\"comment/46\",[]],[\"name/47\",[38,34.782]],[\"comment/47\",[]],[\"name/48\",[39,39.89]],[\"comment/48\",[]],[\"name/49\",[40,39.89]],[\"comment/49\",[]],[\"name/50\",[41,34.782]],[\"comment/50\",[]],[\"name/51\",[42,39.89]],[\"comment/51\",[]],[\"name/52\",[43,39.89]],[\"comment/52\",[]],[\"name/53\",[44,39.89]],[\"comment/53\",[]],[\"name/54\",[45,39.89]],[\"comment/54\",[]],[\"name/55\",[46,39.89]],[\"comment/55\",[]],[\"name/56\",[47,39.89]],[\"comment/56\",[]],[\"name/57\",[48,39.89]],[\"comment/57\",[]],[\"name/58\",[49,39.89]],[\"comment/58\",[]],[\"name/59\",[50,39.89]],[\"comment/59\",[]],[\"name/60\",[51,39.89]],[\"comment/60\",[]],[\"name/61\",[52,39.89]],[\"comment/61\",[]],[\"name/62\",[53,39.89]],[\"comment/62\",[]],[\"name/63\",[54,39.89]],[\"comment/63\",[]],[\"name/64\",[55,39.89]],[\"comment/64\",[]],[\"name/65\",[56,39.89]],[\"comment/65\",[]],[\"name/66\",[57,39.89]],[\"comment/66\",[]],[\"name/67\",[58,39.89]],[\"comment/67\",[]],[\"name/68\",[59,39.89]],[\"comment/68\",[]],[\"name/69\",[60,39.89]],[\"comment/69\",[]],[\"name/70\",[61,39.89]],[\"comment/70\",[]],[\"name/71\",[62,34.782]],[\"comment/71\",[]],[\"name/72\",[63,39.89]],[\"comment/72\",[]],[\"name/73\",[64,39.89]],[\"comment/73\",[]],[\"name/74\",[38,34.782]],[\"comment/74\",[]],[\"name/75\",[41,34.782]],[\"comment/75\",[]],[\"name/76\",[65,39.89]],[\"comment/76\",[]],[\"name/77\",[66,39.89]],[\"comment/77\",[]],[\"name/78\",[67,39.89]],[\"comment/78\",[]],[\"name/79\",[62,34.782]],[\"comment/79\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":13,\"name\":{\"13\":{},\"17\":{},\"23\":{},\"29\":{},\"38\":{}},\"comment\":{}}],[\"aborted\",{\"_index\":47,\"name\":{\"56\":{}},\"comment\":{}}],[\"already_exists\",{\"_index\":42,\"name\":{\"51\":{}},\"comment\":{}}],[\"archived_or_invisible\",{\"_index\":66,\"name\":{\"77\":{}},\"comment\":{}}],[\"camerafacingpreference\",{\"_index\":30,\"name\":{\"39\":{}},\"comment\":{}}],[\"cancelled\",{\"_index\":37,\"name\":{\"46\":{}},\"comment\":{}}],[\"cause\",{\"_index\":15,\"name\":{\"15\":{},\"19\":{},\"25\":{}},\"comment\":{}}],[\"cloud_storage_failure\",{\"_index\":61,\"name\":{\"70\":{}},\"comment\":{}}],[\"code\",{\"_index\":35,\"name\":{\"44\":{}},\"comment\":{}}],[\"communicationerrorevent\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"contains_music\",{\"_index\":67,\"name\":{\"78\":{}},\"comment\":{}}],[\"content_too_large\",{\"_index\":57,\"name\":{\"66\":{}},\"comment\":{}}],[\"data_loss\",{\"_index\":52,\"name\":{\"61\":{}},\"comment\":{}}],[\"deadline_exceeded\",{\"_index\":40,\"name\":{\"49\":{}},\"comment\":{}}],[\"decryption_failed\",{\"_index\":54,\"name\":{\"63\":{}},\"comment\":{}}],[\"errorevent\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"events\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"extension\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"failed_precondition\",{\"_index\":46,\"name\":{\"55\":{}},\"comment\":{}}],[\"featuremetadata\",{\"_index\":34,\"name\":{\"43\":{}},\"comment\":{}}],[\"genericerrorevent\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"groupid\",{\"_index\":27,\"name\":{\"34\":{}},\"comment\":{}}],[\"grpccode\",{\"_index\":17,\"name\":{\"20\":{}},\"comment\":{}}],[\"grpcstatus\",{\"_index\":18,\"name\":{\"21\":{}},\"comment\":{}}],[\"iconurl\",{\"_index\":28,\"name\":{\"36\":{}},\"comment\":{}}],[\"id\",{\"_index\":26,\"name\":{\"33\":{}},\"comment\":{}}],[\"in_progress\",{\"_index\":56,\"name\":{\"65\":{}},\"comment\":{}}],[\"incompatible_lens_core_version\",{\"_index\":65,\"name\":{\"76\":{}},\"comment\":{}}],[\"internal\",{\"_index\":50,\"name\":{\"59\":{}},\"comment\":{}}],[\"invalid_argument\",{\"_index\":39,\"name\":{\"48\":{}},\"comment\":{}}],[\"invalid_media\",{\"_index\":55,\"name\":{\"64\":{}},\"comment\":{}}],[\"lens\",{\"_index\":25,\"name\":{\"32\":{}},\"comment\":{}}],[\"lenscreator\",{\"_index\":32,\"name\":{\"41\":{}},\"comment\":{}}],[\"lensexcludederrorevent\",{\"_index\":19,\"name\":{\"22\":{}},\"comment\":{}}],[\"lensid\",{\"_index\":20,\"name\":{\"26\":{}},\"comment\":{}}],[\"lensreceivedevent\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"listenlenspushresponse_excludedlens_code\",{\"_index\":63,\"name\":{\"72\":{}},\"comment\":{}}],[\"name\",{\"_index\":14,\"name\":{\"14\":{},\"18\":{},\"24\":{},\"35\":{}},\"comment\":{}}],[\"not_found\",{\"_index\":41,\"name\":{\"50\":{},\"75\":{}},\"comment\":{}}],[\"not_modified\",{\"_index\":53,\"name\":{\"62\":{}},\"comment\":{}}],[\"ok\",{\"_index\":36,\"name\":{\"45\":{}},\"comment\":{}}],[\"out_of_range\",{\"_index\":48,\"name\":{\"57\":{}},\"comment\":{}}],[\"permission_denied\",{\"_index\":43,\"name\":{\"52\":{}},\"comment\":{}}],[\"preview\",{\"_index\":31,\"name\":{\"40\":{}},\"comment\":{}}],[\"push2web\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"push2webevents\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"reason\",{\"_index\":21,\"name\":{\"27\":{}},\"comment\":{}}],[\"resource_exhausted\",{\"_index\":45,\"name\":{\"54\":{}},\"comment\":{}}],[\"snapcode\",{\"_index\":33,\"name\":{\"42\":{}},\"comment\":{}}],[\"state\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"subscribe\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"subscribed\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"subscriptionchangedevent\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"subscriptioninstance\",{\"_index\":22,\"name\":{\"28\":{}},\"comment\":{}}],[\"unauthenticated\",{\"_index\":44,\"name\":{\"53\":{}},\"comment\":{}}],[\"unavailable\",{\"_index\":51,\"name\":{\"60\":{}},\"comment\":{}}],[\"unimplemented\",{\"_index\":49,\"name\":{\"58\":{}},\"comment\":{}}],[\"unknown\",{\"_index\":38,\"name\":{\"47\":{},\"74\":{}},\"comment\":{}}],[\"unrecognized\",{\"_index\":62,\"name\":{\"71\":{},\"79\":{}},\"comment\":{}}],[\"unset\",{\"_index\":64,\"name\":{\"73\":{}},\"comment\":{}}],[\"unsubscribe\",{\"_index\":23,\"name\":{\"30\":{}},\"comment\":{}}],[\"unsubscribed\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"updateaccesstoken\",{\"_index\":24,\"name\":{\"31\":{}},\"comment\":{}}],[\"url_content_type_not_whitelisted\",{\"_index\":59,\"name\":{\"68\":{}},\"comment\":{}}],[\"url_download_failure\",{\"_index\":60,\"name\":{\"69\":{}},\"comment\":{}}],[\"url_protocol_not_supported\",{\"_index\":58,\"name\":{\"67\":{}},\"comment\":{}}],[\"vendordata\",{\"_index\":29,\"name\":{\"37\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Push2Web | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Push2Web | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -139,7 +139,7 @@ using Snapchat account, you can get access token from Login Kit.</p>
139
139
  <li><a href="#extension" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-262144"></use></svg><span>extension</span></a></li>
140
140
  <li><a href="#subscribe" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>subscribe</span></a></li></ul></div></details></div>
141
141
  <div class="site-menu">
142
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
142
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
143
143
  <ul class="tsd-small-nested-navigation">
144
144
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
145
145
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Code | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Code | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -178,7 +178,7 @@
178
178
  <li><a href="#CLOUD_STORAGE_FAILURE" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>CLOUD_<wbr/>STORAGE_<wbr/>FAILURE</span></a></li>
179
179
  <li><a href="#UNRECOGNIZED" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>UNRECOGNIZED</span></a></li></ul></div></details></div>
180
180
  <div class="site-menu">
181
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
181
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
182
182
  <ul class="tsd-small-nested-navigation">
183
183
  <li><a href="State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
184
184
  <li><a href="ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ListenLensPushResponse_ExcludedLens_Code | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ListenLensPushResponse_ExcludedLens_Code | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -78,7 +78,7 @@
78
78
  <li><a href="#CONTAINS_MUSIC" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>CONTAINS_<wbr/>MUSIC</span></a></li>
79
79
  <li><a href="#UNRECOGNIZED" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>UNRECOGNIZED</span></a></li></ul></div></details></div>
80
80
  <div class="site-menu">
81
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
81
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
82
82
  <ul class="tsd-small-nested-navigation">
83
83
  <li><a href="State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
84
84
  <li><a href="ListenLensPushResponse_ExcludedLens_Code.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>State | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>State | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -59,7 +59,7 @@
59
59
  <li><a href="#Subscribed" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>Subscribed</span></a></li>
60
60
  <li><a href="#Unsubscribed" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>Unsubscribed</span></a></li></ul></div></details></div>
61
61
  <div class="site-menu">
62
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
62
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
63
63
  <ul class="tsd-small-nested-navigation">
64
64
  <li><a href="State.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
65
65
  <li><a href="ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base=".">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,12 +6,12 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
13
13
  <div class="tsd-page-title">
14
- <h2>CameraKit Web SDK - Push 2 Web - v0.13.0</h2></div>
14
+ <h2>CameraKit Web SDK - Push 2 Web - v0.14.0</h2></div>
15
15
  <div class="tsd-panel tsd-typography"><a id="md:snap-camera-kit-web-sdk---push-to-web-extension" class="tsd-anchor"></a><h1><a href="#md:snap-camera-kit-web-sdk---push-to-web-extension">Snap Camera Kit Web SDK - Push to Web Extension</a></h1><p>This extension for <a href="https://www.npmjs.com/package/@snap/camera-kit">Camera Kit Web SDK</a> package, allows users to send lenses created in <a href="https://ar.snap.com/lens-studio">Lens Studio</a> to their web pages. Simply create a lens in Lens Studio and then click the &quot;Send to Camera Kit&quot; button.</p>
16
16
  <a id="md:prerequisites" class="tsd-anchor"></a><h2><a href="#md:prerequisites">Prerequisites</a></h2><p>Web pages should be integrated with Snap Login Kit in advance. This will allow users to sign in to your web page using their Snapchat account.</p>
17
17
  <p>For quick integration, the Client-Side Only Web Application Integration method can be used. This method does not require any changes to the server-side code of your web page. Instead, it uses JavaScript to interact with the Snap Login Kit API.</p>
@@ -69,7 +69,7 @@
69
69
  <li><a href="#md:usage"><span>Usage</span></a></li>
70
70
  <li><a href="#md:documentation"><span>Documentation</span></a></li></ul></li></ul></li></ul></div></details></div>
71
71
  <div class="site-menu">
72
- <nav class="tsd-navigation"><a href="modules.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
72
+ <nav class="tsd-navigation"><a href="modules.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
73
73
  <ul class="tsd-small-nested-navigation">
74
74
  <li><a href="enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
75
75
  <li><a href="enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Lens | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Lens | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -27,6 +27,7 @@
27
27
  <section class="tsd-index-section">
28
28
  <h3 class="tsd-index-heading">Properties</h3>
29
29
  <div class="tsd-index-list"><a href="Lens.html#id" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-1024"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g></svg><span>id</span></a>
30
+ <a href="Lens.html#groupId" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>group<wbr/>Id</span></a>
30
31
  <a href="Lens.html#name" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>name</span></a>
31
32
  <a href="Lens.html#iconUrl" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>icon<wbr/>Url</span></a>
32
33
  <a href="Lens.html#vendorData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>vendor<wbr/>Data</span></a>
@@ -34,6 +35,7 @@
34
35
  <a href="Lens.html#preview" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>preview</span></a>
35
36
  <a href="Lens.html#lensCreator" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>lens<wbr/>Creator</span></a>
36
37
  <a href="Lens.html#snapcode" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>snapcode</span></a>
38
+ <a href="Lens.html#featureMetadata" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>feature<wbr/>Metadata</span></a>
37
39
  </div></section></div></details></section></section>
38
40
  <section class="tsd-panel-group tsd-member-group">
39
41
  <h2>Properties</h2>
@@ -45,6 +47,13 @@
45
47
  and therefore may require additional processing depending on usages.</p>
46
48
  </div>
47
49
  <div class="tsd-comment tsd-typography"></div></section>
50
+ <section class="tsd-panel tsd-member"><a id="groupId" class="tsd-anchor"></a>
51
+ <h3 class="tsd-anchor-link"><span>group<wbr/>Id</span><a href="#groupId" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
52
+ <div class="tsd-signature"><span class="tsd-kind-property">group<wbr/>Id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
53
+ <div class="tsd-comment tsd-typography"><p>The unique identifier for the group that this lens is a part of,
54
+ correlating to a collection of lenses grouped for organizational or functional purposes.</p>
55
+ </div>
56
+ <div class="tsd-comment tsd-typography"></div></section>
48
57
  <section class="tsd-panel tsd-member"><a id="name" class="tsd-anchor"></a>
49
58
  <h3 class="tsd-anchor-link"><span>name</span><a href="#name" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
50
59
  <div class="tsd-signature"><span class="tsd-kind-property">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
@@ -96,6 +105,12 @@ and therefore may require additional processing depending on usages.</p>
96
105
  <div class="tsd-comment tsd-typography"><p>A <a href="https://scan.snapchat.com/snapcodes">snapcode</a> that represents the lens if available.</p>
97
106
  <p>The snapcode points to the lens in the Snapchat app, when used on mobile, or a dedicated web page.</p>
98
107
  </div>
108
+ <div class="tsd-comment tsd-typography"></div></section>
109
+ <section class="tsd-panel tsd-member"><a id="featureMetadata" class="tsd-anchor"></a>
110
+ <h3 class="tsd-anchor-link"><span>feature<wbr/>Metadata</span><a href="#featureMetadata" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
111
+ <div class="tsd-signature"><span class="tsd-kind-property">feature<wbr/>Metadata</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type ">Any</span><span class="tsd-signature-symbol">[]</span></div>
112
+ <div class="tsd-comment tsd-typography"><p>Metadata pertaining to a specific set of lens features</p>
113
+ </div>
99
114
  <div class="tsd-comment tsd-typography"></div></section></section></div>
100
115
  <div class="col-sidebar">
101
116
  <div class="page-menu">
@@ -115,15 +130,17 @@ and therefore may require additional processing depending on usages.</p>
115
130
  <div class="tsd-accordion-details">
116
131
  <ul>
117
132
  <li><a href="#id" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>id</span></a></li>
133
+ <li><a href="#groupId" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>group<wbr/>Id</span></a></li>
118
134
  <li><a href="#name" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>name</span></a></li>
119
135
  <li><a href="#iconUrl" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>icon<wbr/>Url</span></a></li>
120
136
  <li><a href="#vendorData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>vendor<wbr/>Data</span></a></li>
121
137
  <li><a href="#cameraFacingPreference" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>camera<wbr/>Facing<wbr/>Preference</span></a></li>
122
138
  <li><a href="#preview" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>preview</span></a></li>
123
139
  <li><a href="#lensCreator" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>lens<wbr/>Creator</span></a></li>
124
- <li><a href="#snapcode" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>snapcode</span></a></li></ul></div></details></div>
140
+ <li><a href="#snapcode" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>snapcode</span></a></li>
141
+ <li><a href="#featureMetadata" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>feature<wbr/>Metadata</span></a></li></ul></div></details></div>
125
142
  <div class="site-menu">
126
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
143
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
127
144
  <ul class="tsd-small-nested-navigation">
128
145
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
129
146
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base=".">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,12 +6,12 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
13
13
  <div class="tsd-page-title">
14
- <h2>CameraKit Web SDK - Push 2 Web - v0.13.0</h2></div>
14
+ <h2>CameraKit Web SDK - Push 2 Web - v0.14.0</h2></div>
15
15
  <section class="tsd-panel-group tsd-index-group">
16
16
  <section class="tsd-panel tsd-index-panel">
17
17
  <h3 class="tsd-index-heading uppercase">Index</h3>
@@ -48,7 +48,7 @@
48
48
  <div class="tsd-theme-toggle">
49
49
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
50
50
  <div class="site-menu">
51
- <nav class="tsd-navigation"><a href="modules.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
51
+ <nav class="tsd-navigation"><a href="modules.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
52
52
  <ul class="tsd-small-nested-navigation">
53
53
  <li><a href="enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>State</span></a></li>
54
54
  <li><a href="enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CommunicationErrorEvent | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CommunicationErrorEvent | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -56,7 +56,7 @@
56
56
  <div class="tsd-theme-toggle">
57
57
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
58
58
  <div class="site-menu">
59
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
59
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
60
60
  <ul class="tsd-small-nested-navigation">
61
61
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
62
62
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ErrorEvent | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ErrorEvent | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -30,7 +30,7 @@
30
30
  <div class="tsd-theme-toggle">
31
31
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
32
32
  <div class="site-menu">
33
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
33
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
34
34
  <ul class="tsd-small-nested-navigation">
35
35
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
36
36
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GenericErrorEvent | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GenericErrorEvent | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -46,7 +46,7 @@
46
46
  <div class="tsd-theme-toggle">
47
47
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
48
48
  <div class="site-menu">
49
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
49
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
50
50
  <ul class="tsd-small-nested-navigation">
51
51
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
52
52
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>LensExcludedErrorEvent | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>LensExcludedErrorEvent | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -40,7 +40,9 @@
40
40
  <h5><span class="tsd-kind-property">reason</span><span class="tsd-signature-symbol">: </span><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html" class="tsd-signature-type tsd-kind-enum">ListenLensPushResponse_ExcludedLens_Code</a></h5>
41
41
  <div class="tsd-comment tsd-typography"><p>Contains the reason why the lens was excluded.</p>
42
42
  </div>
43
- <div class="tsd-comment tsd-typography"></div></li></ul></div>
43
+ <div class="tsd-comment tsd-typography">
44
+ <h4>Deprecated</h4><p>Use <code>cause.message</code> instead.</p>
45
+ </div></li></ul></div>
44
46
  <div class="tsd-comment tsd-typography"></div></div>
45
47
  <div class="col-sidebar">
46
48
  <div class="page-menu">
@@ -56,7 +58,7 @@
56
58
  <div class="tsd-theme-toggle">
57
59
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
58
60
  <div class="site-menu">
59
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
61
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
60
62
  <ul class="tsd-small-nested-navigation">
61
63
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
62
64
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>LensReceivedEvent | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>LensReceivedEvent | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -30,7 +30,7 @@
30
30
  <div class="tsd-theme-toggle">
31
31
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
32
32
  <div class="site-menu">
33
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
33
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
34
34
  <ul class="tsd-small-nested-navigation">
35
35
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
36
36
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Push2WebEvents | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Push2WebEvents | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -30,7 +30,7 @@
30
30
  <div class="tsd-theme-toggle">
31
31
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
32
32
  <div class="site-menu">
33
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
33
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
34
34
  <ul class="tsd-small-nested-navigation">
35
35
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
36
36
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SubscriptionChangedEvent | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SubscriptionChangedEvent | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -30,7 +30,7 @@
30
30
  <div class="tsd-theme-toggle">
31
31
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
32
32
  <div class="site-menu">
33
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
33
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
34
34
  <ul class="tsd-small-nested-navigation">
35
35
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
36
36
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SubscriptionInstance | CameraKit Web SDK - Push 2 Web - v0.13.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SubscriptionInstance | CameraKit Web SDK - Push 2 Web - v0.14.0</title><meta name="description" content="Documentation for CameraKit Web SDK - Push 2 Web"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/search.js" id="tsd-search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,7 +6,7 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.13.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">CameraKit Web SDK - Push 2 Web - v0.14.0</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-content">
@@ -60,7 +60,7 @@ in case the previous one has expired.</p>
60
60
  <div class="tsd-theme-toggle">
61
61
  <h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div>
62
62
  <div class="site-menu">
63
- <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.13.0</span></a>
63
+ <nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-4"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g></svg><span>Camera<wbr/>Kit <wbr/>Web SDK -<wbr/> <wbr/>Push 2 <wbr/>Web -<wbr/> v0.14.0</span></a>
64
64
  <ul class="tsd-small-nested-navigation">
65
65
  <li><a href="../enums/State.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-8"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g></svg><span>State</span></a></li>
66
66
  <li><a href="../enums/ListenLensPushResponse_ExcludedLens_Code.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-8"></use></svg><span>Listen<wbr/>Lens<wbr/>Push<wbr/>Response_<wbr/>Excluded<wbr/>Lens_<wbr/>Code</span></a></li>
@@ -1,4 +1,4 @@
1
- [CameraKit Web SDK - Push 2 Web - v0.13.0](../README.md) / [Exports](../modules.md) / Push2Web
1
+ [CameraKit Web SDK - Push 2 Web - v0.14.0](../README.md) / [Exports](../modules.md) / Push2Web
2
2
 
3
3
  # Class: Push2Web
4
4
 
@@ -1,4 +1,4 @@
1
- [CameraKit Web SDK - Push 2 Web - v0.13.0](../README.md) / [Exports](../modules.md) / Code
1
+ [CameraKit Web SDK - Push 2 Web - v0.14.0](../README.md) / [Exports](../modules.md) / Code
2
2
 
3
3
  # Enumeration: Code
4
4
 
@@ -1,4 +1,4 @@
1
- [CameraKit Web SDK - Push 2 Web - v0.13.0](../README.md) / [Exports](../modules.md) / ListenLensPushResponse\_ExcludedLens\_Code
1
+ [CameraKit Web SDK - Push 2 Web - v0.14.0](../README.md) / [Exports](../modules.md) / ListenLensPushResponse\_ExcludedLens\_Code
2
2
 
3
3
  # Enumeration: ListenLensPushResponse\_ExcludedLens\_Code
4
4
 
@@ -1,4 +1,4 @@
1
- [CameraKit Web SDK - Push 2 Web - v0.13.0](../README.md) / [Exports](../modules.md) / State
1
+ [CameraKit Web SDK - Push 2 Web - v0.14.0](../README.md) / [Exports](../modules.md) / State
2
2
 
3
3
  # Enumeration: State
4
4
 
@@ -1,4 +1,4 @@
1
- [CameraKit Web SDK - Push 2 Web - v0.13.0](../README.md) / [Exports](../modules.md) / Lens
1
+ [CameraKit Web SDK - Push 2 Web - v0.14.0](../README.md) / [Exports](../modules.md) / Lens
2
2
 
3
3
  # Interface: Lens
4
4
 
@@ -7,6 +7,7 @@
7
7
  ### Properties
8
8
 
9
9
  - [id](Lens.md#id)
10
+ - [groupId](Lens.md#groupid)
10
11
  - [name](Lens.md#name)
11
12
  - [iconUrl](Lens.md#iconurl)
12
13
  - [vendorData](Lens.md#vendordata)
@@ -14,6 +15,7 @@
14
15
  - [preview](Lens.md#preview)
15
16
  - [lensCreator](Lens.md#lenscreator)
16
17
  - [snapcode](Lens.md#snapcode)
18
+ - [featureMetadata](Lens.md#featuremetadata)
17
19
 
18
20
  ## Properties
19
21
 
@@ -28,6 +30,15 @@ and therefore may require additional processing depending on usages.
28
30
 
29
31
  ___
30
32
 
33
+ ### groupId
34
+
35
+ • **groupId**: `string`
36
+
37
+ The unique identifier for the group that this lens is a part of,
38
+ correlating to a collection of lenses grouped for organizational or functional purposes.
39
+
40
+ ___
41
+
31
42
  ### name
32
43
 
33
44
  • **name**: `string`
@@ -93,3 +104,11 @@ ___
93
104
  A [snapcode](https://scan.snapchat.com/snapcodes) that represents the lens if available.
94
105
 
95
106
  The snapcode points to the lens in the Snapchat app, when used on mobile, or a dedicated web page.
107
+
108
+ ___
109
+
110
+ ### featureMetadata
111
+
112
+ • **featureMetadata**: `Any`[]
113
+
114
+ Metadata pertaining to a specific set of lens features
@@ -1,6 +1,6 @@
1
- [CameraKit Web SDK - Push 2 Web - v0.13.0](README.md) / Exports
1
+ [CameraKit Web SDK - Push 2 Web - v0.14.0](README.md) / Exports
2
2
 
3
- # CameraKit Web SDK - Push 2 Web - v0.13.0
3
+ # CameraKit Web SDK - Push 2 Web - v0.14.0
4
4
 
5
5
  ## Table of contents
6
6
 
@@ -76,7 +76,7 @@ This error will occur if the lens is excluded from push for any reason.
76
76
  | `name` | ``"LensExcludedError"`` | Type of the event. |
77
77
  | `cause` | `Error` | The reason of the error event. |
78
78
  | `lensId` | `number` | Lens id |
79
- | `reason` | [`ListenLensPushResponse_ExcludedLens_Code`](enums/ListenLensPushResponse_ExcludedLens_Code.md) | Contains the reason why the lens was excluded. |
79
+ | `reason` | [`ListenLensPushResponse_ExcludedLens_Code`](enums/ListenLensPushResponse_ExcludedLens_Code.md) | Contains the reason why the lens was excluded. **`Deprecated`** Use `cause.message` instead. |
80
80
 
81
81
  ___
82
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snap/push2web",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "description": "Extension for Camera Kit Web SDK. Create a lens in Lens Studio and send it to your web page.",
6
6
  "homepage": "https://ar.snap.com/camera-kit",
@@ -26,7 +26,7 @@
26
26
  "typescript": "5.0.4"
27
27
  },
28
28
  "peerDependencies": {
29
- "@snap/camera-kit": ">=0.13.0-alpha.1"
29
+ "@snap/camera-kit": ">=0.14.0-alpha.1"
30
30
  },
31
31
  "dependencies": {
32
32
  "@improbable-eng/grpc-web": "^0.15.0",