You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add a new operator on companyDisplayNames filter to further support fuzzy match by treating input value as a multi word token
feat: Add a new option TELECOMMUTE_JOBS_EXCLUDED under enum TelecommutePreference to completely filter out the telecommute jobs in response
docs: Deprecate option TELECOMMUTE_EXCLUDED under enum TelecommutePreference
PiperOrigin-RevId: 450699841
// The value will be treated as a multi word token and the company name must
111
+
// contain a case insensitive match of the value. Using this function may
112
+
// increase latency.
113
+
//
114
+
// Sample Value: `MULTI_WORD_TOKEN_MATCH(google)`
107
115
//
108
116
// If a value isn't specified, jobs within the search results are
109
117
// associated with any company.
@@ -193,11 +201,15 @@ message LocationFilter {
193
201
// Default value if the telecommute preference isn't specified.
194
202
TELECOMMUTE_PREFERENCE_UNSPECIFIED=0;
195
203
196
-
// Exclude telecommute jobs.
197
-
TELECOMMUTE_EXCLUDED=1;
204
+
// Deprecated: Ignore telecommute status of jobs. Use
205
+
// TELECOMMUTE_JOBS_EXCLUDED if want to exclude telecommute jobs.
206
+
TELECOMMUTE_EXCLUDED=1 [deprecated = true];
198
207
199
208
// Allow telecommute jobs.
200
209
TELECOMMUTE_ALLOWED=2;
210
+
211
+
// Exclude telecommute jobs.
212
+
TELECOMMUTE_JOBS_EXCLUDED=3;
201
213
}
202
214
203
215
// The address name, such as "Mountain View" or "Bay Area".
@@ -231,7 +243,7 @@ message LocationFilter {
231
243
232
244
// Allows the client to return jobs without a
233
245
// set location, specifically, telecommuting jobs (telecommuting is considered
234
-
// by the service as a special location.
246
+
// by the service as a special location).
235
247
// [Job.posting_region][google.cloud.talent.v4.Job.posting_region] indicates if a job permits telecommuting.
236
248
// If this field is set to [TelecommutePreference.TELECOMMUTE_ALLOWED][google.cloud.talent.v4.LocationFilter.TelecommutePreference.TELECOMMUTE_ALLOWED],
237
249
// telecommuting jobs are searched, and [address][google.cloud.talent.v4.LocationFilter.address] and [lat_lng][google.cloud.talent.v4.LocationFilter.lat_lng] are
0 commit comments