@smartytalent/api-client 0.1.33-dev.4 → 0.1.33-dev.6

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.
Files changed (49) hide show
  1. package/dist/apis/EmailsApi.d.ts +11 -0
  2. package/dist/apis/EmailsApi.d.ts.map +1 -1
  3. package/dist/apis/EmailsApi.js +17 -1
  4. package/dist/apis/EmailsApi.js.map +1 -1
  5. package/dist/apis/StatesApi.d.ts +4 -6
  6. package/dist/apis/StatesApi.d.ts.map +1 -1
  7. package/dist/apis/StatesApi.js +4 -10
  8. package/dist/apis/StatesApi.js.map +1 -1
  9. package/dist/models/FinderAttributesSchema.d.ts +8 -6
  10. package/dist/models/FinderAttributesSchema.d.ts.map +1 -1
  11. package/dist/models/FinderAttributesSchema.js +6 -4
  12. package/dist/models/FinderAttributesSchema.js.map +1 -1
  13. package/dist/models/FinderAttributesSchemaQuery.d.ts +26 -0
  14. package/dist/models/FinderAttributesSchemaQuery.d.ts.map +1 -0
  15. package/dist/models/FinderAttributesSchemaQuery.js +72 -0
  16. package/dist/models/FinderAttributesSchemaQuery.js.map +1 -0
  17. package/dist/models/FinderQueryCandidatesSchema.d.ts +219 -0
  18. package/dist/models/FinderQueryCandidatesSchema.d.ts.map +1 -0
  19. package/dist/models/FinderQueryCandidatesSchema.js +111 -0
  20. package/dist/models/FinderQueryCandidatesSchema.js.map +1 -0
  21. package/dist/models/FinderQueryEmailsSchema.d.ts +132 -0
  22. package/dist/models/FinderQueryEmailsSchema.d.ts.map +1 -0
  23. package/dist/models/FinderQueryEmailsSchema.js +95 -0
  24. package/dist/models/FinderQueryEmailsSchema.js.map +1 -0
  25. package/dist/models/FinderQueryJobsSchema.d.ts +123 -0
  26. package/dist/models/FinderQueryJobsSchema.d.ts.map +1 -0
  27. package/dist/models/FinderQueryJobsSchema.js +79 -0
  28. package/dist/models/FinderQueryJobsSchema.js.map +1 -0
  29. package/dist/models/FinderQueryTalentsSchema.d.ts +195 -0
  30. package/dist/models/FinderQueryTalentsSchema.d.ts.map +1 -0
  31. package/dist/models/FinderQueryTalentsSchema.js +103 -0
  32. package/dist/models/FinderQueryTalentsSchema.js.map +1 -0
  33. package/dist/models/FinderResultHitSchema.d.ts +64 -0
  34. package/dist/models/FinderResultHitSchema.d.ts.map +1 -0
  35. package/dist/models/FinderResultHitSchema.js +61 -0
  36. package/dist/models/FinderResultHitSchema.js.map +1 -0
  37. package/dist/models/FinderResultsSchema.d.ts +40 -0
  38. package/dist/models/FinderResultsSchema.d.ts.map +1 -0
  39. package/dist/models/FinderResultsSchema.js +52 -0
  40. package/dist/models/FinderResultsSchema.js.map +1 -0
  41. package/dist/models/ListStatesFolderParameter.d.ts +22 -0
  42. package/dist/models/ListStatesFolderParameter.d.ts.map +1 -0
  43. package/dist/models/ListStatesFolderParameter.js +50 -0
  44. package/dist/models/ListStatesFolderParameter.js.map +1 -0
  45. package/dist/models/index.d.ts +8 -0
  46. package/dist/models/index.d.ts.map +1 -1
  47. package/dist/models/index.js +8 -0
  48. package/dist/models/index.js.map +1 -1
  49. package/package.json +1 -1
@@ -0,0 +1,123 @@
1
+ /**
2
+ * SmartyMeet Dev03 API REST
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.1
6
+ * Contact: developer@smartymeet.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Query shape for `type: jobs` finders.
14
+ * @export
15
+ * @interface FinderQueryJobsSchema
16
+ */
17
+ export interface FinderQueryJobsSchema {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof FinderQueryJobsSchema
22
+ */
23
+ search?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof FinderQueryJobsSchema
28
+ */
29
+ name?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof FinderQueryJobsSchema
34
+ */
35
+ description?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof FinderQueryJobsSchema
40
+ */
41
+ skillsAndExpertise?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof FinderQueryJobsSchema
46
+ */
47
+ education?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof FinderQueryJobsSchema
52
+ */
53
+ experienceAndSeniority?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof FinderQueryJobsSchema
58
+ */
59
+ jobPositions?: string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof FinderQueryJobsSchema
64
+ */
65
+ keywords?: string;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof FinderQueryJobsSchema
70
+ */
71
+ certifications?: string;
72
+ /**
73
+ *
74
+ * @type {string}
75
+ * @memberof FinderQueryJobsSchema
76
+ */
77
+ industryExperience?: string;
78
+ /**
79
+ *
80
+ * @type {string}
81
+ * @memberof FinderQueryJobsSchema
82
+ */
83
+ responsibilities?: string;
84
+ /**
85
+ *
86
+ * @type {string}
87
+ * @memberof FinderQueryJobsSchema
88
+ */
89
+ benefits?: string;
90
+ /**
91
+ *
92
+ * @type {string}
93
+ * @memberof FinderQueryJobsSchema
94
+ */
95
+ status?: string;
96
+ /**
97
+ *
98
+ * @type {string}
99
+ * @memberof FinderQueryJobsSchema
100
+ */
101
+ source?: string;
102
+ /**
103
+ *
104
+ * @type {string}
105
+ * @memberof FinderQueryJobsSchema
106
+ */
107
+ shortCode?: string;
108
+ /**
109
+ *
110
+ * @type {string}
111
+ * @memberof FinderQueryJobsSchema
112
+ */
113
+ jobId?: string;
114
+ }
115
+ /**
116
+ * Check if a given object implements the FinderQueryJobsSchema interface.
117
+ */
118
+ export declare function instanceOfFinderQueryJobsSchema(value: object): value is FinderQueryJobsSchema;
119
+ export declare function FinderQueryJobsSchemaFromJSON(json: any): FinderQueryJobsSchema;
120
+ export declare function FinderQueryJobsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinderQueryJobsSchema;
121
+ export declare function FinderQueryJobsSchemaToJSON(json: any): FinderQueryJobsSchema;
122
+ export declare function FinderQueryJobsSchemaToJSONTyped(value?: FinderQueryJobsSchema | null, ignoreDiscriminator?: boolean): any;
123
+ //# sourceMappingURL=FinderQueryJobsSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FinderQueryJobsSchema.d.ts","sourceRoot":"","sources":["../../src/models/FinderQueryJobsSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,qBAAqB,CAE7F;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,GAAG,qBAAqB,CAE9E;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,qBAAqB,CAuBjH;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,GAAG,qBAAqB,CAE5E;AAED,wBAAgB,gCAAgC,CAAC,KAAK,CAAC,EAAE,qBAAqB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAwBhI"}
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * SmartyMeet Dev03 API REST
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 1.0.1
9
+ * Contact: developer@smartymeet.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfFinderQueryJobsSchema = instanceOfFinderQueryJobsSchema;
17
+ exports.FinderQueryJobsSchemaFromJSON = FinderQueryJobsSchemaFromJSON;
18
+ exports.FinderQueryJobsSchemaFromJSONTyped = FinderQueryJobsSchemaFromJSONTyped;
19
+ exports.FinderQueryJobsSchemaToJSON = FinderQueryJobsSchemaToJSON;
20
+ exports.FinderQueryJobsSchemaToJSONTyped = FinderQueryJobsSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the FinderQueryJobsSchema interface.
23
+ */
24
+ function instanceOfFinderQueryJobsSchema(value) {
25
+ return true;
26
+ }
27
+ function FinderQueryJobsSchemaFromJSON(json) {
28
+ return FinderQueryJobsSchemaFromJSONTyped(json, false);
29
+ }
30
+ function FinderQueryJobsSchemaFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'search': json['search'] == null ? undefined : json['search'],
36
+ 'name': json['name'] == null ? undefined : json['name'],
37
+ 'description': json['description'] == null ? undefined : json['description'],
38
+ 'skillsAndExpertise': json['skillsAndExpertise'] == null ? undefined : json['skillsAndExpertise'],
39
+ 'education': json['education'] == null ? undefined : json['education'],
40
+ 'experienceAndSeniority': json['experienceAndSeniority'] == null ? undefined : json['experienceAndSeniority'],
41
+ 'jobPositions': json['jobPositions'] == null ? undefined : json['jobPositions'],
42
+ 'keywords': json['keywords'] == null ? undefined : json['keywords'],
43
+ 'certifications': json['certifications'] == null ? undefined : json['certifications'],
44
+ 'industryExperience': json['industryExperience'] == null ? undefined : json['industryExperience'],
45
+ 'responsibilities': json['responsibilities'] == null ? undefined : json['responsibilities'],
46
+ 'benefits': json['benefits'] == null ? undefined : json['benefits'],
47
+ 'status': json['status'] == null ? undefined : json['status'],
48
+ 'source': json['source'] == null ? undefined : json['source'],
49
+ 'shortCode': json['shortCode'] == null ? undefined : json['shortCode'],
50
+ 'jobId': json['jobId'] == null ? undefined : json['jobId'],
51
+ };
52
+ }
53
+ function FinderQueryJobsSchemaToJSON(json) {
54
+ return FinderQueryJobsSchemaToJSONTyped(json, false);
55
+ }
56
+ function FinderQueryJobsSchemaToJSONTyped(value, ignoreDiscriminator = false) {
57
+ if (value == null) {
58
+ return value;
59
+ }
60
+ return {
61
+ 'search': value['search'],
62
+ 'name': value['name'],
63
+ 'description': value['description'],
64
+ 'skillsAndExpertise': value['skillsAndExpertise'],
65
+ 'education': value['education'],
66
+ 'experienceAndSeniority': value['experienceAndSeniority'],
67
+ 'jobPositions': value['jobPositions'],
68
+ 'keywords': value['keywords'],
69
+ 'certifications': value['certifications'],
70
+ 'industryExperience': value['industryExperience'],
71
+ 'responsibilities': value['responsibilities'],
72
+ 'benefits': value['benefits'],
73
+ 'status': value['status'],
74
+ 'source': value['source'],
75
+ 'shortCode': value['shortCode'],
76
+ 'jobId': value['jobId'],
77
+ };
78
+ }
79
+ //# sourceMappingURL=FinderQueryJobsSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FinderQueryJobsSchema.js","sourceRoot":"","sources":["../../src/models/FinderQueryJobsSchema.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,195 @@
1
+ /**
2
+ * SmartyMeet Dev03 API REST
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.1
6
+ * Contact: developer@smartymeet.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Query shape for `type: talents` finders. All keys optional.
14
+ * @export
15
+ * @interface FinderQueryTalentsSchema
16
+ */
17
+ export interface FinderQueryTalentsSchema {
18
+ /**
19
+ * Full-text across all semantic fields.
20
+ * @type {string}
21
+ * @memberof FinderQueryTalentsSchema
22
+ */
23
+ search?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof FinderQueryTalentsSchema
28
+ */
29
+ name?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof FinderQueryTalentsSchema
34
+ */
35
+ quickInsights?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof FinderQueryTalentsSchema
40
+ */
41
+ skillsAndExpertise?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof FinderQueryTalentsSchema
46
+ */
47
+ professionalExperience?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof FinderQueryTalentsSchema
52
+ */
53
+ education?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof FinderQueryTalentsSchema
58
+ */
59
+ experienceAndSeniority?: string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof FinderQueryTalentsSchema
64
+ */
65
+ jobPositions?: string;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof FinderQueryTalentsSchema
70
+ */
71
+ keywords?: string;
72
+ /**
73
+ *
74
+ * @type {string}
75
+ * @memberof FinderQueryTalentsSchema
76
+ */
77
+ certifications?: string;
78
+ /**
79
+ *
80
+ * @type {string}
81
+ * @memberof FinderQueryTalentsSchema
82
+ */
83
+ industryExperience?: string;
84
+ /**
85
+ *
86
+ * @type {string}
87
+ * @memberof FinderQueryTalentsSchema
88
+ */
89
+ languagesSpoken?: string;
90
+ /**
91
+ *
92
+ * @type {string}
93
+ * @memberof FinderQueryTalentsSchema
94
+ */
95
+ locationPreferences?: string;
96
+ /**
97
+ *
98
+ * @type {string}
99
+ * @memberof FinderQueryTalentsSchema
100
+ */
101
+ personalityAndSoftSkills?: string;
102
+ /**
103
+ *
104
+ * @type {string}
105
+ * @memberof FinderQueryTalentsSchema
106
+ */
107
+ availability?: string;
108
+ /**
109
+ *
110
+ * @type {string}
111
+ * @memberof FinderQueryTalentsSchema
112
+ */
113
+ workPreferences?: string;
114
+ /**
115
+ *
116
+ * @type {string}
117
+ * @memberof FinderQueryTalentsSchema
118
+ */
119
+ workAuthorization?: string;
120
+ /**
121
+ *
122
+ * @type {string}
123
+ * @memberof FinderQueryTalentsSchema
124
+ */
125
+ status?: string;
126
+ /**
127
+ *
128
+ * @type {string}
129
+ * @memberof FinderQueryTalentsSchema
130
+ */
131
+ source?: string;
132
+ /**
133
+ *
134
+ * @type {string}
135
+ * @memberof FinderQueryTalentsSchema
136
+ */
137
+ email?: string;
138
+ /**
139
+ *
140
+ * @type {string}
141
+ * @memberof FinderQueryTalentsSchema
142
+ */
143
+ gender?: string;
144
+ /**
145
+ *
146
+ * @type {string}
147
+ * @memberof FinderQueryTalentsSchema
148
+ */
149
+ shortCode?: string;
150
+ /**
151
+ *
152
+ * @type {string}
153
+ * @memberof FinderQueryTalentsSchema
154
+ */
155
+ isTalentPool?: string;
156
+ /**
157
+ *
158
+ * @type {string}
159
+ * @memberof FinderQueryTalentsSchema
160
+ */
161
+ relocationWillingness?: string;
162
+ /**
163
+ *
164
+ * @type {string}
165
+ * @memberof FinderQueryTalentsSchema
166
+ */
167
+ requiresSponsorship?: string;
168
+ /**
169
+ *
170
+ * @type {string}
171
+ * @memberof FinderQueryTalentsSchema
172
+ */
173
+ careerBreak?: string;
174
+ /**
175
+ * Scope to talents already matched against a specific job.
176
+ * @type {string}
177
+ * @memberof FinderQueryTalentsSchema
178
+ */
179
+ jobId?: string;
180
+ /**
181
+ *
182
+ * @type {string}
183
+ * @memberof FinderQueryTalentsSchema
184
+ */
185
+ talentId?: string;
186
+ }
187
+ /**
188
+ * Check if a given object implements the FinderQueryTalentsSchema interface.
189
+ */
190
+ export declare function instanceOfFinderQueryTalentsSchema(value: object): value is FinderQueryTalentsSchema;
191
+ export declare function FinderQueryTalentsSchemaFromJSON(json: any): FinderQueryTalentsSchema;
192
+ export declare function FinderQueryTalentsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinderQueryTalentsSchema;
193
+ export declare function FinderQueryTalentsSchemaToJSON(json: any): FinderQueryTalentsSchema;
194
+ export declare function FinderQueryTalentsSchemaToJSONTyped(value?: FinderQueryTalentsSchema | null, ignoreDiscriminator?: boolean): any;
195
+ //# sourceMappingURL=FinderQueryTalentsSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FinderQueryTalentsSchema.d.ts","sourceRoot":"","sources":["../../src/models/FinderQueryTalentsSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,wBAAgB,kCAAkC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,wBAAwB,CAEnG;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,GAAG,wBAAwB,CAEpF;AAED,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,wBAAwB,CAmCvH;AAED,wBAAgB,8BAA8B,CAAC,IAAI,EAAE,GAAG,GAAG,wBAAwB,CAElF;AAED,wBAAgB,mCAAmC,CAAC,KAAK,CAAC,EAAE,wBAAwB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAoCtI"}
@@ -0,0 +1,103 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * SmartyMeet Dev03 API REST
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 1.0.1
9
+ * Contact: developer@smartymeet.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfFinderQueryTalentsSchema = instanceOfFinderQueryTalentsSchema;
17
+ exports.FinderQueryTalentsSchemaFromJSON = FinderQueryTalentsSchemaFromJSON;
18
+ exports.FinderQueryTalentsSchemaFromJSONTyped = FinderQueryTalentsSchemaFromJSONTyped;
19
+ exports.FinderQueryTalentsSchemaToJSON = FinderQueryTalentsSchemaToJSON;
20
+ exports.FinderQueryTalentsSchemaToJSONTyped = FinderQueryTalentsSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the FinderQueryTalentsSchema interface.
23
+ */
24
+ function instanceOfFinderQueryTalentsSchema(value) {
25
+ return true;
26
+ }
27
+ function FinderQueryTalentsSchemaFromJSON(json) {
28
+ return FinderQueryTalentsSchemaFromJSONTyped(json, false);
29
+ }
30
+ function FinderQueryTalentsSchemaFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'search': json['search'] == null ? undefined : json['search'],
36
+ 'name': json['name'] == null ? undefined : json['name'],
37
+ 'quickInsights': json['quickInsights'] == null ? undefined : json['quickInsights'],
38
+ 'skillsAndExpertise': json['skillsAndExpertise'] == null ? undefined : json['skillsAndExpertise'],
39
+ 'professionalExperience': json['professionalExperience'] == null ? undefined : json['professionalExperience'],
40
+ 'education': json['education'] == null ? undefined : json['education'],
41
+ 'experienceAndSeniority': json['experienceAndSeniority'] == null ? undefined : json['experienceAndSeniority'],
42
+ 'jobPositions': json['jobPositions'] == null ? undefined : json['jobPositions'],
43
+ 'keywords': json['keywords'] == null ? undefined : json['keywords'],
44
+ 'certifications': json['certifications'] == null ? undefined : json['certifications'],
45
+ 'industryExperience': json['industryExperience'] == null ? undefined : json['industryExperience'],
46
+ 'languagesSpoken': json['languagesSpoken'] == null ? undefined : json['languagesSpoken'],
47
+ 'locationPreferences': json['locationPreferences'] == null ? undefined : json['locationPreferences'],
48
+ 'personalityAndSoftSkills': json['personalityAndSoftSkills'] == null ? undefined : json['personalityAndSoftSkills'],
49
+ 'availability': json['availability'] == null ? undefined : json['availability'],
50
+ 'workPreferences': json['workPreferences'] == null ? undefined : json['workPreferences'],
51
+ 'workAuthorization': json['workAuthorization'] == null ? undefined : json['workAuthorization'],
52
+ 'status': json['status'] == null ? undefined : json['status'],
53
+ 'source': json['source'] == null ? undefined : json['source'],
54
+ 'email': json['email'] == null ? undefined : json['email'],
55
+ 'gender': json['gender'] == null ? undefined : json['gender'],
56
+ 'shortCode': json['shortCode'] == null ? undefined : json['shortCode'],
57
+ 'isTalentPool': json['isTalentPool'] == null ? undefined : json['isTalentPool'],
58
+ 'relocationWillingness': json['relocationWillingness'] == null ? undefined : json['relocationWillingness'],
59
+ 'requiresSponsorship': json['requiresSponsorship'] == null ? undefined : json['requiresSponsorship'],
60
+ 'careerBreak': json['careerBreak'] == null ? undefined : json['careerBreak'],
61
+ 'jobId': json['jobId'] == null ? undefined : json['jobId'],
62
+ 'talentId': json['talentId'] == null ? undefined : json['talentId'],
63
+ };
64
+ }
65
+ function FinderQueryTalentsSchemaToJSON(json) {
66
+ return FinderQueryTalentsSchemaToJSONTyped(json, false);
67
+ }
68
+ function FinderQueryTalentsSchemaToJSONTyped(value, ignoreDiscriminator = false) {
69
+ if (value == null) {
70
+ return value;
71
+ }
72
+ return {
73
+ 'search': value['search'],
74
+ 'name': value['name'],
75
+ 'quickInsights': value['quickInsights'],
76
+ 'skillsAndExpertise': value['skillsAndExpertise'],
77
+ 'professionalExperience': value['professionalExperience'],
78
+ 'education': value['education'],
79
+ 'experienceAndSeniority': value['experienceAndSeniority'],
80
+ 'jobPositions': value['jobPositions'],
81
+ 'keywords': value['keywords'],
82
+ 'certifications': value['certifications'],
83
+ 'industryExperience': value['industryExperience'],
84
+ 'languagesSpoken': value['languagesSpoken'],
85
+ 'locationPreferences': value['locationPreferences'],
86
+ 'personalityAndSoftSkills': value['personalityAndSoftSkills'],
87
+ 'availability': value['availability'],
88
+ 'workPreferences': value['workPreferences'],
89
+ 'workAuthorization': value['workAuthorization'],
90
+ 'status': value['status'],
91
+ 'source': value['source'],
92
+ 'email': value['email'],
93
+ 'gender': value['gender'],
94
+ 'shortCode': value['shortCode'],
95
+ 'isTalentPool': value['isTalentPool'],
96
+ 'relocationWillingness': value['relocationWillingness'],
97
+ 'requiresSponsorship': value['requiresSponsorship'],
98
+ 'careerBreak': value['careerBreak'],
99
+ 'jobId': value['jobId'],
100
+ 'talentId': value['talentId'],
101
+ };
102
+ }
103
+ //# sourceMappingURL=FinderQueryTalentsSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FinderQueryTalentsSchema.js","sourceRoot":"","sources":["../../src/models/FinderQueryTalentsSchema.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,64 @@
1
+ /**
2
+ * SmartyMeet Dev03 API REST
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0.1
6
+ * Contact: developer@smartymeet.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Single hit from the OpenSearch query. The `id` equals the underlying resource id (emailId, talentId, candidateId, jobId, ...) so the frontend can navigate directly to that resource. Additional fields vary by finder `type`.
14
+ * @export
15
+ * @interface FinderResultHitSchema
16
+ */
17
+ export interface FinderResultHitSchema {
18
+ [key: string]: any | any;
19
+ /**
20
+ * The underlying resource id (emailId / talentId / candidateId / jobId).
21
+ * @type {string}
22
+ * @memberof FinderResultHitSchema
23
+ */
24
+ id?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof FinderResultHitSchema
29
+ */
30
+ tenantId?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof FinderResultHitSchema
35
+ */
36
+ status?: string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof FinderResultHitSchema
41
+ */
42
+ source?: string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof FinderResultHitSchema
47
+ */
48
+ created?: string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof FinderResultHitSchema
53
+ */
54
+ shortCode?: string;
55
+ }
56
+ /**
57
+ * Check if a given object implements the FinderResultHitSchema interface.
58
+ */
59
+ export declare function instanceOfFinderResultHitSchema(value: object): value is FinderResultHitSchema;
60
+ export declare function FinderResultHitSchemaFromJSON(json: any): FinderResultHitSchema;
61
+ export declare function FinderResultHitSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinderResultHitSchema;
62
+ export declare function FinderResultHitSchemaToJSON(json: any): FinderResultHitSchema;
63
+ export declare function FinderResultHitSchemaToJSONTyped(value?: FinderResultHitSchema | null, ignoreDiscriminator?: boolean): any;
64
+ //# sourceMappingURL=FinderResultHitSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FinderResultHitSchema.d.ts","sourceRoot":"","sources":["../../src/models/FinderResultHitSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,GAAG,GAAG,CAAC;IACzB;;;;OAIG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,qBAAqB,CAE7F;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,GAAG,qBAAqB,CAE9E;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,qBAAqB,CAcjH;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,GAAG,qBAAqB,CAE5E;AAED,wBAAgB,gCAAgC,CAAC,KAAK,CAAC,EAAE,qBAAqB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAehI"}
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * SmartyMeet Dev03 API REST
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: 1.0.1
9
+ * Contact: developer@smartymeet.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfFinderResultHitSchema = instanceOfFinderResultHitSchema;
17
+ exports.FinderResultHitSchemaFromJSON = FinderResultHitSchemaFromJSON;
18
+ exports.FinderResultHitSchemaFromJSONTyped = FinderResultHitSchemaFromJSONTyped;
19
+ exports.FinderResultHitSchemaToJSON = FinderResultHitSchemaToJSON;
20
+ exports.FinderResultHitSchemaToJSONTyped = FinderResultHitSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the FinderResultHitSchema interface.
23
+ */
24
+ function instanceOfFinderResultHitSchema(value) {
25
+ return true;
26
+ }
27
+ function FinderResultHitSchemaFromJSON(json) {
28
+ return FinderResultHitSchemaFromJSONTyped(json, false);
29
+ }
30
+ function FinderResultHitSchemaFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ ...json,
36
+ 'id': json['id'] == null ? undefined : json['id'],
37
+ 'tenantId': json['tenantId'] == null ? undefined : json['tenantId'],
38
+ 'status': json['status'] == null ? undefined : json['status'],
39
+ 'source': json['source'] == null ? undefined : json['source'],
40
+ 'created': json['created'] == null ? undefined : json['created'],
41
+ 'shortCode': json['shortCode'] == null ? undefined : json['shortCode'],
42
+ };
43
+ }
44
+ function FinderResultHitSchemaToJSON(json) {
45
+ return FinderResultHitSchemaToJSONTyped(json, false);
46
+ }
47
+ function FinderResultHitSchemaToJSONTyped(value, ignoreDiscriminator = false) {
48
+ if (value == null) {
49
+ return value;
50
+ }
51
+ return {
52
+ ...value,
53
+ 'id': value['id'],
54
+ 'tenantId': value['tenantId'],
55
+ 'status': value['status'],
56
+ 'source': value['source'],
57
+ 'created': value['created'],
58
+ 'shortCode': value['shortCode'],
59
+ };
60
+ }
61
+ //# sourceMappingURL=FinderResultHitSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FinderResultHitSchema.js","sourceRoot":"","sources":["../../src/models/FinderResultHitSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAmDH,0EAEC;AAED,sEAEC;AAED,gFAcC;AAED,kEAEC;AAED,4EAeC;AA9CD;;GAEG;AACH,SAAgB,+BAA+B,CAAC,KAAa;IACzD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,6BAA6B,CAAC,IAAS;IACnD,OAAO,kCAAkC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC3D,CAAC;AAED,SAAgB,kCAAkC,CAAC,IAAS,EAAE,mBAA4B;IACtF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEC,GAAG,IAAI;QACX,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC;QACnE,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC7D,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC7D,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC;QAChE,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;KACzE,CAAC;AACN,CAAC;AAED,SAAgB,2BAA2B,CAAC,IAAS;IACjD,OAAO,gCAAgC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACzD,CAAC;AAED,SAAgB,gCAAgC,CAAC,KAAoC,EAAE,sBAA+B,KAAK;IACvH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEC,GAAG,KAAK;QACZ,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC;QAC7B,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;QAC3B,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;KAClC,CAAC;AACN,CAAC"}