need4deed-sdk 0.0.74 → 0.0.76
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.
|
@@ -115,6 +115,7 @@ export interface ApiOpportunityGetList {
|
|
|
115
115
|
activities: OptionById[];
|
|
116
116
|
languages: ApiLanguage[];
|
|
117
117
|
availability: ApiAvailability[];
|
|
118
|
+
accompanyingDetails: ApiOpportunityAccompanyingDetails;
|
|
118
119
|
}
|
|
119
120
|
export interface ApiOpportunityGet extends ApiOpportunityGetList {
|
|
120
121
|
createdAt: Date;
|
|
@@ -125,7 +126,6 @@ export interface ApiOpportunityGet extends ApiOpportunityGetList {
|
|
|
125
126
|
comments: ApiComment[];
|
|
126
127
|
contact: ApiOpportunityContact;
|
|
127
128
|
agent: ApiOpportunityAgent;
|
|
128
|
-
accompanyingDetails: ApiOpportunityAccompanyingDetails;
|
|
129
129
|
}
|
|
130
130
|
export type ApiOpportunityLean = Omit<ApiOpportunityGet, "comments">;
|
|
131
131
|
export type ApiOpportunityPatch = Partial<{
|
package/dist/types/api/time.d.ts
CHANGED