@teemill/platform 0.65.0 → 0.66.0

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/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.65.0
7
+ * The version of the OpenAPI document: 0.66.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,6 +39,12 @@ export const ApplicationPlacementEnum = {
39
39
  Front: 'front',
40
40
  Back: 'back',
41
41
  };
42
+ export const ConciergeCandidateSourceTypeEnum = {
43
+ ContactForm: 'contact_form',
44
+ SignedUp: 'signed_up',
45
+ CustomOrder: 'custom_order',
46
+ QuoteForm: 'quote_form',
47
+ };
42
48
  export const CreateOrderPaymentMethodTypeEnum = {
43
49
  Card: 'card',
44
50
  Bacs: 'bacs',
@@ -52,6 +58,16 @@ export const EnquiryStatusEnum = {
52
58
  Archived: 'Archived',
53
59
  Priority: 'Priority',
54
60
  };
61
+ export const FulfillmentFrozenReasonsEnum = {
62
+ Moderation: 'moderation',
63
+ InternalScreenPrint: 'internal_screen_print',
64
+ Manual: 'manual',
65
+ CreditControl: 'credit_control',
66
+ BillingFailed: 'billing_failed',
67
+ PickfaceFlagged: 'pickface_flagged',
68
+ FlowFrozen: 'flow_frozen',
69
+ Fraud: 'fraud',
70
+ };
55
71
  export const OrderStatus = {
56
72
  New: 'new',
57
73
  Paid: 'paid',
@@ -87,6 +103,284 @@ export const UpdateModerationItemRequestJudgementEnum = {
87
103
  Approved: 'approved',
88
104
  Denied: 'denied',
89
105
  };
106
+ /**
107
+ * ConciergeCandidatesApi - axios parameter creator
108
+ */
109
+ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration) {
110
+ return {
111
+ /**
112
+ * Get a concierge candidate by a given concierge candidate ID.
113
+ * @summary Get concierge candidate
114
+ * @param {string} project Project unique identifier
115
+ * @param {string} platformId The platform identifier
116
+ * @param {string} conciergeCandidateId The concierge candidate identifier
117
+ * @param {*} [options] Override http request option.
118
+ * @throws {RequiredError}
119
+ */
120
+ getConciergeCandidate: (project_1, platformId_1, conciergeCandidateId_1, ...args_1) => __awaiter(this, [project_1, platformId_1, conciergeCandidateId_1, ...args_1], void 0, function* (project, platformId, conciergeCandidateId, options = {}) {
121
+ // verify required parameter 'project' is not null or undefined
122
+ assertParamExists('getConciergeCandidate', 'project', project);
123
+ // verify required parameter 'platformId' is not null or undefined
124
+ assertParamExists('getConciergeCandidate', 'platformId', platformId);
125
+ // verify required parameter 'conciergeCandidateId' is not null or undefined
126
+ assertParamExists('getConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
127
+ const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
128
+ .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
129
+ .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
130
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
131
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
132
+ let baseOptions;
133
+ if (configuration) {
134
+ baseOptions = configuration.baseOptions;
135
+ }
136
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
137
+ const localVarHeaderParameter = {};
138
+ const localVarQueryParameter = {};
139
+ // authentication session-oauth required
140
+ // oauth required
141
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
142
+ // authentication api-key required
143
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
144
+ if (project !== undefined) {
145
+ localVarQueryParameter['project'] = project;
146
+ }
147
+ localVarHeaderParameter['Accept'] = 'application/json';
148
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
149
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
150
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
151
+ return {
152
+ url: toPathString(localVarUrlObj),
153
+ options: localVarRequestOptions,
154
+ };
155
+ }),
156
+ /**
157
+ * List concierge candidates
158
+ * @summary List concierge candidates
159
+ * @param {string} project Project unique identifier
160
+ * @param {string} platformId The platform identifier
161
+ * @param {*} [options] Override http request option.
162
+ * @throws {RequiredError}
163
+ */
164
+ listConciergeCandidates: (project_1, platformId_1, ...args_1) => __awaiter(this, [project_1, platformId_1, ...args_1], void 0, function* (project, platformId, options = {}) {
165
+ // verify required parameter 'project' is not null or undefined
166
+ assertParamExists('listConciergeCandidates', 'project', project);
167
+ // verify required parameter 'platformId' is not null or undefined
168
+ assertParamExists('listConciergeCandidates', 'platformId', platformId);
169
+ const localVarPath = `/v1/platform/{platformId}/concierge-candidates`
170
+ .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
171
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
172
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
173
+ let baseOptions;
174
+ if (configuration) {
175
+ baseOptions = configuration.baseOptions;
176
+ }
177
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
178
+ const localVarHeaderParameter = {};
179
+ const localVarQueryParameter = {};
180
+ // authentication session-oauth required
181
+ // oauth required
182
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
183
+ // authentication api-key required
184
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
185
+ if (project !== undefined) {
186
+ localVarQueryParameter['project'] = project;
187
+ }
188
+ localVarHeaderParameter['Accept'] = 'application/json';
189
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
190
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
191
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
192
+ return {
193
+ url: toPathString(localVarUrlObj),
194
+ options: localVarRequestOptions,
195
+ };
196
+ }),
197
+ /**
198
+ * Update a concierge candidate by a given concierge candidate ID.
199
+ * @summary Update concierge candidate
200
+ * @param {string} project Project unique identifier
201
+ * @param {string} platformId The platform identifier
202
+ * @param {string} conciergeCandidateId The concierge candidate identifier
203
+ * @param {UpdateConciergeCandidateRequest} updateConciergeCandidateRequest
204
+ * @param {*} [options] Override http request option.
205
+ * @throws {RequiredError}
206
+ */
207
+ updateConciergeCandidate: (project_1, platformId_1, conciergeCandidateId_1, updateConciergeCandidateRequest_1, ...args_1) => __awaiter(this, [project_1, platformId_1, conciergeCandidateId_1, updateConciergeCandidateRequest_1, ...args_1], void 0, function* (project, platformId, conciergeCandidateId, updateConciergeCandidateRequest, options = {}) {
208
+ // verify required parameter 'project' is not null or undefined
209
+ assertParamExists('updateConciergeCandidate', 'project', project);
210
+ // verify required parameter 'platformId' is not null or undefined
211
+ assertParamExists('updateConciergeCandidate', 'platformId', platformId);
212
+ // verify required parameter 'conciergeCandidateId' is not null or undefined
213
+ assertParamExists('updateConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
214
+ // verify required parameter 'updateConciergeCandidateRequest' is not null or undefined
215
+ assertParamExists('updateConciergeCandidate', 'updateConciergeCandidateRequest', updateConciergeCandidateRequest);
216
+ const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
217
+ .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
218
+ .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
219
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
220
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
221
+ let baseOptions;
222
+ if (configuration) {
223
+ baseOptions = configuration.baseOptions;
224
+ }
225
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
226
+ const localVarHeaderParameter = {};
227
+ const localVarQueryParameter = {};
228
+ // authentication session-oauth required
229
+ // oauth required
230
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
231
+ // authentication api-key required
232
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
233
+ if (project !== undefined) {
234
+ localVarQueryParameter['project'] = project;
235
+ }
236
+ localVarHeaderParameter['Content-Type'] = 'application/json';
237
+ localVarHeaderParameter['Accept'] = 'application/json';
238
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
239
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
240
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
241
+ localVarRequestOptions.data = serializeDataIfNeeded(updateConciergeCandidateRequest, localVarRequestOptions, configuration);
242
+ return {
243
+ url: toPathString(localVarUrlObj),
244
+ options: localVarRequestOptions,
245
+ };
246
+ }),
247
+ };
248
+ };
249
+ /**
250
+ * ConciergeCandidatesApi - functional programming interface
251
+ */
252
+ export const ConciergeCandidatesApiFp = function (configuration) {
253
+ const localVarAxiosParamCreator = ConciergeCandidatesApiAxiosParamCreator(configuration);
254
+ return {
255
+ /**
256
+ * Get a concierge candidate by a given concierge candidate ID.
257
+ * @summary Get concierge candidate
258
+ * @param {string} project Project unique identifier
259
+ * @param {string} platformId The platform identifier
260
+ * @param {string} conciergeCandidateId The concierge candidate identifier
261
+ * @param {*} [options] Override http request option.
262
+ * @throws {RequiredError}
263
+ */
264
+ getConciergeCandidate(project, platformId, conciergeCandidateId, options) {
265
+ return __awaiter(this, void 0, void 0, function* () {
266
+ var _a, _b, _c;
267
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getConciergeCandidate(project, platformId, conciergeCandidateId, options);
268
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
269
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ConciergeCandidatesApi.getConciergeCandidate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
270
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
271
+ });
272
+ },
273
+ /**
274
+ * List concierge candidates
275
+ * @summary List concierge candidates
276
+ * @param {string} project Project unique identifier
277
+ * @param {string} platformId The platform identifier
278
+ * @param {*} [options] Override http request option.
279
+ * @throws {RequiredError}
280
+ */
281
+ listConciergeCandidates(project, platformId, options) {
282
+ return __awaiter(this, void 0, void 0, function* () {
283
+ var _a, _b, _c;
284
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listConciergeCandidates(project, platformId, options);
285
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
286
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ConciergeCandidatesApi.listConciergeCandidates']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
287
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
288
+ });
289
+ },
290
+ /**
291
+ * Update a concierge candidate by a given concierge candidate ID.
292
+ * @summary Update concierge candidate
293
+ * @param {string} project Project unique identifier
294
+ * @param {string} platformId The platform identifier
295
+ * @param {string} conciergeCandidateId The concierge candidate identifier
296
+ * @param {UpdateConciergeCandidateRequest} updateConciergeCandidateRequest
297
+ * @param {*} [options] Override http request option.
298
+ * @throws {RequiredError}
299
+ */
300
+ updateConciergeCandidate(project, platformId, conciergeCandidateId, updateConciergeCandidateRequest, options) {
301
+ return __awaiter(this, void 0, void 0, function* () {
302
+ var _a, _b, _c;
303
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateConciergeCandidate(project, platformId, conciergeCandidateId, updateConciergeCandidateRequest, options);
304
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
305
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ConciergeCandidatesApi.updateConciergeCandidate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
306
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
307
+ });
308
+ },
309
+ };
310
+ };
311
+ /**
312
+ * ConciergeCandidatesApi - factory interface
313
+ */
314
+ export const ConciergeCandidatesApiFactory = function (configuration, basePath, axios) {
315
+ const localVarFp = ConciergeCandidatesApiFp(configuration);
316
+ return {
317
+ /**
318
+ * Get a concierge candidate by a given concierge candidate ID.
319
+ * @summary Get concierge candidate
320
+ * @param {ConciergeCandidatesApiGetConciergeCandidateRequest} requestParameters Request parameters.
321
+ * @param {*} [options] Override http request option.
322
+ * @throws {RequiredError}
323
+ */
324
+ getConciergeCandidate(requestParameters, options) {
325
+ return localVarFp.getConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(axios, basePath));
326
+ },
327
+ /**
328
+ * List concierge candidates
329
+ * @summary List concierge candidates
330
+ * @param {ConciergeCandidatesApiListConciergeCandidatesRequest} requestParameters Request parameters.
331
+ * @param {*} [options] Override http request option.
332
+ * @throws {RequiredError}
333
+ */
334
+ listConciergeCandidates(requestParameters, options) {
335
+ return localVarFp.listConciergeCandidates(requestParameters.project, requestParameters.platformId, options).then((request) => request(axios, basePath));
336
+ },
337
+ /**
338
+ * Update a concierge candidate by a given concierge candidate ID.
339
+ * @summary Update concierge candidate
340
+ * @param {ConciergeCandidatesApiUpdateConciergeCandidateRequest} requestParameters Request parameters.
341
+ * @param {*} [options] Override http request option.
342
+ * @throws {RequiredError}
343
+ */
344
+ updateConciergeCandidate(requestParameters, options) {
345
+ return localVarFp.updateConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, requestParameters.updateConciergeCandidateRequest, options).then((request) => request(axios, basePath));
346
+ },
347
+ };
348
+ };
349
+ /**
350
+ * ConciergeCandidatesApi - object-oriented interface
351
+ */
352
+ export class ConciergeCandidatesApi extends BaseAPI {
353
+ /**
354
+ * Get a concierge candidate by a given concierge candidate ID.
355
+ * @summary Get concierge candidate
356
+ * @param {ConciergeCandidatesApiGetConciergeCandidateRequest} requestParameters Request parameters.
357
+ * @param {*} [options] Override http request option.
358
+ * @throws {RequiredError}
359
+ */
360
+ getConciergeCandidate(requestParameters, options) {
361
+ return ConciergeCandidatesApiFp(this.configuration).getConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(this.axios, this.basePath));
362
+ }
363
+ /**
364
+ * List concierge candidates
365
+ * @summary List concierge candidates
366
+ * @param {ConciergeCandidatesApiListConciergeCandidatesRequest} requestParameters Request parameters.
367
+ * @param {*} [options] Override http request option.
368
+ * @throws {RequiredError}
369
+ */
370
+ listConciergeCandidates(requestParameters, options) {
371
+ return ConciergeCandidatesApiFp(this.configuration).listConciergeCandidates(requestParameters.project, requestParameters.platformId, options).then((request) => request(this.axios, this.basePath));
372
+ }
373
+ /**
374
+ * Update a concierge candidate by a given concierge candidate ID.
375
+ * @summary Update concierge candidate
376
+ * @param {ConciergeCandidatesApiUpdateConciergeCandidateRequest} requestParameters Request parameters.
377
+ * @param {*} [options] Override http request option.
378
+ * @throws {RequiredError}
379
+ */
380
+ updateConciergeCandidate(requestParameters, options) {
381
+ return ConciergeCandidatesApiFp(this.configuration).updateConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, requestParameters.updateConciergeCandidateRequest, options).then((request) => request(this.axios, this.basePath));
382
+ }
383
+ }
90
384
  /**
91
385
  * CustomersApi - axios parameter creator
92
386
  */
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.65.0
5
+ * The version of the OpenAPI document: 0.66.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.65.0
7
+ * The version of the OpenAPI document: 0.66.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.65.0
5
+ * The version of the OpenAPI document: 0.66.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.65.0
7
+ * The version of the OpenAPI document: 0.66.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.65.0
5
+ * The version of the OpenAPI document: 0.66.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,7 +3,7 @@
3
3
  * Platform
4
4
  * Manage Your podOS platform
5
5
  *
6
- * The version of the OpenAPI document: 0.65.0
6
+ * The version of the OpenAPI document: 0.66.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.65.0
5
+ * The version of the OpenAPI document: 0.66.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.65.0
7
+ * The version of the OpenAPI document: 0.66.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.65.0
5
+ * The version of the OpenAPI document: 0.66.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.65.0
8
+ * The version of the OpenAPI document: 0.66.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,39 @@
1
+ # ConciergeCandidate
2
+
3
+ A concierge candidate. This is a potentially high value person who has interacted with the platform in some way.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **id** | **string** | Unique object identifier | [default to undefined]
10
+ **firstName** | **string** | The first name of the concierge candidate | [default to undefined]
11
+ **lastName** | **string** | The last name of the concierge candidate | [default to undefined]
12
+ **email** | **string** | The email of the concierge candidate | [default to undefined]
13
+ **source** | [**ConciergeCandidateSource**](ConciergeCandidateSource.md) | | [default to undefined]
14
+ **createdAt** | **string** | ISO 8601 Timestamp | [default to undefined]
15
+ **dismissedAt** | **string** | ISO 8601 Timestamp | [optional] [default to undefined]
16
+ **clientRef** | **string** | A reference to the project being ordered | [default to undefined]
17
+ **originRef** | **string** | A reference to the origin of the concierge candidate. The structure of the origin ref can be inferred from the concierge candidate source. | [default to undefined]
18
+ **assignedUserRef** | **string** | Reference to the user resource | [optional] [default to undefined]
19
+
20
+ ## Example
21
+
22
+ ```typescript
23
+ import { ConciergeCandidate } from '@teemill/platform';
24
+
25
+ const instance: ConciergeCandidate = {
26
+ id,
27
+ firstName,
28
+ lastName,
29
+ email,
30
+ source,
31
+ createdAt,
32
+ dismissedAt,
33
+ clientRef,
34
+ originRef,
35
+ assignedUserRef,
36
+ };
37
+ ```
38
+
39
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,25 @@
1
+ # ConciergeCandidateSource
2
+
3
+ The source of the concierge candidate. This is the channel through which the concierge candidate interacted with the platform.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **type** | **string** | The type of the source | [default to undefined]
10
+ **name** | **string** | The name of the source | [default to undefined]
11
+ **description** | **string** | The description of the source | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { ConciergeCandidateSource } from '@teemill/platform';
17
+
18
+ const instance: ConciergeCandidateSource = {
19
+ type,
20
+ name,
21
+ description,
22
+ };
23
+ ```
24
+
25
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)