need4deed-sdk 0.0.53 → 0.0.55

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.
@@ -1,6 +1,7 @@
1
1
  import { ApiComment } from "./comment";
2
+ import { OptionById } from "./common";
2
3
  import { ApiLanguage } from "./language";
3
- import { ApiAddress, ApiDistrict } from "./location";
4
+ import { ApiAddress } from "./location";
4
5
  import { ApiOrganizationGet } from "./organization";
5
6
  import { ApiPersonGet } from "./person";
6
7
  export declare enum AgentType {
@@ -69,7 +70,8 @@ export interface ApiAgentGetList {
69
70
  operatorType?: AgentOperatorType;
70
71
  operatorId?: number;
71
72
  address?: ApiAddress;
72
- district?: ApiDistrict;
73
+ district?: OptionById;
74
+ activeVolunteers: number;
73
75
  }
74
76
  export interface ApiAgentGet extends ApiAgentGetList {
75
77
  createdAt: Date;
@@ -1,6 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AgentTrustType = exports.AgentServiceType = exports.AgentVolunteerSearchType = exports.AgentEngagementStatusType = exports.AgentRoleType = exports.AgentOperatorType = void 0;
3
+ exports.AgentTrustType = exports.AgentServiceType = exports.AgentVolunteerSearchType = exports.AgentEngagementStatusType = exports.AgentRoleType = exports.AgentOperatorType = exports.AgentType = void 0;
4
+ var AgentType;
5
+ (function (AgentType) {
6
+ AgentType["RAC"] = "rac";
7
+ AgentType["NGO"] = "ngo";
8
+ })(AgentType || (exports.AgentType = AgentType = {}));
4
9
  var AgentOperatorType;
5
10
  (function (AgentOperatorType) {
6
11
  AgentOperatorType["ORGANIZATION"] = "organization";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",