need4deed-sdk 0.0.105 → 0.0.107
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/types/api/index.js
CHANGED
|
@@ -31,5 +31,6 @@ __exportStar(require("./person"), exports);
|
|
|
31
31
|
__exportStar(require("./profile"), exports);
|
|
32
32
|
__exportStar(require("./testimonial"), exports);
|
|
33
33
|
__exportStar(require("./time"), exports);
|
|
34
|
+
__exportStar(require("./trusted-domain"), exports);
|
|
34
35
|
__exportStar(require("./user"), exports);
|
|
35
36
|
__exportStar(require("./volunteer"), exports);
|
|
@@ -132,6 +132,7 @@ export interface ApiOpportunityGetList {
|
|
|
132
132
|
location: OptionById[];
|
|
133
133
|
accompanyingDetails: ApiOpportunityAccompanyingDetails;
|
|
134
134
|
agentTitle: string;
|
|
135
|
+
volunteerNames?: string[];
|
|
135
136
|
}
|
|
136
137
|
export interface ApiOpportunityGet extends ApiOpportunityGetList {
|
|
137
138
|
description: string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Email-domain allowlist for agent self-registration. A registrant whose email
|
|
3
|
+
// domain is on this list is treated as belonging to a known RAC organisation —
|
|
4
|
+
// so a brand-new representative (whose org has no existing member yet) can still
|
|
5
|
+
// register, and a join auto-approves to ACTIVE. Managed by COORDINATOR/ADMIN.
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|