@stevenkellner/team-conduct-api 1.0.34 → 1.0.35
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.
|
@@ -35,7 +35,10 @@ export declare namespace InvitationGetInvitationFunction {
|
|
|
35
35
|
properties: PersonPrivateProperties;
|
|
36
36
|
}[]): ReturnType;
|
|
37
37
|
get personId(): Person.Id | null;
|
|
38
|
-
get persons():
|
|
38
|
+
get persons(): {
|
|
39
|
+
id: Person.Id;
|
|
40
|
+
properties: PersonPrivateProperties;
|
|
41
|
+
}[] | null;
|
|
39
42
|
get flatten(): ReturnType.Flatten;
|
|
40
43
|
}
|
|
41
44
|
namespace ReturnType {
|
|
@@ -59,7 +59,7 @@ exports.InvitationGetInvitationFunction = InvitationGetInvitationFunction;
|
|
|
59
59
|
get persons() {
|
|
60
60
|
if (!('persons' in this.personIdOrPersons))
|
|
61
61
|
return null;
|
|
62
|
-
return this.personIdOrPersons.persons
|
|
62
|
+
return this.personIdOrPersons.persons;
|
|
63
63
|
}
|
|
64
64
|
get flatten() {
|
|
65
65
|
if ('personId' in this.personIdOrPersons) {
|
package/package.json
CHANGED
|
@@ -87,10 +87,13 @@ export namespace InvitationGetInvitationFunction {
|
|
|
87
87
|
return this.personIdOrPersons.personId;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
public get persons():
|
|
90
|
+
public get persons(): {
|
|
91
|
+
id: Person.Id,
|
|
92
|
+
properties: PersonPrivateProperties,
|
|
93
|
+
}[] | null {
|
|
91
94
|
if (!('persons' in this.personIdOrPersons))
|
|
92
95
|
return null;
|
|
93
|
-
return this.personIdOrPersons.persons
|
|
96
|
+
return this.personIdOrPersons.persons;
|
|
94
97
|
}
|
|
95
98
|
|
|
96
99
|
public get flatten(): ReturnType.Flatten {
|