@jobsearch-works/firestore-models 2.0.3 → 2.0.4
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/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -156,7 +156,7 @@ interface Client {
|
|
156
156
|
readonly createdAt?: Date | string;
|
157
157
|
}
|
158
158
|
|
159
|
-
interface
|
159
|
+
interface ClientEmail {
|
160
160
|
id?: string;
|
161
161
|
messageId: string;
|
162
162
|
threadId?: string;
|
@@ -182,7 +182,7 @@ interface ClientEmails {
|
|
182
182
|
updatedAt?: Date | string;
|
183
183
|
}
|
184
184
|
|
185
|
-
interface
|
185
|
+
interface ClientGmailToken {
|
186
186
|
readonly id?: string;
|
187
187
|
accessToken: string;
|
188
188
|
refreshToken: string;
|
@@ -885,4 +885,4 @@ declare const firestorePaths: {
|
|
885
885
|
};
|
886
886
|
};
|
887
887
|
|
888
|
-
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthUser, Client,
|
888
|
+
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthUser, Client, ClientEmail, ClientGmailToken, ClientInitialQuestion, ClientInterview, ClientJobPreferences, ClientLogin, ClientPersonalData, ClientQuestion, ClientResume, ClientStatus, ClientWebsitePreferences, JobCategory, JobTitle, LocationId, UserPublic, Vacancy, VacancyCategory, VacancySuggestion, firestorePaths, jobClassifications, locations };
|
package/dist/index.d.ts
CHANGED
@@ -156,7 +156,7 @@ interface Client {
|
|
156
156
|
readonly createdAt?: Date | string;
|
157
157
|
}
|
158
158
|
|
159
|
-
interface
|
159
|
+
interface ClientEmail {
|
160
160
|
id?: string;
|
161
161
|
messageId: string;
|
162
162
|
threadId?: string;
|
@@ -182,7 +182,7 @@ interface ClientEmails {
|
|
182
182
|
updatedAt?: Date | string;
|
183
183
|
}
|
184
184
|
|
185
|
-
interface
|
185
|
+
interface ClientGmailToken {
|
186
186
|
readonly id?: string;
|
187
187
|
accessToken: string;
|
188
188
|
refreshToken: string;
|
@@ -885,4 +885,4 @@ declare const firestorePaths: {
|
|
885
885
|
};
|
886
886
|
};
|
887
887
|
|
888
|
-
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthUser, Client,
|
888
|
+
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthUser, Client, ClientEmail, ClientGmailToken, ClientInitialQuestion, ClientInterview, ClientJobPreferences, ClientLogin, ClientPersonalData, ClientQuestion, ClientResume, ClientStatus, ClientWebsitePreferences, JobCategory, JobTitle, LocationId, UserPublic, Vacancy, VacancyCategory, VacancySuggestion, firestorePaths, jobClassifications, locations };
|
package/package.json
CHANGED