@equisoft/ucx-proxy-sdk-typescript 0.0.3-snapshot.20250910185730

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 (143) hide show
  1. package/.openapi-generator/FILES +33 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/.tool-versions +3 -0
  5. package/README.md +46 -0
  6. package/dist/apis/ContactApi.d.ts +31 -0
  7. package/dist/apis/ContactApi.js +67 -0
  8. package/dist/apis/OrganizationSourceAuthenticationApi.d.ts +81 -0
  9. package/dist/apis/OrganizationSourceAuthenticationApi.js +236 -0
  10. package/dist/apis/index.d.ts +2 -0
  11. package/dist/apis/index.js +20 -0
  12. package/dist/esm/apis/ContactApi.d.ts +31 -0
  13. package/dist/esm/apis/ContactApi.js +63 -0
  14. package/dist/esm/apis/OrganizationSourceAuthenticationApi.d.ts +81 -0
  15. package/dist/esm/apis/OrganizationSourceAuthenticationApi.js +232 -0
  16. package/dist/esm/apis/index.d.ts +2 -0
  17. package/dist/esm/apis/index.js +4 -0
  18. package/dist/esm/index.d.ts +3 -0
  19. package/dist/esm/index.js +5 -0
  20. package/dist/esm/models/AddressLabel.d.ts +29 -0
  21. package/dist/esm/models/AddressLabel.js +47 -0
  22. package/dist/esm/models/AddressSchema.d.ts +75 -0
  23. package/dist/esm/models/AddressSchema.js +60 -0
  24. package/dist/esm/models/ContactLanguage.d.ts +26 -0
  25. package/dist/esm/models/ContactLanguage.js +44 -0
  26. package/dist/esm/models/ContactSchema.d.ts +116 -0
  27. package/dist/esm/models/ContactSchema.js +83 -0
  28. package/dist/esm/models/CreatePayloadSourceAuthenticationSchema.d.ts +54 -0
  29. package/dist/esm/models/CreatePayloadSourceAuthenticationSchema.js +55 -0
  30. package/dist/esm/models/EmailLabel.d.ts +28 -0
  31. package/dist/esm/models/EmailLabel.js +46 -0
  32. package/dist/esm/models/EmailSchema.d.ts +45 -0
  33. package/dist/esm/models/EmailSchema.js +52 -0
  34. package/dist/esm/models/ErrorCodes.d.ts +27 -0
  35. package/dist/esm/models/ErrorCodes.js +45 -0
  36. package/dist/esm/models/ErrorResponse.d.ts +46 -0
  37. package/dist/esm/models/ErrorResponse.js +45 -0
  38. package/dist/esm/models/ErrorSchema.d.ts +39 -0
  39. package/dist/esm/models/ErrorSchema.js +46 -0
  40. package/dist/esm/models/Gender.d.ts +28 -0
  41. package/dist/esm/models/Gender.js +46 -0
  42. package/dist/esm/models/ListOrganizationSourceAuthenticationResultSchema.d.ts +33 -0
  43. package/dist/esm/models/ListOrganizationSourceAuthenticationResultSchema.js +44 -0
  44. package/dist/esm/models/MaritalStatus.d.ts +32 -0
  45. package/dist/esm/models/MaritalStatus.js +50 -0
  46. package/dist/esm/models/OrganizationSourceAuthenticationResultSchema.d.ts +47 -0
  47. package/dist/esm/models/OrganizationSourceAuthenticationResultSchema.js +50 -0
  48. package/dist/esm/models/OrganizationSourceAuthenticationSchema.d.ts +78 -0
  49. package/dist/esm/models/OrganizationSourceAuthenticationSchema.js +71 -0
  50. package/dist/esm/models/PhoneLabel.d.ts +30 -0
  51. package/dist/esm/models/PhoneLabel.js +48 -0
  52. package/dist/esm/models/PhoneSchema.d.ts +45 -0
  53. package/dist/esm/models/PhoneSchema.js +50 -0
  54. package/dist/esm/models/SourceResultSchema.d.ts +59 -0
  55. package/dist/esm/models/SourceResultSchema.js +56 -0
  56. package/dist/esm/models/Status.d.ts +26 -0
  57. package/dist/esm/models/Status.js +44 -0
  58. package/dist/esm/models/ToggleSourceAuthenticationSchema.d.ts +38 -0
  59. package/dist/esm/models/ToggleSourceAuthenticationSchema.js +47 -0
  60. package/dist/esm/models/UpdatePayloadSourceAuthenticationSchema.d.ts +48 -0
  61. package/dist/esm/models/UpdatePayloadSourceAuthenticationSchema.js +51 -0
  62. package/dist/esm/models/index.d.ts +21 -0
  63. package/dist/esm/models/index.js +23 -0
  64. package/dist/esm/runtime.d.ts +184 -0
  65. package/dist/esm/runtime.js +334 -0
  66. package/dist/index.d.ts +3 -0
  67. package/dist/index.js +21 -0
  68. package/dist/models/AddressLabel.d.ts +29 -0
  69. package/dist/models/AddressLabel.js +55 -0
  70. package/dist/models/AddressSchema.d.ts +75 -0
  71. package/dist/models/AddressSchema.js +67 -0
  72. package/dist/models/ContactLanguage.d.ts +26 -0
  73. package/dist/models/ContactLanguage.js +52 -0
  74. package/dist/models/ContactSchema.d.ts +116 -0
  75. package/dist/models/ContactSchema.js +90 -0
  76. package/dist/models/CreatePayloadSourceAuthenticationSchema.d.ts +54 -0
  77. package/dist/models/CreatePayloadSourceAuthenticationSchema.js +62 -0
  78. package/dist/models/EmailLabel.d.ts +28 -0
  79. package/dist/models/EmailLabel.js +54 -0
  80. package/dist/models/EmailSchema.d.ts +45 -0
  81. package/dist/models/EmailSchema.js +59 -0
  82. package/dist/models/ErrorCodes.d.ts +27 -0
  83. package/dist/models/ErrorCodes.js +53 -0
  84. package/dist/models/ErrorResponse.d.ts +46 -0
  85. package/dist/models/ErrorResponse.js +52 -0
  86. package/dist/models/ErrorSchema.d.ts +39 -0
  87. package/dist/models/ErrorSchema.js +53 -0
  88. package/dist/models/Gender.d.ts +28 -0
  89. package/dist/models/Gender.js +54 -0
  90. package/dist/models/ListOrganizationSourceAuthenticationResultSchema.d.ts +33 -0
  91. package/dist/models/ListOrganizationSourceAuthenticationResultSchema.js +51 -0
  92. package/dist/models/MaritalStatus.d.ts +32 -0
  93. package/dist/models/MaritalStatus.js +58 -0
  94. package/dist/models/OrganizationSourceAuthenticationResultSchema.d.ts +47 -0
  95. package/dist/models/OrganizationSourceAuthenticationResultSchema.js +57 -0
  96. package/dist/models/OrganizationSourceAuthenticationSchema.d.ts +78 -0
  97. package/dist/models/OrganizationSourceAuthenticationSchema.js +78 -0
  98. package/dist/models/PhoneLabel.d.ts +30 -0
  99. package/dist/models/PhoneLabel.js +56 -0
  100. package/dist/models/PhoneSchema.d.ts +45 -0
  101. package/dist/models/PhoneSchema.js +57 -0
  102. package/dist/models/SourceResultSchema.d.ts +59 -0
  103. package/dist/models/SourceResultSchema.js +63 -0
  104. package/dist/models/Status.d.ts +26 -0
  105. package/dist/models/Status.js +52 -0
  106. package/dist/models/ToggleSourceAuthenticationSchema.d.ts +38 -0
  107. package/dist/models/ToggleSourceAuthenticationSchema.js +54 -0
  108. package/dist/models/UpdatePayloadSourceAuthenticationSchema.d.ts +48 -0
  109. package/dist/models/UpdatePayloadSourceAuthenticationSchema.js +58 -0
  110. package/dist/models/index.d.ts +21 -0
  111. package/dist/models/index.js +39 -0
  112. package/dist/runtime.d.ts +184 -0
  113. package/dist/runtime.js +350 -0
  114. package/package.json +21 -0
  115. package/src/apis/ContactApi.ts +77 -0
  116. package/src/apis/OrganizationSourceAuthenticationApi.ts +332 -0
  117. package/src/apis/index.ts +4 -0
  118. package/src/index.ts +5 -0
  119. package/src/models/AddressLabel.ts +57 -0
  120. package/src/models/AddressSchema.ts +133 -0
  121. package/src/models/ContactLanguage.ts +54 -0
  122. package/src/models/ContactSchema.ts +219 -0
  123. package/src/models/CreatePayloadSourceAuthenticationSchema.ts +93 -0
  124. package/src/models/EmailLabel.ts +56 -0
  125. package/src/models/EmailSchema.ts +94 -0
  126. package/src/models/ErrorCodes.ts +55 -0
  127. package/src/models/ErrorResponse.ts +81 -0
  128. package/src/models/ErrorSchema.ts +84 -0
  129. package/src/models/Gender.ts +56 -0
  130. package/src/models/ListOrganizationSourceAuthenticationResultSchema.ts +74 -0
  131. package/src/models/MaritalStatus.ts +60 -0
  132. package/src/models/OrganizationSourceAuthenticationResultSchema.ts +106 -0
  133. package/src/models/OrganizationSourceAuthenticationSchema.ts +129 -0
  134. package/src/models/PhoneLabel.ts +58 -0
  135. package/src/models/PhoneSchema.ts +93 -0
  136. package/src/models/SourceResultSchema.ts +123 -0
  137. package/src/models/Status.ts +54 -0
  138. package/src/models/ToggleSourceAuthenticationSchema.ts +75 -0
  139. package/src/models/UpdatePayloadSourceAuthenticationSchema.ts +84 -0
  140. package/src/models/index.ts +23 -0
  141. package/src/runtime.ts +432 -0
  142. package/tsconfig.esm.json +7 -0
  143. package/tsconfig.json +16 -0
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UCX Proxy
6
+ * A single use API for the UCX Proxy.
7
+ *
8
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
9
+ * Contact: customersuccess@equisoft.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.instanceOfErrorResponse = instanceOfErrorResponse;
17
+ exports.ErrorResponseFromJSON = ErrorResponseFromJSON;
18
+ exports.ErrorResponseFromJSONTyped = ErrorResponseFromJSONTyped;
19
+ exports.ErrorResponseToJSON = ErrorResponseToJSON;
20
+ exports.ErrorResponseToJSONTyped = ErrorResponseToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the ErrorResponse interface.
23
+ */
24
+ function instanceOfErrorResponse(value) {
25
+ return true;
26
+ }
27
+ function ErrorResponseFromJSON(json) {
28
+ return ErrorResponseFromJSONTyped(json, false);
29
+ }
30
+ function ErrorResponseFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'details': json['details'] == null ? undefined : json['details'],
36
+ 'errorCode': json['error_code'] == null ? undefined : json['error_code'],
37
+ 'errorMessage': json['error_message'] == null ? undefined : json['error_message'],
38
+ };
39
+ }
40
+ function ErrorResponseToJSON(json) {
41
+ return ErrorResponseToJSONTyped(json, false);
42
+ }
43
+ function ErrorResponseToJSONTyped(value, ignoreDiscriminator = false) {
44
+ if (value == null) {
45
+ return value;
46
+ }
47
+ return {
48
+ 'details': value['details'],
49
+ 'error_code': value['errorCode'],
50
+ 'error_message': value['errorMessage'],
51
+ };
52
+ }
@@ -0,0 +1,39 @@
1
+ /**
2
+ * UCX Proxy
3
+ * A single use API for the UCX Proxy.
4
+ *
5
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
6
+ * Contact: customersuccess@equisoft.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 { ErrorCodes } from './ErrorCodes';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ErrorSchema
17
+ */
18
+ export interface ErrorSchema {
19
+ /**
20
+ *
21
+ * @type {ErrorCodes}
22
+ * @memberof ErrorSchema
23
+ */
24
+ code: ErrorCodes;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof ErrorSchema
29
+ */
30
+ message?: string | null;
31
+ }
32
+ /**
33
+ * Check if a given object implements the ErrorSchema interface.
34
+ */
35
+ export declare function instanceOfErrorSchema(value: object): value is ErrorSchema;
36
+ export declare function ErrorSchemaFromJSON(json: any): ErrorSchema;
37
+ export declare function ErrorSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorSchema;
38
+ export declare function ErrorSchemaToJSON(json: any): ErrorSchema;
39
+ export declare function ErrorSchemaToJSONTyped(value?: ErrorSchema | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UCX Proxy
6
+ * A single use API for the UCX Proxy.
7
+ *
8
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
9
+ * Contact: customersuccess@equisoft.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.instanceOfErrorSchema = instanceOfErrorSchema;
17
+ exports.ErrorSchemaFromJSON = ErrorSchemaFromJSON;
18
+ exports.ErrorSchemaFromJSONTyped = ErrorSchemaFromJSONTyped;
19
+ exports.ErrorSchemaToJSON = ErrorSchemaToJSON;
20
+ exports.ErrorSchemaToJSONTyped = ErrorSchemaToJSONTyped;
21
+ const ErrorCodes_1 = require("./ErrorCodes");
22
+ /**
23
+ * Check if a given object implements the ErrorSchema interface.
24
+ */
25
+ function instanceOfErrorSchema(value) {
26
+ if (!('code' in value) || value['code'] === undefined)
27
+ return false;
28
+ return true;
29
+ }
30
+ function ErrorSchemaFromJSON(json) {
31
+ return ErrorSchemaFromJSONTyped(json, false);
32
+ }
33
+ function ErrorSchemaFromJSONTyped(json, ignoreDiscriminator) {
34
+ if (json == null) {
35
+ return json;
36
+ }
37
+ return {
38
+ 'code': (0, ErrorCodes_1.ErrorCodesFromJSON)(json['code']),
39
+ 'message': json['message'] == null ? undefined : json['message'],
40
+ };
41
+ }
42
+ function ErrorSchemaToJSON(json) {
43
+ return ErrorSchemaToJSONTyped(json, false);
44
+ }
45
+ function ErrorSchemaToJSONTyped(value, ignoreDiscriminator = false) {
46
+ if (value == null) {
47
+ return value;
48
+ }
49
+ return {
50
+ 'code': (0, ErrorCodes_1.ErrorCodesToJSON)(value['code']),
51
+ 'message': value['message'],
52
+ };
53
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * UCX Proxy
3
+ * A single use API for the UCX Proxy.
4
+ *
5
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
6
+ * Contact: customersuccess@equisoft.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
+ */
16
+ export declare const Gender: {
17
+ readonly MALE: "MALE";
18
+ readonly FEMALE: "FEMALE";
19
+ readonly OTHER: "OTHER";
20
+ readonly UNKNOWN: "UNKNOWN";
21
+ readonly unknown_default_open_api: "11184809";
22
+ };
23
+ export type Gender = typeof Gender[keyof typeof Gender];
24
+ export declare function instanceOfGender(value: any): boolean;
25
+ export declare function GenderFromJSON(json: any): Gender;
26
+ export declare function GenderFromJSONTyped(json: any, ignoreDiscriminator: boolean): Gender;
27
+ export declare function GenderToJSON(value?: Gender | null): any;
28
+ export declare function GenderToJSONTyped(value: any, ignoreDiscriminator: boolean): Gender;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UCX Proxy
6
+ * A single use API for the UCX Proxy.
7
+ *
8
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
9
+ * Contact: customersuccess@equisoft.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.Gender = void 0;
17
+ exports.instanceOfGender = instanceOfGender;
18
+ exports.GenderFromJSON = GenderFromJSON;
19
+ exports.GenderFromJSONTyped = GenderFromJSONTyped;
20
+ exports.GenderToJSON = GenderToJSON;
21
+ exports.GenderToJSONTyped = GenderToJSONTyped;
22
+ /**
23
+ *
24
+ * @export
25
+ */
26
+ exports.Gender = {
27
+ MALE: 'MALE',
28
+ FEMALE: 'FEMALE',
29
+ OTHER: 'OTHER',
30
+ UNKNOWN: 'UNKNOWN',
31
+ unknown_default_open_api: '11184809'
32
+ };
33
+ function instanceOfGender(value) {
34
+ for (const key in exports.Gender) {
35
+ if (Object.prototype.hasOwnProperty.call(exports.Gender, key)) {
36
+ if (exports.Gender[key] === value) {
37
+ return true;
38
+ }
39
+ }
40
+ }
41
+ return false;
42
+ }
43
+ function GenderFromJSON(json) {
44
+ return GenderFromJSONTyped(json, false);
45
+ }
46
+ function GenderFromJSONTyped(json, ignoreDiscriminator) {
47
+ return json;
48
+ }
49
+ function GenderToJSON(value) {
50
+ return value;
51
+ }
52
+ function GenderToJSONTyped(value, ignoreDiscriminator) {
53
+ return value;
54
+ }
@@ -0,0 +1,33 @@
1
+ /**
2
+ * UCX Proxy
3
+ * A single use API for the UCX Proxy.
4
+ *
5
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
6
+ * Contact: customersuccess@equisoft.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 { OrganizationSourceAuthenticationResultSchema } from './OrganizationSourceAuthenticationResultSchema';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListOrganizationSourceAuthenticationResultSchema
17
+ */
18
+ export interface ListOrganizationSourceAuthenticationResultSchema {
19
+ /**
20
+ *
21
+ * @type {Array<OrganizationSourceAuthenticationResultSchema>}
22
+ * @memberof ListOrganizationSourceAuthenticationResultSchema
23
+ */
24
+ sources: Array<OrganizationSourceAuthenticationResultSchema>;
25
+ }
26
+ /**
27
+ * Check if a given object implements the ListOrganizationSourceAuthenticationResultSchema interface.
28
+ */
29
+ export declare function instanceOfListOrganizationSourceAuthenticationResultSchema(value: object): value is ListOrganizationSourceAuthenticationResultSchema;
30
+ export declare function ListOrganizationSourceAuthenticationResultSchemaFromJSON(json: any): ListOrganizationSourceAuthenticationResultSchema;
31
+ export declare function ListOrganizationSourceAuthenticationResultSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListOrganizationSourceAuthenticationResultSchema;
32
+ export declare function ListOrganizationSourceAuthenticationResultSchemaToJSON(json: any): ListOrganizationSourceAuthenticationResultSchema;
33
+ export declare function ListOrganizationSourceAuthenticationResultSchemaToJSONTyped(value?: ListOrganizationSourceAuthenticationResultSchema | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UCX Proxy
6
+ * A single use API for the UCX Proxy.
7
+ *
8
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
9
+ * Contact: customersuccess@equisoft.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.instanceOfListOrganizationSourceAuthenticationResultSchema = instanceOfListOrganizationSourceAuthenticationResultSchema;
17
+ exports.ListOrganizationSourceAuthenticationResultSchemaFromJSON = ListOrganizationSourceAuthenticationResultSchemaFromJSON;
18
+ exports.ListOrganizationSourceAuthenticationResultSchemaFromJSONTyped = ListOrganizationSourceAuthenticationResultSchemaFromJSONTyped;
19
+ exports.ListOrganizationSourceAuthenticationResultSchemaToJSON = ListOrganizationSourceAuthenticationResultSchemaToJSON;
20
+ exports.ListOrganizationSourceAuthenticationResultSchemaToJSONTyped = ListOrganizationSourceAuthenticationResultSchemaToJSONTyped;
21
+ const OrganizationSourceAuthenticationResultSchema_1 = require("./OrganizationSourceAuthenticationResultSchema");
22
+ /**
23
+ * Check if a given object implements the ListOrganizationSourceAuthenticationResultSchema interface.
24
+ */
25
+ function instanceOfListOrganizationSourceAuthenticationResultSchema(value) {
26
+ if (!('sources' in value) || value['sources'] === undefined)
27
+ return false;
28
+ return true;
29
+ }
30
+ function ListOrganizationSourceAuthenticationResultSchemaFromJSON(json) {
31
+ return ListOrganizationSourceAuthenticationResultSchemaFromJSONTyped(json, false);
32
+ }
33
+ function ListOrganizationSourceAuthenticationResultSchemaFromJSONTyped(json, ignoreDiscriminator) {
34
+ if (json == null) {
35
+ return json;
36
+ }
37
+ return {
38
+ 'sources': (json['sources'].map(OrganizationSourceAuthenticationResultSchema_1.OrganizationSourceAuthenticationResultSchemaFromJSON)),
39
+ };
40
+ }
41
+ function ListOrganizationSourceAuthenticationResultSchemaToJSON(json) {
42
+ return ListOrganizationSourceAuthenticationResultSchemaToJSONTyped(json, false);
43
+ }
44
+ function ListOrganizationSourceAuthenticationResultSchemaToJSONTyped(value, ignoreDiscriminator = false) {
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'sources': (value['sources'].map(OrganizationSourceAuthenticationResultSchema_1.OrganizationSourceAuthenticationResultSchemaToJSON)),
50
+ };
51
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * UCX Proxy
3
+ * A single use API for the UCX Proxy.
4
+ *
5
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
6
+ * Contact: customersuccess@equisoft.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
+ */
16
+ export declare const MaritalStatus: {
17
+ readonly SINGLE: "SINGLE";
18
+ readonly MARRIED: "MARRIED";
19
+ readonly DIVORCED: "DIVORCED";
20
+ readonly WIDOWED: "WIDOWED";
21
+ readonly COMMON_LAW: "COMMON_LAW";
22
+ readonly SEPARATED: "SEPARATED";
23
+ readonly OTHER: "OTHER";
24
+ readonly UNKNOWN: "UNKNOWN";
25
+ readonly unknown_default_open_api: "11184809";
26
+ };
27
+ export type MaritalStatus = typeof MaritalStatus[keyof typeof MaritalStatus];
28
+ export declare function instanceOfMaritalStatus(value: any): boolean;
29
+ export declare function MaritalStatusFromJSON(json: any): MaritalStatus;
30
+ export declare function MaritalStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): MaritalStatus;
31
+ export declare function MaritalStatusToJSON(value?: MaritalStatus | null): any;
32
+ export declare function MaritalStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): MaritalStatus;
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UCX Proxy
6
+ * A single use API for the UCX Proxy.
7
+ *
8
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
9
+ * Contact: customersuccess@equisoft.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.MaritalStatus = void 0;
17
+ exports.instanceOfMaritalStatus = instanceOfMaritalStatus;
18
+ exports.MaritalStatusFromJSON = MaritalStatusFromJSON;
19
+ exports.MaritalStatusFromJSONTyped = MaritalStatusFromJSONTyped;
20
+ exports.MaritalStatusToJSON = MaritalStatusToJSON;
21
+ exports.MaritalStatusToJSONTyped = MaritalStatusToJSONTyped;
22
+ /**
23
+ *
24
+ * @export
25
+ */
26
+ exports.MaritalStatus = {
27
+ SINGLE: 'SINGLE',
28
+ MARRIED: 'MARRIED',
29
+ DIVORCED: 'DIVORCED',
30
+ WIDOWED: 'WIDOWED',
31
+ COMMON_LAW: 'COMMON_LAW',
32
+ SEPARATED: 'SEPARATED',
33
+ OTHER: 'OTHER',
34
+ UNKNOWN: 'UNKNOWN',
35
+ unknown_default_open_api: '11184809'
36
+ };
37
+ function instanceOfMaritalStatus(value) {
38
+ for (const key in exports.MaritalStatus) {
39
+ if (Object.prototype.hasOwnProperty.call(exports.MaritalStatus, key)) {
40
+ if (exports.MaritalStatus[key] === value) {
41
+ return true;
42
+ }
43
+ }
44
+ }
45
+ return false;
46
+ }
47
+ function MaritalStatusFromJSON(json) {
48
+ return MaritalStatusFromJSONTyped(json, false);
49
+ }
50
+ function MaritalStatusFromJSONTyped(json, ignoreDiscriminator) {
51
+ return json;
52
+ }
53
+ function MaritalStatusToJSON(value) {
54
+ return value;
55
+ }
56
+ function MaritalStatusToJSONTyped(value, ignoreDiscriminator) {
57
+ return value;
58
+ }
@@ -0,0 +1,47 @@
1
+ /**
2
+ * UCX Proxy
3
+ * A single use API for the UCX Proxy.
4
+ *
5
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
6
+ * Contact: customersuccess@equisoft.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 { Status } from './Status';
13
+ import type { OrganizationSourceAuthenticationSchema } from './OrganizationSourceAuthenticationSchema';
14
+ import type { ErrorResponse } from './ErrorResponse';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface OrganizationSourceAuthenticationResultSchema
19
+ */
20
+ export interface OrganizationSourceAuthenticationResultSchema {
21
+ /**
22
+ *
23
+ * @type {Status}
24
+ * @memberof OrganizationSourceAuthenticationResultSchema
25
+ */
26
+ status: Status;
27
+ /**
28
+ *
29
+ * @type {ErrorResponse}
30
+ * @memberof OrganizationSourceAuthenticationResultSchema
31
+ */
32
+ errorResponse?: ErrorResponse | null;
33
+ /**
34
+ *
35
+ * @type {OrganizationSourceAuthenticationSchema}
36
+ * @memberof OrganizationSourceAuthenticationResultSchema
37
+ */
38
+ sourceAuthentication?: OrganizationSourceAuthenticationSchema | null;
39
+ }
40
+ /**
41
+ * Check if a given object implements the OrganizationSourceAuthenticationResultSchema interface.
42
+ */
43
+ export declare function instanceOfOrganizationSourceAuthenticationResultSchema(value: object): value is OrganizationSourceAuthenticationResultSchema;
44
+ export declare function OrganizationSourceAuthenticationResultSchemaFromJSON(json: any): OrganizationSourceAuthenticationResultSchema;
45
+ export declare function OrganizationSourceAuthenticationResultSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationSourceAuthenticationResultSchema;
46
+ export declare function OrganizationSourceAuthenticationResultSchemaToJSON(json: any): OrganizationSourceAuthenticationResultSchema;
47
+ export declare function OrganizationSourceAuthenticationResultSchemaToJSONTyped(value?: OrganizationSourceAuthenticationResultSchema | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UCX Proxy
6
+ * A single use API for the UCX Proxy.
7
+ *
8
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
9
+ * Contact: customersuccess@equisoft.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.instanceOfOrganizationSourceAuthenticationResultSchema = instanceOfOrganizationSourceAuthenticationResultSchema;
17
+ exports.OrganizationSourceAuthenticationResultSchemaFromJSON = OrganizationSourceAuthenticationResultSchemaFromJSON;
18
+ exports.OrganizationSourceAuthenticationResultSchemaFromJSONTyped = OrganizationSourceAuthenticationResultSchemaFromJSONTyped;
19
+ exports.OrganizationSourceAuthenticationResultSchemaToJSON = OrganizationSourceAuthenticationResultSchemaToJSON;
20
+ exports.OrganizationSourceAuthenticationResultSchemaToJSONTyped = OrganizationSourceAuthenticationResultSchemaToJSONTyped;
21
+ const Status_1 = require("./Status");
22
+ const OrganizationSourceAuthenticationSchema_1 = require("./OrganizationSourceAuthenticationSchema");
23
+ const ErrorResponse_1 = require("./ErrorResponse");
24
+ /**
25
+ * Check if a given object implements the OrganizationSourceAuthenticationResultSchema interface.
26
+ */
27
+ function instanceOfOrganizationSourceAuthenticationResultSchema(value) {
28
+ if (!('status' in value) || value['status'] === undefined)
29
+ return false;
30
+ return true;
31
+ }
32
+ function OrganizationSourceAuthenticationResultSchemaFromJSON(json) {
33
+ return OrganizationSourceAuthenticationResultSchemaFromJSONTyped(json, false);
34
+ }
35
+ function OrganizationSourceAuthenticationResultSchemaFromJSONTyped(json, ignoreDiscriminator) {
36
+ if (json == null) {
37
+ return json;
38
+ }
39
+ return {
40
+ 'status': (0, Status_1.StatusFromJSON)(json['status']),
41
+ 'errorResponse': json['error_response'] == null ? undefined : (0, ErrorResponse_1.ErrorResponseFromJSON)(json['error_response']),
42
+ 'sourceAuthentication': json['source_authentication'] == null ? undefined : (0, OrganizationSourceAuthenticationSchema_1.OrganizationSourceAuthenticationSchemaFromJSON)(json['source_authentication']),
43
+ };
44
+ }
45
+ function OrganizationSourceAuthenticationResultSchemaToJSON(json) {
46
+ return OrganizationSourceAuthenticationResultSchemaToJSONTyped(json, false);
47
+ }
48
+ function OrganizationSourceAuthenticationResultSchemaToJSONTyped(value, ignoreDiscriminator = false) {
49
+ if (value == null) {
50
+ return value;
51
+ }
52
+ return {
53
+ 'status': (0, Status_1.StatusToJSON)(value['status']),
54
+ 'error_response': (0, ErrorResponse_1.ErrorResponseToJSON)(value['errorResponse']),
55
+ 'source_authentication': (0, OrganizationSourceAuthenticationSchema_1.OrganizationSourceAuthenticationSchemaToJSON)(value['sourceAuthentication']),
56
+ };
57
+ }
@@ -0,0 +1,78 @@
1
+ /**
2
+ * UCX Proxy
3
+ * A single use API for the UCX Proxy.
4
+ *
5
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
6
+ * Contact: customersuccess@equisoft.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 OrganizationSourceAuthenticationSchema
16
+ */
17
+ export interface OrganizationSourceAuthenticationSchema {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof OrganizationSourceAuthenticationSchema
22
+ */
23
+ organizationId: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof OrganizationSourceAuthenticationSchema
28
+ */
29
+ sourceKey: string;
30
+ /**
31
+ *
32
+ * @type {{ [key: string]: any; }}
33
+ * @memberof OrganizationSourceAuthenticationSchema
34
+ */
35
+ securedData: {
36
+ [key: string]: any;
37
+ };
38
+ /**
39
+ *
40
+ * @type {{ [key: string]: any; }}
41
+ * @memberof OrganizationSourceAuthenticationSchema
42
+ */
43
+ plainData: {
44
+ [key: string]: any;
45
+ };
46
+ /**
47
+ *
48
+ * @type {boolean}
49
+ * @memberof OrganizationSourceAuthenticationSchema
50
+ */
51
+ isEnabled: boolean;
52
+ /**
53
+ *
54
+ * @type {Date}
55
+ * @memberof OrganizationSourceAuthenticationSchema
56
+ */
57
+ dateCreated: Date;
58
+ /**
59
+ *
60
+ * @type {Date}
61
+ * @memberof OrganizationSourceAuthenticationSchema
62
+ */
63
+ dateModified: Date;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof OrganizationSourceAuthenticationSchema
68
+ */
69
+ modifiedBy: string;
70
+ }
71
+ /**
72
+ * Check if a given object implements the OrganizationSourceAuthenticationSchema interface.
73
+ */
74
+ export declare function instanceOfOrganizationSourceAuthenticationSchema(value: object): value is OrganizationSourceAuthenticationSchema;
75
+ export declare function OrganizationSourceAuthenticationSchemaFromJSON(json: any): OrganizationSourceAuthenticationSchema;
76
+ export declare function OrganizationSourceAuthenticationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationSourceAuthenticationSchema;
77
+ export declare function OrganizationSourceAuthenticationSchemaToJSON(json: any): OrganizationSourceAuthenticationSchema;
78
+ export declare function OrganizationSourceAuthenticationSchemaToJSONTyped(value?: OrganizationSourceAuthenticationSchema | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * UCX Proxy
6
+ * A single use API for the UCX Proxy.
7
+ *
8
+ * The version of the OpenAPI document: 0.0.3-SNAPSHOT
9
+ * Contact: customersuccess@equisoft.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.instanceOfOrganizationSourceAuthenticationSchema = instanceOfOrganizationSourceAuthenticationSchema;
17
+ exports.OrganizationSourceAuthenticationSchemaFromJSON = OrganizationSourceAuthenticationSchemaFromJSON;
18
+ exports.OrganizationSourceAuthenticationSchemaFromJSONTyped = OrganizationSourceAuthenticationSchemaFromJSONTyped;
19
+ exports.OrganizationSourceAuthenticationSchemaToJSON = OrganizationSourceAuthenticationSchemaToJSON;
20
+ exports.OrganizationSourceAuthenticationSchemaToJSONTyped = OrganizationSourceAuthenticationSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the OrganizationSourceAuthenticationSchema interface.
23
+ */
24
+ function instanceOfOrganizationSourceAuthenticationSchema(value) {
25
+ if (!('organizationId' in value) || value['organizationId'] === undefined)
26
+ return false;
27
+ if (!('sourceKey' in value) || value['sourceKey'] === undefined)
28
+ return false;
29
+ if (!('securedData' in value) || value['securedData'] === undefined)
30
+ return false;
31
+ if (!('plainData' in value) || value['plainData'] === undefined)
32
+ return false;
33
+ if (!('isEnabled' in value) || value['isEnabled'] === undefined)
34
+ return false;
35
+ if (!('dateCreated' in value) || value['dateCreated'] === undefined)
36
+ return false;
37
+ if (!('dateModified' in value) || value['dateModified'] === undefined)
38
+ return false;
39
+ if (!('modifiedBy' in value) || value['modifiedBy'] === undefined)
40
+ return false;
41
+ return true;
42
+ }
43
+ function OrganizationSourceAuthenticationSchemaFromJSON(json) {
44
+ return OrganizationSourceAuthenticationSchemaFromJSONTyped(json, false);
45
+ }
46
+ function OrganizationSourceAuthenticationSchemaFromJSONTyped(json, ignoreDiscriminator) {
47
+ if (json == null) {
48
+ return json;
49
+ }
50
+ return {
51
+ 'organizationId': json['organizationId'],
52
+ 'sourceKey': json['sourceKey'],
53
+ 'securedData': json['securedData'],
54
+ 'plainData': json['plainData'],
55
+ 'isEnabled': json['isEnabled'],
56
+ 'dateCreated': (new Date(json['dateCreated'])),
57
+ 'dateModified': (new Date(json['dateModified'])),
58
+ 'modifiedBy': json['modifiedBy'],
59
+ };
60
+ }
61
+ function OrganizationSourceAuthenticationSchemaToJSON(json) {
62
+ return OrganizationSourceAuthenticationSchemaToJSONTyped(json, false);
63
+ }
64
+ function OrganizationSourceAuthenticationSchemaToJSONTyped(value, ignoreDiscriminator = false) {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+ return {
69
+ 'organizationId': value['organizationId'],
70
+ 'sourceKey': value['sourceKey'],
71
+ 'securedData': value['securedData'],
72
+ 'plainData': value['plainData'],
73
+ 'isEnabled': value['isEnabled'],
74
+ 'dateCreated': ((value['dateCreated']).toISOString()),
75
+ 'dateModified': ((value['dateModified']).toISOString()),
76
+ 'modifiedBy': value['modifiedBy'],
77
+ };
78
+ }