@smartytalent/api-client 0.1.33-dev.100 → 0.1.33-dev.101

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 (53) hide show
  1. package/dist/models/CallRelationshipsFilesDataSchema.d.ts +39 -0
  2. package/dist/models/CallRelationshipsFilesDataSchema.d.ts.map +1 -0
  3. package/dist/models/CallRelationshipsFilesDataSchema.js +51 -0
  4. package/dist/models/CallRelationshipsFilesDataSchema.js.map +1 -0
  5. package/dist/models/CallRelationshipsFilesSchema.d.ts +34 -0
  6. package/dist/models/CallRelationshipsFilesSchema.d.ts.map +1 -0
  7. package/dist/models/CallRelationshipsFilesSchema.js +50 -0
  8. package/dist/models/CallRelationshipsFilesSchema.js.map +1 -0
  9. package/dist/models/CallRelationshipsSchema.d.ts +7 -0
  10. package/dist/models/CallRelationshipsSchema.d.ts.map +1 -1
  11. package/dist/models/CallRelationshipsSchema.js +3 -0
  12. package/dist/models/CallRelationshipsSchema.js.map +1 -1
  13. package/dist/models/ChatRelationshipsFilesDataSchema.d.ts +39 -0
  14. package/dist/models/ChatRelationshipsFilesDataSchema.d.ts.map +1 -0
  15. package/dist/models/ChatRelationshipsFilesDataSchema.js +51 -0
  16. package/dist/models/ChatRelationshipsFilesDataSchema.js.map +1 -0
  17. package/dist/models/ChatRelationshipsFilesSchema.d.ts +34 -0
  18. package/dist/models/ChatRelationshipsFilesSchema.d.ts.map +1 -0
  19. package/dist/models/ChatRelationshipsFilesSchema.js +50 -0
  20. package/dist/models/ChatRelationshipsFilesSchema.js.map +1 -0
  21. package/dist/models/ChatRelationshipsSchema.d.ts +7 -0
  22. package/dist/models/ChatRelationshipsSchema.d.ts.map +1 -1
  23. package/dist/models/ChatRelationshipsSchema.js +3 -0
  24. package/dist/models/ChatRelationshipsSchema.js.map +1 -1
  25. package/dist/models/EmailRelationshipsFilesDataSchema.d.ts +39 -0
  26. package/dist/models/EmailRelationshipsFilesDataSchema.d.ts.map +1 -0
  27. package/dist/models/EmailRelationshipsFilesDataSchema.js +51 -0
  28. package/dist/models/EmailRelationshipsFilesDataSchema.js.map +1 -0
  29. package/dist/models/EmailRelationshipsFilesSchema.d.ts +34 -0
  30. package/dist/models/EmailRelationshipsFilesSchema.d.ts.map +1 -0
  31. package/dist/models/EmailRelationshipsFilesSchema.js +50 -0
  32. package/dist/models/EmailRelationshipsFilesSchema.js.map +1 -0
  33. package/dist/models/EmailRelationshipsSchema.d.ts +7 -0
  34. package/dist/models/EmailRelationshipsSchema.d.ts.map +1 -1
  35. package/dist/models/EmailRelationshipsSchema.js +3 -0
  36. package/dist/models/EmailRelationshipsSchema.js.map +1 -1
  37. package/dist/models/MeetingRelationshipsFilesDataSchema.d.ts +39 -0
  38. package/dist/models/MeetingRelationshipsFilesDataSchema.d.ts.map +1 -0
  39. package/dist/models/MeetingRelationshipsFilesDataSchema.js +51 -0
  40. package/dist/models/MeetingRelationshipsFilesDataSchema.js.map +1 -0
  41. package/dist/models/MeetingRelationshipsFilesSchema.d.ts +34 -0
  42. package/dist/models/MeetingRelationshipsFilesSchema.d.ts.map +1 -0
  43. package/dist/models/MeetingRelationshipsFilesSchema.js +50 -0
  44. package/dist/models/MeetingRelationshipsFilesSchema.js.map +1 -0
  45. package/dist/models/MeetingRelationshipsSchema.d.ts +7 -0
  46. package/dist/models/MeetingRelationshipsSchema.d.ts.map +1 -1
  47. package/dist/models/MeetingRelationshipsSchema.js +3 -0
  48. package/dist/models/MeetingRelationshipsSchema.js.map +1 -1
  49. package/dist/models/index.d.ts +8 -0
  50. package/dist/models/index.d.ts.map +1 -1
  51. package/dist/models/index.js +8 -0
  52. package/dist/models/index.js.map +1 -1
  53. package/package.json +1 -1
@@ -0,0 +1,39 @@
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
+ *
14
+ * @export
15
+ * @interface CallRelationshipsFilesDataSchema
16
+ */
17
+ export interface CallRelationshipsFilesDataSchema {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CallRelationshipsFilesDataSchema
22
+ */
23
+ type?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof CallRelationshipsFilesDataSchema
28
+ */
29
+ id?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the CallRelationshipsFilesDataSchema interface.
33
+ */
34
+ export declare function instanceOfCallRelationshipsFilesDataSchema(value: object): value is CallRelationshipsFilesDataSchema;
35
+ export declare function CallRelationshipsFilesDataSchemaFromJSON(json: any): CallRelationshipsFilesDataSchema;
36
+ export declare function CallRelationshipsFilesDataSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsFilesDataSchema;
37
+ export declare function CallRelationshipsFilesDataSchemaToJSON(json: any): CallRelationshipsFilesDataSchema;
38
+ export declare function CallRelationshipsFilesDataSchemaToJSONTyped(value?: CallRelationshipsFilesDataSchema | null, ignoreDiscriminator?: boolean): any;
39
+ //# sourceMappingURL=CallRelationshipsFilesDataSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CallRelationshipsFilesDataSchema.d.ts","sourceRoot":"","sources":["../../src/models/CallRelationshipsFilesDataSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,wBAAgB,0CAA0C,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gCAAgC,CAEnH;AAED,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,GAAG,GAAG,gCAAgC,CAEpG;AAED,wBAAgB,6CAA6C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gCAAgC,CASvI;AAED,wBAAgB,sCAAsC,CAAC,IAAI,EAAE,GAAG,GAAG,gCAAgC,CAElG;AAED,wBAAgB,2CAA2C,CAAC,KAAK,CAAC,EAAE,gCAAgC,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUtJ"}
@@ -0,0 +1,51 @@
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.instanceOfCallRelationshipsFilesDataSchema = instanceOfCallRelationshipsFilesDataSchema;
17
+ exports.CallRelationshipsFilesDataSchemaFromJSON = CallRelationshipsFilesDataSchemaFromJSON;
18
+ exports.CallRelationshipsFilesDataSchemaFromJSONTyped = CallRelationshipsFilesDataSchemaFromJSONTyped;
19
+ exports.CallRelationshipsFilesDataSchemaToJSON = CallRelationshipsFilesDataSchemaToJSON;
20
+ exports.CallRelationshipsFilesDataSchemaToJSONTyped = CallRelationshipsFilesDataSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the CallRelationshipsFilesDataSchema interface.
23
+ */
24
+ function instanceOfCallRelationshipsFilesDataSchema(value) {
25
+ return true;
26
+ }
27
+ function CallRelationshipsFilesDataSchemaFromJSON(json) {
28
+ return CallRelationshipsFilesDataSchemaFromJSONTyped(json, false);
29
+ }
30
+ function CallRelationshipsFilesDataSchemaFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'type': json['type'] == null ? undefined : json['type'],
36
+ 'id': json['id'] == null ? undefined : json['id'],
37
+ };
38
+ }
39
+ function CallRelationshipsFilesDataSchemaToJSON(json) {
40
+ return CallRelationshipsFilesDataSchemaToJSONTyped(json, false);
41
+ }
42
+ function CallRelationshipsFilesDataSchemaToJSONTyped(value, ignoreDiscriminator = false) {
43
+ if (value == null) {
44
+ return value;
45
+ }
46
+ return {
47
+ 'type': value['type'],
48
+ 'id': value['id'],
49
+ };
50
+ }
51
+ //# sourceMappingURL=CallRelationshipsFilesDataSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CallRelationshipsFilesDataSchema.js","sourceRoot":"","sources":["../../src/models/CallRelationshipsFilesDataSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0BH,gGAEC;AAED,4FAEC;AAED,sGASC;AAED,wFAEC;AAED,kGAUC;AApCD;;GAEG;AACH,SAAgB,0CAA0C,CAAC,KAAa;IACpE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,wCAAwC,CAAC,IAAS;IAC9D,OAAO,6CAA6C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtE,CAAC;AAED,SAAgB,6CAA6C,CAAC,IAAS,EAAE,mBAA4B;IACjG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;KACpD,CAAC;AACN,CAAC;AAED,SAAgB,sCAAsC,CAAC,IAAS;IAC5D,OAAO,2CAA2C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACpE,CAAC;AAED,SAAgB,2CAA2C,CAAC,KAA+C,EAAE,sBAA+B,KAAK;IAC7I,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;KACpB,CAAC;AACN,CAAC"}
@@ -0,0 +1,34 @@
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
+ import type { CallRelationshipsFilesDataSchema } from './CallRelationshipsFilesDataSchema';
13
+ /**
14
+ * File attachments shared on this call (File entities). To-many; container-owns-files.
15
+ * @export
16
+ * @interface CallRelationshipsFilesSchema
17
+ */
18
+ export interface CallRelationshipsFilesSchema {
19
+ /**
20
+ *
21
+ * @type {Array<CallRelationshipsFilesDataSchema>}
22
+ * @memberof CallRelationshipsFilesSchema
23
+ */
24
+ data?: Array<CallRelationshipsFilesDataSchema>;
25
+ }
26
+ /**
27
+ * Check if a given object implements the CallRelationshipsFilesSchema interface.
28
+ */
29
+ export declare function instanceOfCallRelationshipsFilesSchema(value: object): value is CallRelationshipsFilesSchema;
30
+ export declare function CallRelationshipsFilesSchemaFromJSON(json: any): CallRelationshipsFilesSchema;
31
+ export declare function CallRelationshipsFilesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsFilesSchema;
32
+ export declare function CallRelationshipsFilesSchemaToJSON(json: any): CallRelationshipsFilesSchema;
33
+ export declare function CallRelationshipsFilesSchemaToJSONTyped(value?: CallRelationshipsFilesSchema | null, ignoreDiscriminator?: boolean): any;
34
+ //# sourceMappingURL=CallRelationshipsFilesSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CallRelationshipsFilesSchema.d.ts","sourceRoot":"","sources":["../../src/models/CallRelationshipsFilesSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAQ3F;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,gCAAgC,CAAC,CAAC;CAClD;AAED;;GAEG;AACH,wBAAgB,sCAAsC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,4BAA4B,CAE3G;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,GAAG,4BAA4B,CAE5F;AAED,wBAAgB,yCAAyC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,4BAA4B,CAQ/H;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,GAAG,GAAG,4BAA4B,CAE1F;AAED,wBAAgB,uCAAuC,CAAC,KAAK,CAAC,EAAE,4BAA4B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAS9I"}
@@ -0,0 +1,50 @@
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.instanceOfCallRelationshipsFilesSchema = instanceOfCallRelationshipsFilesSchema;
17
+ exports.CallRelationshipsFilesSchemaFromJSON = CallRelationshipsFilesSchemaFromJSON;
18
+ exports.CallRelationshipsFilesSchemaFromJSONTyped = CallRelationshipsFilesSchemaFromJSONTyped;
19
+ exports.CallRelationshipsFilesSchemaToJSON = CallRelationshipsFilesSchemaToJSON;
20
+ exports.CallRelationshipsFilesSchemaToJSONTyped = CallRelationshipsFilesSchemaToJSONTyped;
21
+ const CallRelationshipsFilesDataSchema_1 = require("./CallRelationshipsFilesDataSchema");
22
+ /**
23
+ * Check if a given object implements the CallRelationshipsFilesSchema interface.
24
+ */
25
+ function instanceOfCallRelationshipsFilesSchema(value) {
26
+ return true;
27
+ }
28
+ function CallRelationshipsFilesSchemaFromJSON(json) {
29
+ return CallRelationshipsFilesSchemaFromJSONTyped(json, false);
30
+ }
31
+ function CallRelationshipsFilesSchemaFromJSONTyped(json, ignoreDiscriminator) {
32
+ if (json == null) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'data': json['data'] == null ? undefined : (json['data'].map(CallRelationshipsFilesDataSchema_1.CallRelationshipsFilesDataSchemaFromJSON)),
37
+ };
38
+ }
39
+ function CallRelationshipsFilesSchemaToJSON(json) {
40
+ return CallRelationshipsFilesSchemaToJSONTyped(json, false);
41
+ }
42
+ function CallRelationshipsFilesSchemaToJSONTyped(value, ignoreDiscriminator = false) {
43
+ if (value == null) {
44
+ return value;
45
+ }
46
+ return {
47
+ 'data': value['data'] == null ? undefined : (value['data'].map(CallRelationshipsFilesDataSchema_1.CallRelationshipsFilesDataSchemaToJSON)),
48
+ };
49
+ }
50
+ //# sourceMappingURL=CallRelationshipsFilesSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CallRelationshipsFilesSchema.js","sourceRoot":"","sources":["../../src/models/CallRelationshipsFilesSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA4BH,wFAEC;AAED,oFAEC;AAED,8FAQC;AAED,gFAEC;AAED,0FASC;AAvDD,yFAK4C;AAgB5C;;GAEG;AACH,SAAgB,sCAAsC,CAAC,KAAa;IAChE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,oCAAoC,CAAC,IAAS;IAC1D,OAAO,yCAAyC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClE,CAAC;AAED,SAAgB,yCAAyC,CAAC,IAAS,EAAE,mBAA4B;IAC7F,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,IAAI,CAAC,MAAM,CAAgB,CAAC,GAAG,CAAC,2EAAwC,CAAC,CAAC;KAC1H,CAAC;AACN,CAAC;AAED,SAAgB,kCAAkC,CAAC,IAAS;IACxD,OAAO,uCAAuC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAChE,CAAC;AAED,SAAgB,uCAAuC,CAAC,KAA2C,EAAE,sBAA+B,KAAK;IACrI,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,MAAM,CAAgB,CAAC,GAAG,CAAC,yEAAsC,CAAC,CAAC;KAC1H,CAAC;AACN,CAAC"}
@@ -18,6 +18,7 @@ import type { CallRelationshipsJobSchema } from './CallRelationshipsJobSchema';
18
18
  import type { CallRelationshipsLinksSchema } from './CallRelationshipsLinksSchema';
19
19
  import type { CallRelationshipsBoeUserSchema } from './CallRelationshipsBoeUserSchema';
20
20
  import type { CallRelationshipsUserSchema } from './CallRelationshipsUserSchema';
21
+ import type { CallRelationshipsFilesSchema } from './CallRelationshipsFilesSchema';
21
22
  /**
22
23
  * Relationship slots on the call resource. Principal slots are
23
24
  * to-one (`links`, shared URLs, is to-many). Direction
@@ -33,6 +34,12 @@ import type { CallRelationshipsUserSchema } from './CallRelationshipsUserSchema'
33
34
  * @interface CallRelationshipsSchema
34
35
  */
35
36
  export interface CallRelationshipsSchema {
37
+ /**
38
+ *
39
+ * @type {CallRelationshipsFilesSchema}
40
+ * @memberof CallRelationshipsSchema
41
+ */
42
+ files?: CallRelationshipsFilesSchema;
36
43
  /**
37
44
  *
38
45
  * @type {CallRelationshipsLinksSchema}
@@ -1 +1 @@
1
- {"version":3,"file":"CallRelationshipsSchema.d.ts","sourceRoot":"","sources":["../../src/models/CallRelationshipsSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAOrF,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAO3F,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,uCAAuC,CAAC;AAOjG,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AAOzF,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAO/E,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAC;AAOvF,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAQjF;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,YAAY,CAAC,EAAE,mCAAmC,CAAC;IACnD;;;;OAIG;IACH,SAAS,CAAC,EAAE,gCAAgC,CAAC;IAC7C;;;;OAIG;IACH,MAAM,CAAC,EAAE,6BAA6B,CAAC;IACvC;;;;OAIG;IACH,IAAI,CAAC,EAAE,2BAA2B,CAAC;IACnC;;;;OAIG;IACH,OAAO,CAAC,EAAE,8BAA8B,CAAC;IACzC;;;;OAIG;IACH,GAAG,CAAC,EAAE,0BAA0B,CAAC;IACjC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,+BAA+B,CAAC;CAC9C;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,uBAAuB,CAEjG;AAED,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAElF;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,uBAAuB,CAgBrH;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAEhF;AAED,wBAAgB,kCAAkC,CAAC,KAAK,CAAC,EAAE,uBAAuB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAiBpI"}
1
+ {"version":3,"file":"CallRelationshipsSchema.d.ts","sourceRoot":"","sources":["../../src/models/CallRelationshipsSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAOrF,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAO3F,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,uCAAuC,CAAC;AAOjG,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AAOzF,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAO/E,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAC;AAOvF,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAOjF,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAQnF;;;;;;;;;;;;;GAaG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,YAAY,CAAC,EAAE,mCAAmC,CAAC;IACnD;;;;OAIG;IACH,SAAS,CAAC,EAAE,gCAAgC,CAAC;IAC7C;;;;OAIG;IACH,MAAM,CAAC,EAAE,6BAA6B,CAAC;IACvC;;;;OAIG;IACH,IAAI,CAAC,EAAE,2BAA2B,CAAC;IACnC;;;;OAIG;IACH,OAAO,CAAC,EAAE,8BAA8B,CAAC;IACzC;;;;OAIG;IACH,GAAG,CAAC,EAAE,0BAA0B,CAAC;IACjC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,+BAA+B,CAAC;CAC9C;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,uBAAuB,CAEjG;AAED,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAElF;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,uBAAuB,CAiBrH;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAEhF;AAED,wBAAgB,kCAAkC,CAAC,KAAK,CAAC,EAAE,uBAAuB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAkBpI"}
@@ -27,6 +27,7 @@ const CallRelationshipsJobSchema_1 = require("./CallRelationshipsJobSchema");
27
27
  const CallRelationshipsLinksSchema_1 = require("./CallRelationshipsLinksSchema");
28
28
  const CallRelationshipsBoeUserSchema_1 = require("./CallRelationshipsBoeUserSchema");
29
29
  const CallRelationshipsUserSchema_1 = require("./CallRelationshipsUserSchema");
30
+ const CallRelationshipsFilesSchema_1 = require("./CallRelationshipsFilesSchema");
30
31
  /**
31
32
  * Check if a given object implements the CallRelationshipsSchema interface.
32
33
  */
@@ -41,6 +42,7 @@ function CallRelationshipsSchemaFromJSONTyped(json, ignoreDiscriminator) {
41
42
  return json;
42
43
  }
43
44
  return {
45
+ 'files': json['files'] == null ? undefined : (0, CallRelationshipsFilesSchema_1.CallRelationshipsFilesSchemaFromJSON)(json['files']),
44
46
  'links': json['links'] == null ? undefined : (0, CallRelationshipsLinksSchema_1.CallRelationshipsLinksSchemaFromJSON)(json['links']),
45
47
  'conversation': json['conversation'] == null ? undefined : (0, CallRelationshipsConversationSchema_1.CallRelationshipsConversationSchemaFromJSON)(json['conversation']),
46
48
  'candidate': json['candidate'] == null ? undefined : (0, CallRelationshipsCandidateSchema_1.CallRelationshipsCandidateSchemaFromJSON)(json['candidate']),
@@ -60,6 +62,7 @@ function CallRelationshipsSchemaToJSONTyped(value, ignoreDiscriminator = false)
60
62
  return value;
61
63
  }
62
64
  return {
65
+ 'files': (0, CallRelationshipsFilesSchema_1.CallRelationshipsFilesSchemaToJSON)(value['files']),
63
66
  'links': (0, CallRelationshipsLinksSchema_1.CallRelationshipsLinksSchemaToJSON)(value['links']),
64
67
  'conversation': (0, CallRelationshipsConversationSchema_1.CallRelationshipsConversationSchemaToJSON)(value['conversation']),
65
68
  'candidate': (0, CallRelationshipsCandidateSchema_1.CallRelationshipsCandidateSchemaToJSON)(value['candidate']),
@@ -1 +1 @@
1
- {"version":3,"file":"CallRelationshipsSchema.js","sourceRoot":"","sources":["../../src/models/CallRelationshipsSchema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"CallRelationshipsSchema.js","sourceRoot":"","sources":["../../src/models/CallRelationshipsSchema.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,39 @@
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
+ *
14
+ * @export
15
+ * @interface ChatRelationshipsFilesDataSchema
16
+ */
17
+ export interface ChatRelationshipsFilesDataSchema {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ChatRelationshipsFilesDataSchema
22
+ */
23
+ type?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ChatRelationshipsFilesDataSchema
28
+ */
29
+ id?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the ChatRelationshipsFilesDataSchema interface.
33
+ */
34
+ export declare function instanceOfChatRelationshipsFilesDataSchema(value: object): value is ChatRelationshipsFilesDataSchema;
35
+ export declare function ChatRelationshipsFilesDataSchemaFromJSON(json: any): ChatRelationshipsFilesDataSchema;
36
+ export declare function ChatRelationshipsFilesDataSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRelationshipsFilesDataSchema;
37
+ export declare function ChatRelationshipsFilesDataSchemaToJSON(json: any): ChatRelationshipsFilesDataSchema;
38
+ export declare function ChatRelationshipsFilesDataSchemaToJSONTyped(value?: ChatRelationshipsFilesDataSchema | null, ignoreDiscriminator?: boolean): any;
39
+ //# sourceMappingURL=ChatRelationshipsFilesDataSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatRelationshipsFilesDataSchema.d.ts","sourceRoot":"","sources":["../../src/models/ChatRelationshipsFilesDataSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,wBAAgB,0CAA0C,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,gCAAgC,CAEnH;AAED,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,GAAG,GAAG,gCAAgC,CAEpG;AAED,wBAAgB,6CAA6C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,gCAAgC,CASvI;AAED,wBAAgB,sCAAsC,CAAC,IAAI,EAAE,GAAG,GAAG,gCAAgC,CAElG;AAED,wBAAgB,2CAA2C,CAAC,KAAK,CAAC,EAAE,gCAAgC,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUtJ"}
@@ -0,0 +1,51 @@
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.instanceOfChatRelationshipsFilesDataSchema = instanceOfChatRelationshipsFilesDataSchema;
17
+ exports.ChatRelationshipsFilesDataSchemaFromJSON = ChatRelationshipsFilesDataSchemaFromJSON;
18
+ exports.ChatRelationshipsFilesDataSchemaFromJSONTyped = ChatRelationshipsFilesDataSchemaFromJSONTyped;
19
+ exports.ChatRelationshipsFilesDataSchemaToJSON = ChatRelationshipsFilesDataSchemaToJSON;
20
+ exports.ChatRelationshipsFilesDataSchemaToJSONTyped = ChatRelationshipsFilesDataSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the ChatRelationshipsFilesDataSchema interface.
23
+ */
24
+ function instanceOfChatRelationshipsFilesDataSchema(value) {
25
+ return true;
26
+ }
27
+ function ChatRelationshipsFilesDataSchemaFromJSON(json) {
28
+ return ChatRelationshipsFilesDataSchemaFromJSONTyped(json, false);
29
+ }
30
+ function ChatRelationshipsFilesDataSchemaFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'type': json['type'] == null ? undefined : json['type'],
36
+ 'id': json['id'] == null ? undefined : json['id'],
37
+ };
38
+ }
39
+ function ChatRelationshipsFilesDataSchemaToJSON(json) {
40
+ return ChatRelationshipsFilesDataSchemaToJSONTyped(json, false);
41
+ }
42
+ function ChatRelationshipsFilesDataSchemaToJSONTyped(value, ignoreDiscriminator = false) {
43
+ if (value == null) {
44
+ return value;
45
+ }
46
+ return {
47
+ 'type': value['type'],
48
+ 'id': value['id'],
49
+ };
50
+ }
51
+ //# sourceMappingURL=ChatRelationshipsFilesDataSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatRelationshipsFilesDataSchema.js","sourceRoot":"","sources":["../../src/models/ChatRelationshipsFilesDataSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0BH,gGAEC;AAED,4FAEC;AAED,sGASC;AAED,wFAEC;AAED,kGAUC;AApCD;;GAEG;AACH,SAAgB,0CAA0C,CAAC,KAAa;IACpE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,wCAAwC,CAAC,IAAS;IAC9D,OAAO,6CAA6C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtE,CAAC;AAED,SAAgB,6CAA6C,CAAC,IAAS,EAAE,mBAA4B;IACjG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;KACpD,CAAC;AACN,CAAC;AAED,SAAgB,sCAAsC,CAAC,IAAS;IAC5D,OAAO,2CAA2C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACpE,CAAC;AAED,SAAgB,2CAA2C,CAAC,KAA+C,EAAE,sBAA+B,KAAK;IAC7I,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;KACpB,CAAC;AACN,CAAC"}
@@ -0,0 +1,34 @@
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
+ import type { ChatRelationshipsFilesDataSchema } from './ChatRelationshipsFilesDataSchema';
13
+ /**
14
+ * File attachments sent in this chat (File entities). To-many; container-owns-files.
15
+ * @export
16
+ * @interface ChatRelationshipsFilesSchema
17
+ */
18
+ export interface ChatRelationshipsFilesSchema {
19
+ /**
20
+ *
21
+ * @type {Array<ChatRelationshipsFilesDataSchema>}
22
+ * @memberof ChatRelationshipsFilesSchema
23
+ */
24
+ data?: Array<ChatRelationshipsFilesDataSchema>;
25
+ }
26
+ /**
27
+ * Check if a given object implements the ChatRelationshipsFilesSchema interface.
28
+ */
29
+ export declare function instanceOfChatRelationshipsFilesSchema(value: object): value is ChatRelationshipsFilesSchema;
30
+ export declare function ChatRelationshipsFilesSchemaFromJSON(json: any): ChatRelationshipsFilesSchema;
31
+ export declare function ChatRelationshipsFilesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRelationshipsFilesSchema;
32
+ export declare function ChatRelationshipsFilesSchemaToJSON(json: any): ChatRelationshipsFilesSchema;
33
+ export declare function ChatRelationshipsFilesSchemaToJSONTyped(value?: ChatRelationshipsFilesSchema | null, ignoreDiscriminator?: boolean): any;
34
+ //# sourceMappingURL=ChatRelationshipsFilesSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatRelationshipsFilesSchema.d.ts","sourceRoot":"","sources":["../../src/models/ChatRelationshipsFilesSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAQ3F;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC,gCAAgC,CAAC,CAAC;CAClD;AAED;;GAEG;AACH,wBAAgB,sCAAsC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,4BAA4B,CAE3G;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,GAAG,4BAA4B,CAE5F;AAED,wBAAgB,yCAAyC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,4BAA4B,CAQ/H;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,GAAG,GAAG,4BAA4B,CAE1F;AAED,wBAAgB,uCAAuC,CAAC,KAAK,CAAC,EAAE,4BAA4B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAS9I"}
@@ -0,0 +1,50 @@
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.instanceOfChatRelationshipsFilesSchema = instanceOfChatRelationshipsFilesSchema;
17
+ exports.ChatRelationshipsFilesSchemaFromJSON = ChatRelationshipsFilesSchemaFromJSON;
18
+ exports.ChatRelationshipsFilesSchemaFromJSONTyped = ChatRelationshipsFilesSchemaFromJSONTyped;
19
+ exports.ChatRelationshipsFilesSchemaToJSON = ChatRelationshipsFilesSchemaToJSON;
20
+ exports.ChatRelationshipsFilesSchemaToJSONTyped = ChatRelationshipsFilesSchemaToJSONTyped;
21
+ const ChatRelationshipsFilesDataSchema_1 = require("./ChatRelationshipsFilesDataSchema");
22
+ /**
23
+ * Check if a given object implements the ChatRelationshipsFilesSchema interface.
24
+ */
25
+ function instanceOfChatRelationshipsFilesSchema(value) {
26
+ return true;
27
+ }
28
+ function ChatRelationshipsFilesSchemaFromJSON(json) {
29
+ return ChatRelationshipsFilesSchemaFromJSONTyped(json, false);
30
+ }
31
+ function ChatRelationshipsFilesSchemaFromJSONTyped(json, ignoreDiscriminator) {
32
+ if (json == null) {
33
+ return json;
34
+ }
35
+ return {
36
+ 'data': json['data'] == null ? undefined : (json['data'].map(ChatRelationshipsFilesDataSchema_1.ChatRelationshipsFilesDataSchemaFromJSON)),
37
+ };
38
+ }
39
+ function ChatRelationshipsFilesSchemaToJSON(json) {
40
+ return ChatRelationshipsFilesSchemaToJSONTyped(json, false);
41
+ }
42
+ function ChatRelationshipsFilesSchemaToJSONTyped(value, ignoreDiscriminator = false) {
43
+ if (value == null) {
44
+ return value;
45
+ }
46
+ return {
47
+ 'data': value['data'] == null ? undefined : (value['data'].map(ChatRelationshipsFilesDataSchema_1.ChatRelationshipsFilesDataSchemaToJSON)),
48
+ };
49
+ }
50
+ //# sourceMappingURL=ChatRelationshipsFilesSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatRelationshipsFilesSchema.js","sourceRoot":"","sources":["../../src/models/ChatRelationshipsFilesSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA4BH,wFAEC;AAED,oFAEC;AAED,8FAQC;AAED,gFAEC;AAED,0FASC;AAvDD,yFAK4C;AAgB5C;;GAEG;AACH,SAAgB,sCAAsC,CAAC,KAAa;IAChE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,oCAAoC,CAAC,IAAS;IAC1D,OAAO,yCAAyC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClE,CAAC;AAED,SAAgB,yCAAyC,CAAC,IAAS,EAAE,mBAA4B;IAC7F,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,IAAI,CAAC,MAAM,CAAgB,CAAC,GAAG,CAAC,2EAAwC,CAAC,CAAC;KAC1H,CAAC;AACN,CAAC;AAED,SAAgB,kCAAkC,CAAC,IAAS;IACxD,OAAO,uCAAuC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAChE,CAAC;AAED,SAAgB,uCAAuC,CAAC,KAA2C,EAAE,sBAA+B,KAAK;IACrI,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAE,KAAK,CAAC,MAAM,CAAgB,CAAC,GAAG,CAAC,yEAAsC,CAAC,CAAC;KAC1H,CAAC;AACN,CAAC"}
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { ChatRelationshipsCandidateSchema } from './ChatRelationshipsCandidateSchema';
13
+ import type { ChatRelationshipsFilesSchema } from './ChatRelationshipsFilesSchema';
13
14
  import type { ChatRelationshipsLinksSchema } from './ChatRelationshipsLinksSchema';
14
15
  import type { ChatRelationshipsConversationSchema } from './ChatRelationshipsConversationSchema';
15
16
  import type { ChatRelationshipsBoeUserSchema } from './ChatRelationshipsBoeUserSchema';
@@ -29,6 +30,12 @@ import type { ChatRelationshipsUserSchema } from './ChatRelationshipsUserSchema'
29
30
  * @interface ChatRelationshipsSchema
30
31
  */
31
32
  export interface ChatRelationshipsSchema {
33
+ /**
34
+ *
35
+ * @type {ChatRelationshipsFilesSchema}
36
+ * @memberof ChatRelationshipsSchema
37
+ */
38
+ files?: ChatRelationshipsFilesSchema;
32
39
  /**
33
40
  *
34
41
  * @type {ChatRelationshipsLinksSchema}
@@ -1 +1 @@
1
- {"version":3,"file":"ChatRelationshipsSchema.d.ts","sourceRoot":"","sources":["../../src/models/ChatRelationshipsSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAO3F,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,uCAAuC,CAAC;AAOjG,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAC;AAOvF,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AAOzF,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAOrF,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAQjF;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,YAAY,CAAC,EAAE,mCAAmC,CAAC;IACnD;;;;OAIG;IACH,SAAS,CAAC,EAAE,gCAAgC,CAAC;IAC7C;;;;OAIG;IACH,MAAM,CAAC,EAAE,6BAA6B,CAAC;IACvC;;;;OAIG;IACH,IAAI,CAAC,EAAE,2BAA2B,CAAC;IACnC;;;;OAIG;IACH,OAAO,CAAC,EAAE,8BAA8B,CAAC;IACzC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,+BAA+B,CAAC;CAC9C;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,uBAAuB,CAEjG;AAED,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAElF;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,uBAAuB,CAcrH;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAEhF;AAED,wBAAgB,kCAAkC,CAAC,KAAK,CAAC,EAAE,uBAAuB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAepI"}
1
+ {"version":3,"file":"ChatRelationshipsSchema.d.ts","sourceRoot":"","sources":["../../src/models/ChatRelationshipsSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AAO3F,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAOnF,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,uCAAuC,CAAC;AAOjG,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAC;AAOvF,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AAOzF,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAOrF,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,+BAA+B,CAAC;AAQjF;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,KAAK,CAAC,EAAE,4BAA4B,CAAC;IACrC;;;;OAIG;IACH,YAAY,CAAC,EAAE,mCAAmC,CAAC;IACnD;;;;OAIG;IACH,SAAS,CAAC,EAAE,gCAAgC,CAAC;IAC7C;;;;OAIG;IACH,MAAM,CAAC,EAAE,6BAA6B,CAAC;IACvC;;;;OAIG;IACH,IAAI,CAAC,EAAE,2BAA2B,CAAC;IACnC;;;;OAIG;IACH,OAAO,CAAC,EAAE,8BAA8B,CAAC;IACzC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,+BAA+B,CAAC;CAC9C;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,uBAAuB,CAEjG;AAED,wBAAgB,+BAA+B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAElF;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,uBAAuB,CAerH;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,GAAG,GAAG,uBAAuB,CAEhF;AAED,wBAAgB,kCAAkC,CAAC,KAAK,CAAC,EAAE,uBAAuB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAgBpI"}
@@ -19,6 +19,7 @@ exports.ChatRelationshipsSchemaFromJSONTyped = ChatRelationshipsSchemaFromJSONTy
19
19
  exports.ChatRelationshipsSchemaToJSON = ChatRelationshipsSchemaToJSON;
20
20
  exports.ChatRelationshipsSchemaToJSONTyped = ChatRelationshipsSchemaToJSONTyped;
21
21
  const ChatRelationshipsCandidateSchema_1 = require("./ChatRelationshipsCandidateSchema");
22
+ const ChatRelationshipsFilesSchema_1 = require("./ChatRelationshipsFilesSchema");
22
23
  const ChatRelationshipsLinksSchema_1 = require("./ChatRelationshipsLinksSchema");
23
24
  const ChatRelationshipsConversationSchema_1 = require("./ChatRelationshipsConversationSchema");
24
25
  const ChatRelationshipsBoeUserSchema_1 = require("./ChatRelationshipsBoeUserSchema");
@@ -39,6 +40,7 @@ function ChatRelationshipsSchemaFromJSONTyped(json, ignoreDiscriminator) {
39
40
  return json;
40
41
  }
41
42
  return {
43
+ 'files': json['files'] == null ? undefined : (0, ChatRelationshipsFilesSchema_1.ChatRelationshipsFilesSchemaFromJSON)(json['files']),
42
44
  'links': json['links'] == null ? undefined : (0, ChatRelationshipsLinksSchema_1.ChatRelationshipsLinksSchemaFromJSON)(json['links']),
43
45
  'conversation': json['conversation'] == null ? undefined : (0, ChatRelationshipsConversationSchema_1.ChatRelationshipsConversationSchemaFromJSON)(json['conversation']),
44
46
  'candidate': json['candidate'] == null ? undefined : (0, ChatRelationshipsCandidateSchema_1.ChatRelationshipsCandidateSchemaFromJSON)(json['candidate']),
@@ -56,6 +58,7 @@ function ChatRelationshipsSchemaToJSONTyped(value, ignoreDiscriminator = false)
56
58
  return value;
57
59
  }
58
60
  return {
61
+ 'files': (0, ChatRelationshipsFilesSchema_1.ChatRelationshipsFilesSchemaToJSON)(value['files']),
59
62
  'links': (0, ChatRelationshipsLinksSchema_1.ChatRelationshipsLinksSchemaToJSON)(value['links']),
60
63
  'conversation': (0, ChatRelationshipsConversationSchema_1.ChatRelationshipsConversationSchemaToJSON)(value['conversation']),
61
64
  'candidate': (0, ChatRelationshipsCandidateSchema_1.ChatRelationshipsCandidateSchemaToJSON)(value['candidate']),
@@ -1 +1 @@
1
- {"version":3,"file":"ChatRelationshipsSchema.js","sourceRoot":"","sources":["../../src/models/ChatRelationshipsSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAiHH,8EAEC;AAED,0EAEC;AAED,oFAcC;AAED,sEAEC;AAED,gFAeC;AAxJD,yFAK4C;AAE5C,iFAKwC;AAExC,+FAK+C;AAE/C,qFAK0C;AAE1C,uFAK2C;AAE3C,mFAKyC;AAEzC,+EAKuC;AA2DvC;;GAEG;AACH,SAAgB,iCAAiC,CAAC,KAAa;IAC3D,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,+BAA+B,CAAC,IAAS;IACrD,OAAO,oCAAoC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC7D,CAAC;AAED,SAAgB,oCAAoC,CAAC,IAAS,EAAE,mBAA4B;IACxF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,mEAAoC,EAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAChG,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,iFAA2C,EAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QAC5H,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,2EAAwC,EAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAChH,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,qEAAqC,EAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QACpG,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,iEAAmC,EAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC5F,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,uEAAsC,EAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACxG,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAA,yEAAuC,EAAC,IAAI,CAAC,UAAU,CAAC,CAAC;KAC/G,CAAC;AACN,CAAC;AAED,SAAgB,6BAA6B,CAAC,IAAS;IACnD,OAAO,kCAAkC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC3D,CAAC;AAED,SAAgB,kCAAkC,CAAC,KAAsC,EAAE,sBAA+B,KAAK;IAC3H,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,OAAO,EAAE,IAAA,iEAAkC,EAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QAC3D,cAAc,EAAE,IAAA,+EAAyC,EAAC,KAAK,CAAC,cAAc,CAAC,CAAC;QAChF,WAAW,EAAE,IAAA,yEAAsC,EAAC,KAAK,CAAC,WAAW,CAAC,CAAC;QACvE,QAAQ,EAAE,IAAA,mEAAmC,EAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;QAC9D,MAAM,EAAE,IAAA,+DAAiC,EAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QACxD,SAAS,EAAE,IAAA,qEAAoC,EAAC,KAAK,CAAC,SAAS,CAAC,CAAC;QACjE,UAAU,EAAE,IAAA,uEAAqC,EAAC,KAAK,CAAC,UAAU,CAAC,CAAC;KACvE,CAAC;AACN,CAAC"}
1
+ {"version":3,"file":"ChatRelationshipsSchema.js","sourceRoot":"","sources":["../../src/models/ChatRelationshipsSchema.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,39 @@
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
+ *
14
+ * @export
15
+ * @interface EmailRelationshipsFilesDataSchema
16
+ */
17
+ export interface EmailRelationshipsFilesDataSchema {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof EmailRelationshipsFilesDataSchema
22
+ */
23
+ type?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof EmailRelationshipsFilesDataSchema
28
+ */
29
+ id?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the EmailRelationshipsFilesDataSchema interface.
33
+ */
34
+ export declare function instanceOfEmailRelationshipsFilesDataSchema(value: object): value is EmailRelationshipsFilesDataSchema;
35
+ export declare function EmailRelationshipsFilesDataSchemaFromJSON(json: any): EmailRelationshipsFilesDataSchema;
36
+ export declare function EmailRelationshipsFilesDataSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailRelationshipsFilesDataSchema;
37
+ export declare function EmailRelationshipsFilesDataSchemaToJSON(json: any): EmailRelationshipsFilesDataSchema;
38
+ export declare function EmailRelationshipsFilesDataSchemaToJSONTyped(value?: EmailRelationshipsFilesDataSchema | null, ignoreDiscriminator?: boolean): any;
39
+ //# sourceMappingURL=EmailRelationshipsFilesDataSchema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmailRelationshipsFilesDataSchema.d.ts","sourceRoot":"","sources":["../../src/models/EmailRelationshipsFilesDataSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,wBAAgB,2CAA2C,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,iCAAiC,CAErH;AAED,wBAAgB,yCAAyC,CAAC,IAAI,EAAE,GAAG,GAAG,iCAAiC,CAEtG;AAED,wBAAgB,8CAA8C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,iCAAiC,CASzI;AAED,wBAAgB,uCAAuC,CAAC,IAAI,EAAE,GAAG,GAAG,iCAAiC,CAEpG;AAED,wBAAgB,4CAA4C,CAAC,KAAK,CAAC,EAAE,iCAAiC,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUxJ"}
@@ -0,0 +1,51 @@
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.instanceOfEmailRelationshipsFilesDataSchema = instanceOfEmailRelationshipsFilesDataSchema;
17
+ exports.EmailRelationshipsFilesDataSchemaFromJSON = EmailRelationshipsFilesDataSchemaFromJSON;
18
+ exports.EmailRelationshipsFilesDataSchemaFromJSONTyped = EmailRelationshipsFilesDataSchemaFromJSONTyped;
19
+ exports.EmailRelationshipsFilesDataSchemaToJSON = EmailRelationshipsFilesDataSchemaToJSON;
20
+ exports.EmailRelationshipsFilesDataSchemaToJSONTyped = EmailRelationshipsFilesDataSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the EmailRelationshipsFilesDataSchema interface.
23
+ */
24
+ function instanceOfEmailRelationshipsFilesDataSchema(value) {
25
+ return true;
26
+ }
27
+ function EmailRelationshipsFilesDataSchemaFromJSON(json) {
28
+ return EmailRelationshipsFilesDataSchemaFromJSONTyped(json, false);
29
+ }
30
+ function EmailRelationshipsFilesDataSchemaFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'type': json['type'] == null ? undefined : json['type'],
36
+ 'id': json['id'] == null ? undefined : json['id'],
37
+ };
38
+ }
39
+ function EmailRelationshipsFilesDataSchemaToJSON(json) {
40
+ return EmailRelationshipsFilesDataSchemaToJSONTyped(json, false);
41
+ }
42
+ function EmailRelationshipsFilesDataSchemaToJSONTyped(value, ignoreDiscriminator = false) {
43
+ if (value == null) {
44
+ return value;
45
+ }
46
+ return {
47
+ 'type': value['type'],
48
+ 'id': value['id'],
49
+ };
50
+ }
51
+ //# sourceMappingURL=EmailRelationshipsFilesDataSchema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmailRelationshipsFilesDataSchema.js","sourceRoot":"","sources":["../../src/models/EmailRelationshipsFilesDataSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AA0BH,kGAEC;AAED,8FAEC;AAED,wGASC;AAED,0FAEC;AAED,oGAUC;AApCD;;GAEG;AACH,SAAgB,2CAA2C,CAAC,KAAa;IACrE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,yCAAyC,CAAC,IAAS;IAC/D,OAAO,8CAA8C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACvE,CAAC;AAED,SAAgB,8CAA8C,CAAC,IAAS,EAAE,mBAA4B;IAClG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;KACpD,CAAC;AACN,CAAC;AAED,SAAgB,uCAAuC,CAAC,IAAS;IAC7D,OAAO,4CAA4C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACrE,CAAC;AAED,SAAgB,4CAA4C,CAAC,KAAgD,EAAE,sBAA+B,KAAK;IAC/I,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;KACpB,CAAC;AACN,CAAC"}