@jealous-robot-dev/shared-types-responses 1.21.1 → 1.21.2

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.
@@ -23,6 +23,11 @@ export interface UserInSearch {
23
23
  joined_in: string;
24
24
  ppu: string;
25
25
  }
26
+ export declare enum UserSearchCtxType {
27
+ USERNAME = "USERNAME",
28
+ NAMES = "NAMES"
29
+ }
30
+ export declare const USCTlist: UserSearchCtxType[];
26
31
  export declare enum UserSearchQueryTypes {
27
32
  SEARCHBAR = "SEARCHBAR",
28
33
  PAGE = "PAGE"
@@ -1,6 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.USQTlist = exports.UserSearchQueryTypes = void 0;
3
+ exports.USQTlist = exports.UserSearchQueryTypes = exports.USCTlist = exports.UserSearchCtxType = void 0;
4
+ var UserSearchCtxType;
5
+ (function (UserSearchCtxType) {
6
+ UserSearchCtxType["USERNAME"] = "USERNAME";
7
+ UserSearchCtxType["NAMES"] = "NAMES";
8
+ })(UserSearchCtxType = exports.UserSearchCtxType || (exports.UserSearchCtxType = {}));
9
+ exports.USCTlist = [
10
+ UserSearchCtxType.NAMES, UserSearchCtxType.USERNAME
11
+ ];
4
12
  var UserSearchQueryTypes;
5
13
  (function (UserSearchQueryTypes) {
6
14
  UserSearchQueryTypes["SEARCHBAR"] = "SEARCHBAR";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jealous-robot-dev/shared-types-responses",
3
- "version": "1.21.1",
3
+ "version": "1.21.2",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",