@acm-uiuc/js-shared 3.0.0 → 3.0.1

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/orgs.d.ts CHANGED
@@ -141,6 +141,7 @@ export declare const Organizations: {
141
141
  readonly shortcode: "hackillinois";
142
142
  };
143
143
  };
144
+ export declare const AllOrganizationNameList: ("ACM" | "SIGPwny" | "SIGCHI" | "GameBuilders" | "SIGAIDA" | "SIGGRAPH" | "ICPC" | "SIGMobile" | "SIGMusic" | "GLUG" | "SIGNLL" | "SIGma" | "SIGQuantum" | "SIGecom" | "SIGPLAN" | "SIGPolicy" | "SIGARCH" | "SIGRobotics" | "SIGtricity" | "Infrastructure Committee" | "Social Committee" | "Mentorship Committee" | "Academic Committee" | "Corporate Committee" | "Marketing Committee" | "Reflections | Projections" | "HackIllinois")[];
144
145
  export type OrganizationId = keyof typeof Organizations;
145
146
  export type Organization = (typeof Organizations)[OrganizationId];
146
147
  export type OrganizationName = Organization["name"];
package/dist/orgs.js CHANGED
@@ -34,6 +34,7 @@ export const Organizations = {
34
34
  "C07": { name: "Reflections | Projections", type: OrgType.COMMITTEE, shortcode: "reflproj" },
35
35
  "C08": { name: "HackIllinois", type: OrgType.COMMITTEE, shortcode: "hackillinois" },
36
36
  };
37
+ export const AllOrganizationNameList = Object.values(Organizations).map(x => x.name);
37
38
  export function getOrgsByType(type) {
38
39
  return Object.entries(Organizations)
39
40
  .filter(([_, org]) => org.type === type)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acm-uiuc/js-shared",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "ACM UIUC Shared JS code",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",