@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,30 @@
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 PhoneLabel: {
17
+ readonly WORK: "WORK";
18
+ readonly MOBILE: "MOBILE";
19
+ readonly HOME: "HOME";
20
+ readonly FAX: "FAX";
21
+ readonly OTHER: "OTHER";
22
+ readonly UNKNOWN: "UNKNOWN";
23
+ readonly unknown_default_open_api: "11184809";
24
+ };
25
+ export type PhoneLabel = typeof PhoneLabel[keyof typeof PhoneLabel];
26
+ export declare function instanceOfPhoneLabel(value: any): boolean;
27
+ export declare function PhoneLabelFromJSON(json: any): PhoneLabel;
28
+ export declare function PhoneLabelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PhoneLabel;
29
+ export declare function PhoneLabelToJSON(value?: PhoneLabel | null): any;
30
+ export declare function PhoneLabelToJSONTyped(value: any, ignoreDiscriminator: boolean): PhoneLabel;
@@ -0,0 +1,56 @@
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.PhoneLabel = void 0;
17
+ exports.instanceOfPhoneLabel = instanceOfPhoneLabel;
18
+ exports.PhoneLabelFromJSON = PhoneLabelFromJSON;
19
+ exports.PhoneLabelFromJSONTyped = PhoneLabelFromJSONTyped;
20
+ exports.PhoneLabelToJSON = PhoneLabelToJSON;
21
+ exports.PhoneLabelToJSONTyped = PhoneLabelToJSONTyped;
22
+ /**
23
+ *
24
+ * @export
25
+ */
26
+ exports.PhoneLabel = {
27
+ WORK: 'WORK',
28
+ MOBILE: 'MOBILE',
29
+ HOME: 'HOME',
30
+ FAX: 'FAX',
31
+ OTHER: 'OTHER',
32
+ UNKNOWN: 'UNKNOWN',
33
+ unknown_default_open_api: '11184809'
34
+ };
35
+ function instanceOfPhoneLabel(value) {
36
+ for (const key in exports.PhoneLabel) {
37
+ if (Object.prototype.hasOwnProperty.call(exports.PhoneLabel, key)) {
38
+ if (exports.PhoneLabel[key] === value) {
39
+ return true;
40
+ }
41
+ }
42
+ }
43
+ return false;
44
+ }
45
+ function PhoneLabelFromJSON(json) {
46
+ return PhoneLabelFromJSONTyped(json, false);
47
+ }
48
+ function PhoneLabelFromJSONTyped(json, ignoreDiscriminator) {
49
+ return json;
50
+ }
51
+ function PhoneLabelToJSON(value) {
52
+ return value;
53
+ }
54
+ function PhoneLabelToJSONTyped(value, ignoreDiscriminator) {
55
+ return value;
56
+ }
@@ -0,0 +1,45 @@
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 { PhoneLabel } from './PhoneLabel';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PhoneSchema
17
+ */
18
+ export interface PhoneSchema {
19
+ /**
20
+ *
21
+ * @type {PhoneLabel}
22
+ * @memberof PhoneSchema
23
+ */
24
+ label: PhoneLabel;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof PhoneSchema
29
+ */
30
+ number: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof PhoneSchema
35
+ */
36
+ extension?: string | null;
37
+ }
38
+ /**
39
+ * Check if a given object implements the PhoneSchema interface.
40
+ */
41
+ export declare function instanceOfPhoneSchema(value: object): value is PhoneSchema;
42
+ export declare function PhoneSchemaFromJSON(json: any): PhoneSchema;
43
+ export declare function PhoneSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PhoneSchema;
44
+ export declare function PhoneSchemaToJSON(json: any): PhoneSchema;
45
+ export declare function PhoneSchemaToJSONTyped(value?: PhoneSchema | 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.instanceOfPhoneSchema = instanceOfPhoneSchema;
17
+ exports.PhoneSchemaFromJSON = PhoneSchemaFromJSON;
18
+ exports.PhoneSchemaFromJSONTyped = PhoneSchemaFromJSONTyped;
19
+ exports.PhoneSchemaToJSON = PhoneSchemaToJSON;
20
+ exports.PhoneSchemaToJSONTyped = PhoneSchemaToJSONTyped;
21
+ const PhoneLabel_1 = require("./PhoneLabel");
22
+ /**
23
+ * Check if a given object implements the PhoneSchema interface.
24
+ */
25
+ function instanceOfPhoneSchema(value) {
26
+ if (!('label' in value) || value['label'] === undefined)
27
+ return false;
28
+ if (!('number' in value) || value['number'] === undefined)
29
+ return false;
30
+ return true;
31
+ }
32
+ function PhoneSchemaFromJSON(json) {
33
+ return PhoneSchemaFromJSONTyped(json, false);
34
+ }
35
+ function PhoneSchemaFromJSONTyped(json, ignoreDiscriminator) {
36
+ if (json == null) {
37
+ return json;
38
+ }
39
+ return {
40
+ 'label': (0, PhoneLabel_1.PhoneLabelFromJSON)(json['label']),
41
+ 'number': json['number'],
42
+ 'extension': json['extension'] == null ? undefined : json['extension'],
43
+ };
44
+ }
45
+ function PhoneSchemaToJSON(json) {
46
+ return PhoneSchemaToJSONTyped(json, false);
47
+ }
48
+ function PhoneSchemaToJSONTyped(value, ignoreDiscriminator = false) {
49
+ if (value == null) {
50
+ return value;
51
+ }
52
+ return {
53
+ 'label': (0, PhoneLabel_1.PhoneLabelToJSON)(value['label']),
54
+ 'number': value['number'],
55
+ 'extension': value['extension'],
56
+ };
57
+ }
@@ -0,0 +1,59 @@
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 { ContactSchema } from './ContactSchema';
14
+ import type { ErrorResponse } from './ErrorResponse';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface SourceResultSchema
19
+ */
20
+ export interface SourceResultSchema {
21
+ /**
22
+ *
23
+ * @type {Status}
24
+ * @memberof SourceResultSchema
25
+ */
26
+ status: Status;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof SourceResultSchema
31
+ */
32
+ sourceKey: string;
33
+ /**
34
+ *
35
+ * @type {ErrorResponse}
36
+ * @memberof SourceResultSchema
37
+ */
38
+ errorResponse?: ErrorResponse | null;
39
+ /**
40
+ *
41
+ * @type {Array<ContactSchema>}
42
+ * @memberof SourceResultSchema
43
+ */
44
+ sourceResults?: Array<ContactSchema> | null;
45
+ /**
46
+ *
47
+ * @type {number}
48
+ * @memberof SourceResultSchema
49
+ */
50
+ totalCount?: number | null;
51
+ }
52
+ /**
53
+ * Check if a given object implements the SourceResultSchema interface.
54
+ */
55
+ export declare function instanceOfSourceResultSchema(value: object): value is SourceResultSchema;
56
+ export declare function SourceResultSchemaFromJSON(json: any): SourceResultSchema;
57
+ export declare function SourceResultSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SourceResultSchema;
58
+ export declare function SourceResultSchemaToJSON(json: any): SourceResultSchema;
59
+ export declare function SourceResultSchemaToJSONTyped(value?: SourceResultSchema | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,63 @@
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.instanceOfSourceResultSchema = instanceOfSourceResultSchema;
17
+ exports.SourceResultSchemaFromJSON = SourceResultSchemaFromJSON;
18
+ exports.SourceResultSchemaFromJSONTyped = SourceResultSchemaFromJSONTyped;
19
+ exports.SourceResultSchemaToJSON = SourceResultSchemaToJSON;
20
+ exports.SourceResultSchemaToJSONTyped = SourceResultSchemaToJSONTyped;
21
+ const Status_1 = require("./Status");
22
+ const ContactSchema_1 = require("./ContactSchema");
23
+ const ErrorResponse_1 = require("./ErrorResponse");
24
+ /**
25
+ * Check if a given object implements the SourceResultSchema interface.
26
+ */
27
+ function instanceOfSourceResultSchema(value) {
28
+ if (!('status' in value) || value['status'] === undefined)
29
+ return false;
30
+ if (!('sourceKey' in value) || value['sourceKey'] === undefined)
31
+ return false;
32
+ return true;
33
+ }
34
+ function SourceResultSchemaFromJSON(json) {
35
+ return SourceResultSchemaFromJSONTyped(json, false);
36
+ }
37
+ function SourceResultSchemaFromJSONTyped(json, ignoreDiscriminator) {
38
+ if (json == null) {
39
+ return json;
40
+ }
41
+ return {
42
+ 'status': (0, Status_1.StatusFromJSON)(json['status']),
43
+ 'sourceKey': json['source_key'],
44
+ 'errorResponse': json['error_response'] == null ? undefined : (0, ErrorResponse_1.ErrorResponseFromJSON)(json['error_response']),
45
+ 'sourceResults': json['source_results'] == null ? undefined : (json['source_results'].map(ContactSchema_1.ContactSchemaFromJSON)),
46
+ 'totalCount': json['total_count'] == null ? undefined : json['total_count'],
47
+ };
48
+ }
49
+ function SourceResultSchemaToJSON(json) {
50
+ return SourceResultSchemaToJSONTyped(json, false);
51
+ }
52
+ function SourceResultSchemaToJSONTyped(value, ignoreDiscriminator = false) {
53
+ if (value == null) {
54
+ return value;
55
+ }
56
+ return {
57
+ 'status': (0, Status_1.StatusToJSON)(value['status']),
58
+ 'source_key': value['sourceKey'],
59
+ 'error_response': (0, ErrorResponse_1.ErrorResponseToJSON)(value['errorResponse']),
60
+ 'source_results': value['sourceResults'] == null ? undefined : (value['sourceResults'].map(ContactSchema_1.ContactSchemaToJSON)),
61
+ 'total_count': value['totalCount'],
62
+ };
63
+ }
@@ -0,0 +1,26 @@
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 Status: {
17
+ readonly SUCCESS: "SUCCESS";
18
+ readonly FAILED: "FAILED";
19
+ readonly unknown_default_open_api: "11184809";
20
+ };
21
+ export type Status = typeof Status[keyof typeof Status];
22
+ export declare function instanceOfStatus(value: any): boolean;
23
+ export declare function StatusFromJSON(json: any): Status;
24
+ export declare function StatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): Status;
25
+ export declare function StatusToJSON(value?: Status | null): any;
26
+ export declare function StatusToJSONTyped(value: any, ignoreDiscriminator: boolean): Status;
@@ -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.Status = void 0;
17
+ exports.instanceOfStatus = instanceOfStatus;
18
+ exports.StatusFromJSON = StatusFromJSON;
19
+ exports.StatusFromJSONTyped = StatusFromJSONTyped;
20
+ exports.StatusToJSON = StatusToJSON;
21
+ exports.StatusToJSONTyped = StatusToJSONTyped;
22
+ /**
23
+ *
24
+ * @export
25
+ */
26
+ exports.Status = {
27
+ SUCCESS: 'SUCCESS',
28
+ FAILED: 'FAILED',
29
+ unknown_default_open_api: '11184809'
30
+ };
31
+ function instanceOfStatus(value) {
32
+ for (const key in exports.Status) {
33
+ if (Object.prototype.hasOwnProperty.call(exports.Status, key)) {
34
+ if (exports.Status[key] === value) {
35
+ return true;
36
+ }
37
+ }
38
+ }
39
+ return false;
40
+ }
41
+ function StatusFromJSON(json) {
42
+ return StatusFromJSONTyped(json, false);
43
+ }
44
+ function StatusFromJSONTyped(json, ignoreDiscriminator) {
45
+ return json;
46
+ }
47
+ function StatusToJSON(value) {
48
+ return value;
49
+ }
50
+ function StatusToJSONTyped(value, ignoreDiscriminator) {
51
+ return value;
52
+ }
@@ -0,0 +1,38 @@
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 ToggleSourceAuthenticationSchema
16
+ */
17
+ export interface ToggleSourceAuthenticationSchema {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof ToggleSourceAuthenticationSchema
22
+ */
23
+ isEnabled: boolean;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ToggleSourceAuthenticationSchema
28
+ */
29
+ modifiedBy: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the ToggleSourceAuthenticationSchema interface.
33
+ */
34
+ export declare function instanceOfToggleSourceAuthenticationSchema(value: object): value is ToggleSourceAuthenticationSchema;
35
+ export declare function ToggleSourceAuthenticationSchemaFromJSON(json: any): ToggleSourceAuthenticationSchema;
36
+ export declare function ToggleSourceAuthenticationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ToggleSourceAuthenticationSchema;
37
+ export declare function ToggleSourceAuthenticationSchemaToJSON(json: any): ToggleSourceAuthenticationSchema;
38
+ export declare function ToggleSourceAuthenticationSchemaToJSONTyped(value?: ToggleSourceAuthenticationSchema | null, ignoreDiscriminator?: boolean): any;
@@ -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.instanceOfToggleSourceAuthenticationSchema = instanceOfToggleSourceAuthenticationSchema;
17
+ exports.ToggleSourceAuthenticationSchemaFromJSON = ToggleSourceAuthenticationSchemaFromJSON;
18
+ exports.ToggleSourceAuthenticationSchemaFromJSONTyped = ToggleSourceAuthenticationSchemaFromJSONTyped;
19
+ exports.ToggleSourceAuthenticationSchemaToJSON = ToggleSourceAuthenticationSchemaToJSON;
20
+ exports.ToggleSourceAuthenticationSchemaToJSONTyped = ToggleSourceAuthenticationSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the ToggleSourceAuthenticationSchema interface.
23
+ */
24
+ function instanceOfToggleSourceAuthenticationSchema(value) {
25
+ if (!('isEnabled' in value) || value['isEnabled'] === undefined)
26
+ return false;
27
+ if (!('modifiedBy' in value) || value['modifiedBy'] === undefined)
28
+ return false;
29
+ return true;
30
+ }
31
+ function ToggleSourceAuthenticationSchemaFromJSON(json) {
32
+ return ToggleSourceAuthenticationSchemaFromJSONTyped(json, false);
33
+ }
34
+ function ToggleSourceAuthenticationSchemaFromJSONTyped(json, ignoreDiscriminator) {
35
+ if (json == null) {
36
+ return json;
37
+ }
38
+ return {
39
+ 'isEnabled': json['isEnabled'],
40
+ 'modifiedBy': json['modifiedBy'],
41
+ };
42
+ }
43
+ function ToggleSourceAuthenticationSchemaToJSON(json) {
44
+ return ToggleSourceAuthenticationSchemaToJSONTyped(json, false);
45
+ }
46
+ function ToggleSourceAuthenticationSchemaToJSONTyped(value, ignoreDiscriminator = false) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ return {
51
+ 'isEnabled': value['isEnabled'],
52
+ 'modifiedBy': value['modifiedBy'],
53
+ };
54
+ }
@@ -0,0 +1,48 @@
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 UpdatePayloadSourceAuthenticationSchema
16
+ */
17
+ export interface UpdatePayloadSourceAuthenticationSchema {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdatePayloadSourceAuthenticationSchema
22
+ */
23
+ modifiedBy: string;
24
+ /**
25
+ *
26
+ * @type {{ [key: string]: any; }}
27
+ * @memberof UpdatePayloadSourceAuthenticationSchema
28
+ */
29
+ securedData: {
30
+ [key: string]: any;
31
+ };
32
+ /**
33
+ *
34
+ * @type {{ [key: string]: any; }}
35
+ * @memberof UpdatePayloadSourceAuthenticationSchema
36
+ */
37
+ plainData: {
38
+ [key: string]: any;
39
+ };
40
+ }
41
+ /**
42
+ * Check if a given object implements the UpdatePayloadSourceAuthenticationSchema interface.
43
+ */
44
+ export declare function instanceOfUpdatePayloadSourceAuthenticationSchema(value: object): value is UpdatePayloadSourceAuthenticationSchema;
45
+ export declare function UpdatePayloadSourceAuthenticationSchemaFromJSON(json: any): UpdatePayloadSourceAuthenticationSchema;
46
+ export declare function UpdatePayloadSourceAuthenticationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePayloadSourceAuthenticationSchema;
47
+ export declare function UpdatePayloadSourceAuthenticationSchemaToJSON(json: any): UpdatePayloadSourceAuthenticationSchema;
48
+ export declare function UpdatePayloadSourceAuthenticationSchemaToJSONTyped(value?: UpdatePayloadSourceAuthenticationSchema | null, ignoreDiscriminator?: boolean): any;
@@ -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.instanceOfUpdatePayloadSourceAuthenticationSchema = instanceOfUpdatePayloadSourceAuthenticationSchema;
17
+ exports.UpdatePayloadSourceAuthenticationSchemaFromJSON = UpdatePayloadSourceAuthenticationSchemaFromJSON;
18
+ exports.UpdatePayloadSourceAuthenticationSchemaFromJSONTyped = UpdatePayloadSourceAuthenticationSchemaFromJSONTyped;
19
+ exports.UpdatePayloadSourceAuthenticationSchemaToJSON = UpdatePayloadSourceAuthenticationSchemaToJSON;
20
+ exports.UpdatePayloadSourceAuthenticationSchemaToJSONTyped = UpdatePayloadSourceAuthenticationSchemaToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the UpdatePayloadSourceAuthenticationSchema interface.
23
+ */
24
+ function instanceOfUpdatePayloadSourceAuthenticationSchema(value) {
25
+ if (!('modifiedBy' in value) || value['modifiedBy'] === undefined)
26
+ return false;
27
+ if (!('securedData' in value) || value['securedData'] === undefined)
28
+ return false;
29
+ if (!('plainData' in value) || value['plainData'] === undefined)
30
+ return false;
31
+ return true;
32
+ }
33
+ function UpdatePayloadSourceAuthenticationSchemaFromJSON(json) {
34
+ return UpdatePayloadSourceAuthenticationSchemaFromJSONTyped(json, false);
35
+ }
36
+ function UpdatePayloadSourceAuthenticationSchemaFromJSONTyped(json, ignoreDiscriminator) {
37
+ if (json == null) {
38
+ return json;
39
+ }
40
+ return {
41
+ 'modifiedBy': json['modifiedBy'],
42
+ 'securedData': json['securedData'],
43
+ 'plainData': json['plainData'],
44
+ };
45
+ }
46
+ function UpdatePayloadSourceAuthenticationSchemaToJSON(json) {
47
+ return UpdatePayloadSourceAuthenticationSchemaToJSONTyped(json, false);
48
+ }
49
+ function UpdatePayloadSourceAuthenticationSchemaToJSONTyped(value, ignoreDiscriminator = false) {
50
+ if (value == null) {
51
+ return value;
52
+ }
53
+ return {
54
+ 'modifiedBy': value['modifiedBy'],
55
+ 'securedData': value['securedData'],
56
+ 'plainData': value['plainData'],
57
+ };
58
+ }
@@ -0,0 +1,21 @@
1
+ export * from './AddressLabel';
2
+ export * from './AddressSchema';
3
+ export * from './ContactLanguage';
4
+ export * from './ContactSchema';
5
+ export * from './CreatePayloadSourceAuthenticationSchema';
6
+ export * from './EmailLabel';
7
+ export * from './EmailSchema';
8
+ export * from './ErrorCodes';
9
+ export * from './ErrorResponse';
10
+ export * from './ErrorSchema';
11
+ export * from './Gender';
12
+ export * from './ListOrganizationSourceAuthenticationResultSchema';
13
+ export * from './MaritalStatus';
14
+ export * from './OrganizationSourceAuthenticationResultSchema';
15
+ export * from './OrganizationSourceAuthenticationSchema';
16
+ export * from './PhoneLabel';
17
+ export * from './PhoneSchema';
18
+ export * from './SourceResultSchema';
19
+ export * from './Status';
20
+ export * from './ToggleSourceAuthenticationSchema';
21
+ export * from './UpdatePayloadSourceAuthenticationSchema';
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ /* tslint:disable */
18
+ /* eslint-disable */
19
+ __exportStar(require("./AddressLabel"), exports);
20
+ __exportStar(require("./AddressSchema"), exports);
21
+ __exportStar(require("./ContactLanguage"), exports);
22
+ __exportStar(require("./ContactSchema"), exports);
23
+ __exportStar(require("./CreatePayloadSourceAuthenticationSchema"), exports);
24
+ __exportStar(require("./EmailLabel"), exports);
25
+ __exportStar(require("./EmailSchema"), exports);
26
+ __exportStar(require("./ErrorCodes"), exports);
27
+ __exportStar(require("./ErrorResponse"), exports);
28
+ __exportStar(require("./ErrorSchema"), exports);
29
+ __exportStar(require("./Gender"), exports);
30
+ __exportStar(require("./ListOrganizationSourceAuthenticationResultSchema"), exports);
31
+ __exportStar(require("./MaritalStatus"), exports);
32
+ __exportStar(require("./OrganizationSourceAuthenticationResultSchema"), exports);
33
+ __exportStar(require("./OrganizationSourceAuthenticationSchema"), exports);
34
+ __exportStar(require("./PhoneLabel"), exports);
35
+ __exportStar(require("./PhoneSchema"), exports);
36
+ __exportStar(require("./SourceResultSchema"), exports);
37
+ __exportStar(require("./Status"), exports);
38
+ __exportStar(require("./ToggleSourceAuthenticationSchema"), exports);
39
+ __exportStar(require("./UpdatePayloadSourceAuthenticationSchema"), exports);