@vicinae/api 0.16.12 → 0.16.14

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.
package/dist/api/bus.d.ts CHANGED
@@ -88,13 +88,16 @@ type Map = {
88
88
  response: ExtractResponseType<EndpointMapping[K]>["data"];
89
89
  };
90
90
  };
91
+ type LaunchHandler = (data: extension.LaunchEventData) => void;
91
92
  declare class Bus {
92
93
  private readonly port;
93
94
  private requestMap;
94
95
  private safeRequestMap;
95
96
  private eventListeners;
97
+ private onLaunchHandlers;
96
98
  request<T extends RequestEndpoint>(endpoint: T, data: Map[T]["request"]): Promise<Result<Map[T]["response"], Error>>;
97
99
  private handleSafeMessage;
100
+ onLaunch(handler: LaunchHandler): void;
98
101
  emitCrash(errorText: string): void;
99
102
  constructor(port: MessagePort);
100
103
  listEventListeners(type: string): EventListenerInfo[];
package/dist/api/bus.js CHANGED
@@ -44,6 +44,7 @@ class Bus {
44
44
  requestMap = new Map();
45
45
  safeRequestMap = new Map();
46
46
  eventListeners = new Map();
47
+ onLaunchHandlers = [];
47
48
  async request(endpoint, data) {
48
49
  const [category, requestId] = endpoint.split(".");
49
50
  const request = extension.RequestData.create({
@@ -72,7 +73,12 @@ class Bus {
72
73
  return;
73
74
  }
74
75
  if (message.event) {
75
- const { id, generic } = message.event;
76
+ const { id, generic, launch } = message.event;
77
+ if (launch) {
78
+ for (const fn of this.onLaunchHandlers) {
79
+ fn(launch);
80
+ }
81
+ }
76
82
  //console.error('got event with id', id);
77
83
  if (generic) {
78
84
  const listeners = this.listEventListeners(id);
@@ -83,6 +89,9 @@ class Bus {
83
89
  }
84
90
  }
85
91
  }
92
+ onLaunch(handler) {
93
+ this.onLaunchHandlers.push(handler);
94
+ }
86
95
  emitCrash(errorText) {
87
96
  this.sendMessage({
88
97
  event: {
@@ -189,3 +198,4 @@ class Bus {
189
198
  * If you are using this from inside your extension, you are WRONG and you should stop.
190
199
  */
191
200
  exports.bus = new Bus(node_worker_threads_1.parentPort);
201
+ //e
@@ -23,4 +23,4 @@ var LaunchType;
23
23
  * console.log({ environment });
24
24
  * ```
25
25
  */
26
- exports.environment = {};
26
+ exports.environment = globalThis.vicinae.environ;
@@ -1,10 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.openCommandPreferences = exports.openExtensionPreferences = exports.getPreferenceValues = void 0;
4
- const worker_threads_1 = require("worker_threads");
5
4
  const getPreferenceValues = () => {
6
- const { preferenceValues = {} } = worker_threads_1.workerData;
7
- return preferenceValues;
5
+ return globalThis.vicinae.preferences;
8
6
  };
9
7
  exports.getPreferenceValues = getPreferenceValues;
10
8
  /**
@@ -4,6 +4,7 @@ import { Request as Request3, Response as Response11 } from "./clipboard";
4
4
  import { Request as Request8, Response as Response16 } from "./command";
5
5
  import { ErrorResponse } from "./common";
6
6
  import { Request as Request6, Response as Response14 } from "./file-search";
7
+ import { CommandMode } from "./manager";
7
8
  import { Request as Request5, Response as Response13 } from "./oauth";
8
9
  import { Request as Request4, Response as Response12 } from "./storage";
9
10
  import { Request as Request1, Response as Response9 } from "./ui";
@@ -42,6 +43,7 @@ export interface Event {
42
43
  id: string;
43
44
  generic?: GenericEventData | undefined;
44
45
  crash?: CrashEventData | undefined;
46
+ launch?: LaunchEventData | undefined;
45
47
  }
46
48
  export interface CrashEventData {
47
49
  text: string;
@@ -49,6 +51,30 @@ export interface CrashEventData {
49
51
  export interface GenericEventData {
50
52
  json: string;
51
53
  }
54
+ export interface LaunchEventData {
55
+ extensionName: string;
56
+ commandName: string;
57
+ mode: CommandMode;
58
+ entrypoint: string;
59
+ assetPath: string;
60
+ supportPath: string;
61
+ preferenceValues: {
62
+ [key: string]: any | undefined;
63
+ };
64
+ argumentValues: {
65
+ [key: string]: any | undefined;
66
+ };
67
+ isRaycast: boolean;
68
+ ownerOrAuthorName: string;
69
+ }
70
+ export interface LaunchEventData_PreferenceValuesEntry {
71
+ key: string;
72
+ value: any | undefined;
73
+ }
74
+ export interface LaunchEventData_ArgumentValuesEntry {
75
+ key: string;
76
+ value: any | undefined;
77
+ }
52
78
  export declare const Request: MessageFns<Request>;
53
79
  export declare const RequestData: MessageFns<RequestData>;
54
80
  export declare const Response: MessageFns<Response>;
@@ -56,6 +82,9 @@ export declare const ResponseData: MessageFns<ResponseData>;
56
82
  export declare const Event: MessageFns<Event>;
57
83
  export declare const CrashEventData: MessageFns<CrashEventData>;
58
84
  export declare const GenericEventData: MessageFns<GenericEventData>;
85
+ export declare const LaunchEventData: MessageFns<LaunchEventData>;
86
+ export declare const LaunchEventData_PreferenceValuesEntry: MessageFns<LaunchEventData_PreferenceValuesEntry>;
87
+ export declare const LaunchEventData_ArgumentValuesEntry: MessageFns<LaunchEventData_ArgumentValuesEntry>;
59
88
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
60
89
  export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
61
90
  [K in keyof T]?: DeepPartial<T[K]>;
@@ -5,7 +5,7 @@
5
5
  // protoc v6.33.1
6
6
  // source: extension.proto
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
- exports.GenericEventData = exports.CrashEventData = exports.Event = exports.ResponseData = exports.Response = exports.RequestData = exports.Request = exports.protobufPackage = void 0;
8
+ exports.LaunchEventData_ArgumentValuesEntry = exports.LaunchEventData_PreferenceValuesEntry = exports.LaunchEventData = exports.GenericEventData = exports.CrashEventData = exports.Event = exports.ResponseData = exports.Response = exports.RequestData = exports.Request = exports.protobufPackage = void 0;
9
9
  /* eslint-disable */
10
10
  const wire_1 = require("@bufbuild/protobuf/wire");
11
11
  const application_1 = require("./application");
@@ -13,6 +13,8 @@ const clipboard_1 = require("./clipboard");
13
13
  const command_1 = require("./command");
14
14
  const common_1 = require("./common");
15
15
  const file_search_1 = require("./file-search");
16
+ const struct_1 = require("./google/protobuf/struct");
17
+ const manager_1 = require("./manager");
16
18
  const oauth_1 = require("./oauth");
17
19
  const storage_1 = require("./storage");
18
20
  const ui_1 = require("./ui");
@@ -530,7 +532,7 @@ exports.ResponseData = {
530
532
  },
531
533
  };
532
534
  function createBaseEvent() {
533
- return { id: "", generic: undefined, crash: undefined };
535
+ return { id: "", generic: undefined, crash: undefined, launch: undefined };
534
536
  }
535
537
  exports.Event = {
536
538
  encode(message, writer = new wire_1.BinaryWriter()) {
@@ -543,6 +545,9 @@ exports.Event = {
543
545
  if (message.crash !== undefined) {
544
546
  exports.CrashEventData.encode(message.crash, writer.uint32(26).fork()).join();
545
547
  }
548
+ if (message.launch !== undefined) {
549
+ exports.LaunchEventData.encode(message.launch, writer.uint32(34).fork()).join();
550
+ }
546
551
  return writer;
547
552
  },
548
553
  decode(input, length) {
@@ -573,6 +578,13 @@ exports.Event = {
573
578
  message.crash = exports.CrashEventData.decode(reader, reader.uint32());
574
579
  continue;
575
580
  }
581
+ case 4: {
582
+ if (tag !== 34) {
583
+ break;
584
+ }
585
+ message.launch = exports.LaunchEventData.decode(reader, reader.uint32());
586
+ continue;
587
+ }
576
588
  }
577
589
  if ((tag & 7) === 4 || tag === 0) {
578
590
  break;
@@ -586,6 +598,7 @@ exports.Event = {
586
598
  id: isSet(object.id) ? globalThis.String(object.id) : "",
587
599
  generic: isSet(object.generic) ? exports.GenericEventData.fromJSON(object.generic) : undefined,
588
600
  crash: isSet(object.crash) ? exports.CrashEventData.fromJSON(object.crash) : undefined,
601
+ launch: isSet(object.launch) ? exports.LaunchEventData.fromJSON(object.launch) : undefined,
589
602
  };
590
603
  },
591
604
  toJSON(message) {
@@ -599,6 +612,9 @@ exports.Event = {
599
612
  if (message.crash !== undefined) {
600
613
  obj.crash = exports.CrashEventData.toJSON(message.crash);
601
614
  }
615
+ if (message.launch !== undefined) {
616
+ obj.launch = exports.LaunchEventData.toJSON(message.launch);
617
+ }
602
618
  return obj;
603
619
  },
604
620
  create(base) {
@@ -613,6 +629,9 @@ exports.Event = {
613
629
  message.crash = (object.crash !== undefined && object.crash !== null)
614
630
  ? exports.CrashEventData.fromPartial(object.crash)
615
631
  : undefined;
632
+ message.launch = (object.launch !== undefined && object.launch !== null)
633
+ ? exports.LaunchEventData.fromPartial(object.launch)
634
+ : undefined;
616
635
  return message;
617
636
  },
618
637
  };
@@ -718,6 +737,386 @@ exports.GenericEventData = {
718
737
  return message;
719
738
  },
720
739
  };
740
+ function createBaseLaunchEventData() {
741
+ return {
742
+ extensionName: "",
743
+ commandName: "",
744
+ mode: 0,
745
+ entrypoint: "",
746
+ assetPath: "",
747
+ supportPath: "",
748
+ preferenceValues: {},
749
+ argumentValues: {},
750
+ isRaycast: false,
751
+ ownerOrAuthorName: "",
752
+ };
753
+ }
754
+ exports.LaunchEventData = {
755
+ encode(message, writer = new wire_1.BinaryWriter()) {
756
+ if (message.extensionName !== "") {
757
+ writer.uint32(10).string(message.extensionName);
758
+ }
759
+ if (message.commandName !== "") {
760
+ writer.uint32(18).string(message.commandName);
761
+ }
762
+ if (message.mode !== 0) {
763
+ writer.uint32(24).int32(message.mode);
764
+ }
765
+ if (message.entrypoint !== "") {
766
+ writer.uint32(34).string(message.entrypoint);
767
+ }
768
+ if (message.assetPath !== "") {
769
+ writer.uint32(42).string(message.assetPath);
770
+ }
771
+ if (message.supportPath !== "") {
772
+ writer.uint32(50).string(message.supportPath);
773
+ }
774
+ Object.entries(message.preferenceValues).forEach(([key, value]) => {
775
+ if (value !== undefined) {
776
+ exports.LaunchEventData_PreferenceValuesEntry.encode({ key: key, value }, writer.uint32(58).fork()).join();
777
+ }
778
+ });
779
+ Object.entries(message.argumentValues).forEach(([key, value]) => {
780
+ if (value !== undefined) {
781
+ exports.LaunchEventData_ArgumentValuesEntry.encode({ key: key, value }, writer.uint32(66).fork()).join();
782
+ }
783
+ });
784
+ if (message.isRaycast !== false) {
785
+ writer.uint32(72).bool(message.isRaycast);
786
+ }
787
+ if (message.ownerOrAuthorName !== "") {
788
+ writer.uint32(82).string(message.ownerOrAuthorName);
789
+ }
790
+ return writer;
791
+ },
792
+ decode(input, length) {
793
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
794
+ const end = length === undefined ? reader.len : reader.pos + length;
795
+ const message = createBaseLaunchEventData();
796
+ while (reader.pos < end) {
797
+ const tag = reader.uint32();
798
+ switch (tag >>> 3) {
799
+ case 1: {
800
+ if (tag !== 10) {
801
+ break;
802
+ }
803
+ message.extensionName = reader.string();
804
+ continue;
805
+ }
806
+ case 2: {
807
+ if (tag !== 18) {
808
+ break;
809
+ }
810
+ message.commandName = reader.string();
811
+ continue;
812
+ }
813
+ case 3: {
814
+ if (tag !== 24) {
815
+ break;
816
+ }
817
+ message.mode = reader.int32();
818
+ continue;
819
+ }
820
+ case 4: {
821
+ if (tag !== 34) {
822
+ break;
823
+ }
824
+ message.entrypoint = reader.string();
825
+ continue;
826
+ }
827
+ case 5: {
828
+ if (tag !== 42) {
829
+ break;
830
+ }
831
+ message.assetPath = reader.string();
832
+ continue;
833
+ }
834
+ case 6: {
835
+ if (tag !== 50) {
836
+ break;
837
+ }
838
+ message.supportPath = reader.string();
839
+ continue;
840
+ }
841
+ case 7: {
842
+ if (tag !== 58) {
843
+ break;
844
+ }
845
+ const entry7 = exports.LaunchEventData_PreferenceValuesEntry.decode(reader, reader.uint32());
846
+ if (entry7.value !== undefined) {
847
+ message.preferenceValues[entry7.key] = entry7.value;
848
+ }
849
+ continue;
850
+ }
851
+ case 8: {
852
+ if (tag !== 66) {
853
+ break;
854
+ }
855
+ const entry8 = exports.LaunchEventData_ArgumentValuesEntry.decode(reader, reader.uint32());
856
+ if (entry8.value !== undefined) {
857
+ message.argumentValues[entry8.key] = entry8.value;
858
+ }
859
+ continue;
860
+ }
861
+ case 9: {
862
+ if (tag !== 72) {
863
+ break;
864
+ }
865
+ message.isRaycast = reader.bool();
866
+ continue;
867
+ }
868
+ case 10: {
869
+ if (tag !== 82) {
870
+ break;
871
+ }
872
+ message.ownerOrAuthorName = reader.string();
873
+ continue;
874
+ }
875
+ }
876
+ if ((tag & 7) === 4 || tag === 0) {
877
+ break;
878
+ }
879
+ reader.skip(tag & 7);
880
+ }
881
+ return message;
882
+ },
883
+ fromJSON(object) {
884
+ return {
885
+ extensionName: isSet(object.extensionName) ? globalThis.String(object.extensionName) : "",
886
+ commandName: isSet(object.commandName) ? globalThis.String(object.commandName) : "",
887
+ mode: isSet(object.mode) ? (0, manager_1.commandModeFromJSON)(object.mode) : 0,
888
+ entrypoint: isSet(object.entrypoint) ? globalThis.String(object.entrypoint) : "",
889
+ assetPath: isSet(object.assetPath) ? globalThis.String(object.assetPath) : "",
890
+ supportPath: isSet(object.supportPath) ? globalThis.String(object.supportPath) : "",
891
+ preferenceValues: isObject(object.preferenceValues)
892
+ ? Object.entries(object.preferenceValues).reduce((acc, [key, value]) => {
893
+ acc[key] = value;
894
+ return acc;
895
+ }, {})
896
+ : {},
897
+ argumentValues: isObject(object.argumentValues)
898
+ ? Object.entries(object.argumentValues).reduce((acc, [key, value]) => {
899
+ acc[key] = value;
900
+ return acc;
901
+ }, {})
902
+ : {},
903
+ isRaycast: isSet(object.isRaycast) ? globalThis.Boolean(object.isRaycast) : false,
904
+ ownerOrAuthorName: isSet(object.ownerOrAuthorName) ? globalThis.String(object.ownerOrAuthorName) : "",
905
+ };
906
+ },
907
+ toJSON(message) {
908
+ const obj = {};
909
+ if (message.extensionName !== "") {
910
+ obj.extensionName = message.extensionName;
911
+ }
912
+ if (message.commandName !== "") {
913
+ obj.commandName = message.commandName;
914
+ }
915
+ if (message.mode !== 0) {
916
+ obj.mode = (0, manager_1.commandModeToJSON)(message.mode);
917
+ }
918
+ if (message.entrypoint !== "") {
919
+ obj.entrypoint = message.entrypoint;
920
+ }
921
+ if (message.assetPath !== "") {
922
+ obj.assetPath = message.assetPath;
923
+ }
924
+ if (message.supportPath !== "") {
925
+ obj.supportPath = message.supportPath;
926
+ }
927
+ if (message.preferenceValues) {
928
+ const entries = Object.entries(message.preferenceValues);
929
+ if (entries.length > 0) {
930
+ obj.preferenceValues = {};
931
+ entries.forEach(([k, v]) => {
932
+ obj.preferenceValues[k] = v;
933
+ });
934
+ }
935
+ }
936
+ if (message.argumentValues) {
937
+ const entries = Object.entries(message.argumentValues);
938
+ if (entries.length > 0) {
939
+ obj.argumentValues = {};
940
+ entries.forEach(([k, v]) => {
941
+ obj.argumentValues[k] = v;
942
+ });
943
+ }
944
+ }
945
+ if (message.isRaycast !== false) {
946
+ obj.isRaycast = message.isRaycast;
947
+ }
948
+ if (message.ownerOrAuthorName !== "") {
949
+ obj.ownerOrAuthorName = message.ownerOrAuthorName;
950
+ }
951
+ return obj;
952
+ },
953
+ create(base) {
954
+ return exports.LaunchEventData.fromPartial(base ?? {});
955
+ },
956
+ fromPartial(object) {
957
+ const message = createBaseLaunchEventData();
958
+ message.extensionName = object.extensionName ?? "";
959
+ message.commandName = object.commandName ?? "";
960
+ message.mode = object.mode ?? 0;
961
+ message.entrypoint = object.entrypoint ?? "";
962
+ message.assetPath = object.assetPath ?? "";
963
+ message.supportPath = object.supportPath ?? "";
964
+ message.preferenceValues = Object.entries(object.preferenceValues ?? {}).reduce((acc, [key, value]) => {
965
+ if (value !== undefined) {
966
+ acc[key] = value;
967
+ }
968
+ return acc;
969
+ }, {});
970
+ message.argumentValues = Object.entries(object.argumentValues ?? {}).reduce((acc, [key, value]) => {
971
+ if (value !== undefined) {
972
+ acc[key] = value;
973
+ }
974
+ return acc;
975
+ }, {});
976
+ message.isRaycast = object.isRaycast ?? false;
977
+ message.ownerOrAuthorName = object.ownerOrAuthorName ?? "";
978
+ return message;
979
+ },
980
+ };
981
+ function createBaseLaunchEventData_PreferenceValuesEntry() {
982
+ return { key: "", value: undefined };
983
+ }
984
+ exports.LaunchEventData_PreferenceValuesEntry = {
985
+ encode(message, writer = new wire_1.BinaryWriter()) {
986
+ if (message.key !== "") {
987
+ writer.uint32(10).string(message.key);
988
+ }
989
+ if (message.value !== undefined) {
990
+ struct_1.Value.encode(struct_1.Value.wrap(message.value), writer.uint32(18).fork()).join();
991
+ }
992
+ return writer;
993
+ },
994
+ decode(input, length) {
995
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
996
+ const end = length === undefined ? reader.len : reader.pos + length;
997
+ const message = createBaseLaunchEventData_PreferenceValuesEntry();
998
+ while (reader.pos < end) {
999
+ const tag = reader.uint32();
1000
+ switch (tag >>> 3) {
1001
+ case 1: {
1002
+ if (tag !== 10) {
1003
+ break;
1004
+ }
1005
+ message.key = reader.string();
1006
+ continue;
1007
+ }
1008
+ case 2: {
1009
+ if (tag !== 18) {
1010
+ break;
1011
+ }
1012
+ message.value = struct_1.Value.unwrap(struct_1.Value.decode(reader, reader.uint32()));
1013
+ continue;
1014
+ }
1015
+ }
1016
+ if ((tag & 7) === 4 || tag === 0) {
1017
+ break;
1018
+ }
1019
+ reader.skip(tag & 7);
1020
+ }
1021
+ return message;
1022
+ },
1023
+ fromJSON(object) {
1024
+ return {
1025
+ key: isSet(object.key) ? globalThis.String(object.key) : "",
1026
+ value: isSet(object?.value) ? object.value : undefined,
1027
+ };
1028
+ },
1029
+ toJSON(message) {
1030
+ const obj = {};
1031
+ if (message.key !== "") {
1032
+ obj.key = message.key;
1033
+ }
1034
+ if (message.value !== undefined) {
1035
+ obj.value = message.value;
1036
+ }
1037
+ return obj;
1038
+ },
1039
+ create(base) {
1040
+ return exports.LaunchEventData_PreferenceValuesEntry.fromPartial(base ?? {});
1041
+ },
1042
+ fromPartial(object) {
1043
+ const message = createBaseLaunchEventData_PreferenceValuesEntry();
1044
+ message.key = object.key ?? "";
1045
+ message.value = object.value ?? undefined;
1046
+ return message;
1047
+ },
1048
+ };
1049
+ function createBaseLaunchEventData_ArgumentValuesEntry() {
1050
+ return { key: "", value: undefined };
1051
+ }
1052
+ exports.LaunchEventData_ArgumentValuesEntry = {
1053
+ encode(message, writer = new wire_1.BinaryWriter()) {
1054
+ if (message.key !== "") {
1055
+ writer.uint32(10).string(message.key);
1056
+ }
1057
+ if (message.value !== undefined) {
1058
+ struct_1.Value.encode(struct_1.Value.wrap(message.value), writer.uint32(18).fork()).join();
1059
+ }
1060
+ return writer;
1061
+ },
1062
+ decode(input, length) {
1063
+ const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
1064
+ const end = length === undefined ? reader.len : reader.pos + length;
1065
+ const message = createBaseLaunchEventData_ArgumentValuesEntry();
1066
+ while (reader.pos < end) {
1067
+ const tag = reader.uint32();
1068
+ switch (tag >>> 3) {
1069
+ case 1: {
1070
+ if (tag !== 10) {
1071
+ break;
1072
+ }
1073
+ message.key = reader.string();
1074
+ continue;
1075
+ }
1076
+ case 2: {
1077
+ if (tag !== 18) {
1078
+ break;
1079
+ }
1080
+ message.value = struct_1.Value.unwrap(struct_1.Value.decode(reader, reader.uint32()));
1081
+ continue;
1082
+ }
1083
+ }
1084
+ if ((tag & 7) === 4 || tag === 0) {
1085
+ break;
1086
+ }
1087
+ reader.skip(tag & 7);
1088
+ }
1089
+ return message;
1090
+ },
1091
+ fromJSON(object) {
1092
+ return {
1093
+ key: isSet(object.key) ? globalThis.String(object.key) : "",
1094
+ value: isSet(object?.value) ? object.value : undefined,
1095
+ };
1096
+ },
1097
+ toJSON(message) {
1098
+ const obj = {};
1099
+ if (message.key !== "") {
1100
+ obj.key = message.key;
1101
+ }
1102
+ if (message.value !== undefined) {
1103
+ obj.value = message.value;
1104
+ }
1105
+ return obj;
1106
+ },
1107
+ create(base) {
1108
+ return exports.LaunchEventData_ArgumentValuesEntry.fromPartial(base ?? {});
1109
+ },
1110
+ fromPartial(object) {
1111
+ const message = createBaseLaunchEventData_ArgumentValuesEntry();
1112
+ message.key = object.key ?? "";
1113
+ message.value = object.value ?? undefined;
1114
+ return message;
1115
+ },
1116
+ };
1117
+ function isObject(value) {
1118
+ return typeof value === "object" && value !== null;
1119
+ }
721
1120
  function isSet(value) {
722
1121
  return value !== null && value !== undefined;
723
1122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vicinae/api",
3
- "version": "0.16.12",
3
+ "version": "0.16.14",
4
4
  "description": "TypeScript SDK to build Vicinae extensions",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",