@financeable/aggregation 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.devcontainer/README.md +35 -0
- package/.devcontainer/devcontainer.json +45 -0
- package/FUNCTIONS.md +225 -0
- package/README.md +967 -0
- package/RUNTIMES.md +48 -0
- package/core.d.ts +10 -0
- package/core.d.ts.map +1 -0
- package/core.js +17 -0
- package/core.js.map +1 -0
- package/docs/sdks/applications/README.md +467 -0
- package/docs/sdks/financeable/README.md +5 -0
- package/financeable-typescript/.devcontainer/README.md +30 -0
- package/financeable-typescript/FUNCTIONS.md +205 -0
- package/financeable-typescript/README.md +895 -0
- package/financeable-typescript/RUNTIMES.md +22 -0
- package/financeable-typescript/docs/sdks/applications/README.md +427 -0
- package/financeable-typescript/docs/sdks/financeable/README.md +5 -0
- package/financeable-typescript/src/core.ts +13 -0
- package/financeable-typescript/src/funcs/applicationsCreate.ts +124 -0
- package/financeable-typescript/src/funcs/applicationsGet.ts +128 -0
- package/financeable-typescript/src/funcs/applicationsList.ts +126 -0
- package/financeable-typescript/src/hooks/hooks.ts +129 -0
- package/financeable-typescript/src/hooks/index.ts +6 -0
- package/financeable-typescript/src/hooks/types.ts +109 -0
- package/financeable-typescript/src/index.ts +7 -0
- package/financeable-typescript/src/lib/base64.ts +37 -0
- package/financeable-typescript/src/lib/config.ts +59 -0
- package/financeable-typescript/src/lib/dlv.ts +53 -0
- package/financeable-typescript/src/lib/encodings.ts +449 -0
- package/financeable-typescript/src/lib/env.ts +37 -0
- package/financeable-typescript/src/lib/files.ts +40 -0
- package/financeable-typescript/src/lib/http.ts +323 -0
- package/financeable-typescript/src/lib/is-plain-object.ts +43 -0
- package/financeable-typescript/src/lib/logger.ts +9 -0
- package/financeable-typescript/src/lib/matchers.ts +322 -0
- package/financeable-typescript/src/lib/primitives.ts +122 -0
- package/financeable-typescript/src/lib/retries.ts +219 -0
- package/financeable-typescript/src/lib/schemas.ts +86 -0
- package/financeable-typescript/src/lib/sdks.ts +392 -0
- package/financeable-typescript/src/lib/security.ts +227 -0
- package/financeable-typescript/src/lib/url.ts +33 -0
- package/financeable-typescript/src/models/components/addressattributes.ts +148 -0
- package/financeable-typescript/src/models/components/apierrorlinks.ts +65 -0
- package/financeable-typescript/src/models/components/applicationattributes.ts +128 -0
- package/financeable-typescript/src/models/components/applicationattributescreate.ts +90 -0
- package/financeable-typescript/src/models/components/applicationresourcebulksubmission.ts +1000 -0
- package/financeable-typescript/src/models/components/applicationstatus.ts +39 -0
- package/financeable-typescript/src/models/components/applicationtype.ts +33 -0
- package/financeable-typescript/src/models/components/assetattributes.ts +400 -0
- package/financeable-typescript/src/models/components/customerattributes.ts +171 -0
- package/financeable-typescript/src/models/components/customertitle.ts +35 -0
- package/financeable-typescript/src/models/components/errorsource.ts +79 -0
- package/financeable-typescript/src/models/components/forbiddenerror.ts +207 -0
- package/financeable-typescript/src/models/components/frequencytype.ts +40 -0
- package/financeable-typescript/src/models/components/index.ts +20 -0
- package/financeable-typescript/src/models/components/links.ts +72 -0
- package/financeable-typescript/src/models/components/loandetailsattributes.ts +187 -0
- package/financeable-typescript/src/models/components/repaymentstructure.ts +40 -0
- package/financeable-typescript/src/models/errors/apierror.ts +27 -0
- package/financeable-typescript/src/models/errors/createapplication.ts +76 -0
- package/financeable-typescript/src/models/errors/getapplication.ts +76 -0
- package/financeable-typescript/src/models/errors/getapplications.ts +76 -0
- package/financeable-typescript/src/models/errors/httpclienterrors.ts +62 -0
- package/financeable-typescript/src/models/errors/index.ts +10 -0
- package/financeable-typescript/src/models/errors/sdkvalidationerror.ts +97 -0
- package/financeable-typescript/src/models/operations/createapplication.ts +1649 -0
- package/financeable-typescript/src/models/operations/getapplication.ts +1829 -0
- package/financeable-typescript/src/models/operations/getapplications.ts +1790 -0
- package/financeable-typescript/src/models/operations/index.ts +7 -0
- package/financeable-typescript/src/sdk/applications.ts +55 -0
- package/financeable-typescript/src/sdk/index.ts +5 -0
- package/financeable-typescript/src/sdk/sdk.ts +13 -0
- package/financeable-typescript/src/types/blobs.ts +31 -0
- package/financeable-typescript/src/types/constdatetime.ts +15 -0
- package/financeable-typescript/src/types/enums.ts +16 -0
- package/financeable-typescript/src/types/fp.ts +50 -0
- package/financeable-typescript/src/types/index.ts +11 -0
- package/financeable-typescript/src/types/operations.ts +105 -0
- package/financeable-typescript/src/types/rfcdate.ts +54 -0
- package/financeable-typescript/src/types/streams.ts +21 -0
- package/funcs/applicationsCreate.d.ts +14 -0
- package/funcs/applicationsCreate.d.ts.map +1 -0
- package/funcs/applicationsCreate.js +105 -0
- package/funcs/applicationsCreate.js.map +1 -0
- package/funcs/applicationsGet.d.ts +13 -0
- package/funcs/applicationsGet.d.ts.map +1 -0
- package/funcs/applicationsGet.js +109 -0
- package/funcs/applicationsGet.js.map +1 -0
- package/funcs/applicationsList.d.ts +13 -0
- package/funcs/applicationsList.d.ts.map +1 -0
- package/funcs/applicationsList.js +107 -0
- package/funcs/applicationsList.js.map +1 -0
- package/hooks/hooks.d.ts +24 -0
- package/hooks/hooks.d.ts.map +1 -0
- package/hooks/hooks.js +84 -0
- package/hooks/hooks.js.map +1 -0
- package/hooks/index.d.ts +3 -0
- package/hooks/index.d.ts.map +1 -0
- package/hooks/index.js +22 -0
- package/hooks/index.js.map +1 -0
- package/hooks/types.d.ts +78 -0
- package/hooks/types.d.ts.map +1 -0
- package/hooks/types.js +6 -0
- package/hooks/types.js.map +1 -0
- package/index.d.ts +4 -0
- package/index.d.ts.map +1 -0
- package/index.js +46 -0
- package/index.js.map +1 -0
- package/jsr.json +27 -0
- package/lib/base64.d.ts +10 -0
- package/lib/base64.d.ts.map +1 -0
- package/lib/base64.js +71 -0
- package/lib/base64.js.map +1 -0
- package/lib/config.d.ts +33 -0
- package/lib/config.d.ts.map +1 -0
- package/lib/config.js +35 -0
- package/lib/config.js.map +1 -0
- package/lib/dlv.d.ts +14 -0
- package/lib/dlv.d.ts.map +1 -0
- package/lib/dlv.js +49 -0
- package/lib/dlv.js.map +1 -0
- package/lib/encodings.d.ts +52 -0
- package/lib/encodings.d.ts.map +1 -0
- package/lib/encodings.js +368 -0
- package/lib/encodings.js.map +1 -0
- package/lib/env.d.ts +14 -0
- package/lib/env.d.ts.map +1 -0
- package/lib/env.js +64 -0
- package/lib/env.js.map +1 -0
- package/lib/files.d.ts +8 -0
- package/lib/files.d.ts.map +1 -0
- package/lib/files.js +36 -0
- package/lib/files.js.map +1 -0
- package/lib/http.d.ts +67 -0
- package/lib/http.d.ts.map +1 -0
- package/lib/http.js +217 -0
- package/lib/http.js.map +1 -0
- package/lib/is-plain-object.d.ts +2 -0
- package/lib/is-plain-object.d.ts.map +1 -0
- package/lib/is-plain-object.js +41 -0
- package/lib/is-plain-object.js.map +1 -0
- package/lib/logger.d.ts +6 -0
- package/lib/logger.d.ts.map +1 -0
- package/lib/logger.js +6 -0
- package/lib/logger.js.map +1 -0
- package/lib/matchers.d.ts +64 -0
- package/lib/matchers.d.ts.map +1 -0
- package/lib/matchers.js +204 -0
- package/lib/matchers.js.map +1 -0
- package/lib/primitives.d.ts +23 -0
- package/lib/primitives.d.ts.map +1 -0
- package/lib/primitives.js +104 -0
- package/lib/primitives.js.map +1 -0
- package/lib/retries.d.ts +38 -0
- package/lib/retries.d.ts.map +1 -0
- package/lib/retries.js +153 -0
- package/lib/retries.js.map +1 -0
- package/lib/schemas.d.ts +19 -0
- package/lib/schemas.d.ts.map +1 -0
- package/lib/schemas.js +62 -0
- package/lib/schemas.js.map +1 -0
- package/lib/sdks.d.ts +60 -0
- package/lib/sdks.d.ts.map +1 -0
- package/lib/sdks.js +280 -0
- package/lib/sdks.js.map +1 -0
- package/lib/security.d.ts +79 -0
- package/lib/security.d.ts.map +1 -0
- package/lib/security.js +121 -0
- package/lib/security.js.map +1 -0
- package/lib/url.d.ts +5 -0
- package/lib/url.d.ts.map +1 -0
- package/lib/url.js +25 -0
- package/lib/url.js.map +1 -0
- package/models/components/addressattributes.d.ts +83 -0
- package/models/components/addressattributes.d.ts.map +1 -0
- package/models/components/addressattributes.js +117 -0
- package/models/components/addressattributes.js.map +1 -0
- package/models/components/apierrorlinks.d.ts +32 -0
- package/models/components/apierrorlinks.d.ts.map +1 -0
- package/models/components/apierrorlinks.js +69 -0
- package/models/components/apierrorlinks.js.map +1 -0
- package/models/components/applicationattributes.d.ts +69 -0
- package/models/components/applicationattributes.d.ts.map +1 -0
- package/models/components/applicationattributes.js +85 -0
- package/models/components/applicationattributes.js.map +1 -0
- package/models/components/applicationattributescreate.d.ts +43 -0
- package/models/components/applicationattributescreate.d.ts.map +1 -0
- package/models/components/applicationattributescreate.js +74 -0
- package/models/components/applicationattributescreate.js.map +1 -0
- package/models/components/applicationresourcebulksubmission.d.ts +456 -0
- package/models/components/applicationresourcebulksubmission.d.ts.map +1 -0
- package/models/components/applicationresourcebulksubmission.js +492 -0
- package/models/components/applicationresourcebulksubmission.js.map +1 -0
- package/models/components/applicationstatus.d.ts +46 -0
- package/models/components/applicationstatus.d.ts.map +1 -0
- package/models/components/applicationstatus.js +66 -0
- package/models/components/applicationstatus.js.map +1 -0
- package/models/components/applicationtype.d.ts +28 -0
- package/models/components/applicationtype.d.ts.map +1 -0
- package/models/components/applicationtype.js +60 -0
- package/models/components/applicationtype.js.map +1 -0
- package/models/components/assetattributes.d.ts +388 -0
- package/models/components/assetattributes.d.ts.map +1 -0
- package/models/components/assetattributes.js +244 -0
- package/models/components/assetattributes.js.map +1 -0
- package/models/components/customerattributes.d.ts +103 -0
- package/models/components/customerattributes.d.ts.map +1 -0
- package/models/components/customerattributes.js +120 -0
- package/models/components/customerattributes.js.map +1 -0
- package/models/components/customertitle.d.ts +34 -0
- package/models/components/customertitle.d.ts.map +1 -0
- package/models/components/customertitle.js +62 -0
- package/models/components/customertitle.js.map +1 -0
- package/models/components/errorsource.d.ts +42 -0
- package/models/components/errorsource.d.ts.map +1 -0
- package/models/components/errorsource.js +73 -0
- package/models/components/errorsource.js.map +1 -0
- package/models/components/forbiddenerror.d.ts +141 -0
- package/models/components/forbiddenerror.d.ts.map +1 -0
- package/models/components/forbiddenerror.js +158 -0
- package/models/components/forbiddenerror.js.map +1 -0
- package/models/components/frequencytype.d.ts +37 -0
- package/models/components/frequencytype.d.ts.map +1 -0
- package/models/components/frequencytype.js +64 -0
- package/models/components/frequencytype.js.map +1 -0
- package/models/components/index.d.ts +17 -0
- package/models/components/index.d.ts.map +1 -0
- package/models/components/index.js +36 -0
- package/models/components/index.js.map +1 -0
- package/models/components/links.d.ts +40 -0
- package/models/components/links.d.ts.map +1 -0
- package/models/components/links.js +72 -0
- package/models/components/links.js.map +1 -0
- package/models/components/loandetailsattributes.d.ts +112 -0
- package/models/components/loandetailsattributes.d.ts.map +1 -0
- package/models/components/loandetailsattributes.js +101 -0
- package/models/components/loandetailsattributes.js.map +1 -0
- package/models/components/repaymentstructure.d.ts +37 -0
- package/models/components/repaymentstructure.d.ts.map +1 -0
- package/models/components/repaymentstructure.js +64 -0
- package/models/components/repaymentstructure.js.map +1 -0
- package/models/errors/apierror.d.ts +8 -0
- package/models/errors/apierror.d.ts.map +1 -0
- package/models/errors/apierror.js +21 -0
- package/models/errors/apierror.js.map +1 -0
- package/models/errors/createapplication.d.ts +38 -0
- package/models/errors/createapplication.d.ts.map +1 -0
- package/models/errors/createapplication.js +81 -0
- package/models/errors/createapplication.js.map +1 -0
- package/models/errors/getapplication.d.ts +38 -0
- package/models/errors/getapplication.d.ts.map +1 -0
- package/models/errors/getapplication.js +81 -0
- package/models/errors/getapplication.js.map +1 -0
- package/models/errors/getapplications.d.ts +38 -0
- package/models/errors/getapplications.d.ts.map +1 -0
- package/models/errors/getapplications.js +81 -0
- package/models/errors/getapplications.js.map +1 -0
- package/models/errors/httpclienterrors.d.ts +44 -0
- package/models/errors/httpclienterrors.d.ts.map +1 -0
- package/models/errors/httpclienterrors.js +78 -0
- package/models/errors/httpclienterrors.js.map +1 -0
- package/models/errors/index.d.ts +7 -0
- package/models/errors/index.d.ts.map +1 -0
- package/models/errors/index.js +26 -0
- package/models/errors/index.js.map +1 -0
- package/models/errors/sdkvalidationerror.d.ts +20 -0
- package/models/errors/sdkvalidationerror.d.ts.map +1 -0
- package/models/errors/sdkvalidationerror.js +115 -0
- package/models/errors/sdkvalidationerror.js.map +1 -0
- package/models/operations/createapplication.d.ts +780 -0
- package/models/operations/createapplication.d.ts.map +1 -0
- package/models/operations/createapplication.js +834 -0
- package/models/operations/createapplication.js.map +1 -0
- package/models/operations/getapplication.d.ts +805 -0
- package/models/operations/getapplication.d.ts.map +1 -0
- package/models/operations/getapplication.js +861 -0
- package/models/operations/getapplication.js.map +1 -0
- package/models/operations/getapplications.d.ts +805 -0
- package/models/operations/getapplications.d.ts.map +1 -0
- package/models/operations/getapplications.js +864 -0
- package/models/operations/getapplications.js.map +1 -0
- package/models/operations/index.d.ts +4 -0
- package/models/operations/index.d.ts.map +1 -0
- package/models/operations/index.js +23 -0
- package/models/operations/index.js.map +1 -0
- package/package.json +30 -0
- package/sdk/applications.d.ts +18 -0
- package/sdk/applications.d.ts.map +1 -0
- package/sdk/applications.js +33 -0
- package/sdk/applications.js.map +1 -0
- package/sdk/index.d.ts +2 -0
- package/sdk/index.d.ts.map +1 -0
- package/sdk/index.js +21 -0
- package/sdk/index.js.map +1 -0
- package/sdk/sdk.d.ts +7 -0
- package/sdk/sdk.d.ts.map +1 -0
- package/sdk/sdk.js +15 -0
- package/sdk/sdk.js.map +1 -0
- package/src/core.ts +13 -0
- package/src/funcs/applicationsCreate.ts +128 -0
- package/src/funcs/applicationsGet.ts +132 -0
- package/src/funcs/applicationsList.ts +130 -0
- package/src/hooks/hooks.ts +129 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/types.ts +110 -0
- package/src/index.ts +7 -0
- package/src/lib/base64.ts +37 -0
- package/src/lib/config.ts +59 -0
- package/src/lib/dlv.ts +53 -0
- package/src/lib/encodings.ts +483 -0
- package/src/lib/env.ts +37 -0
- package/src/lib/files.ts +40 -0
- package/src/lib/http.ts +323 -0
- package/src/lib/is-plain-object.ts +43 -0
- package/src/lib/logger.ts +9 -0
- package/src/lib/matchers.ts +322 -0
- package/src/lib/primitives.ts +136 -0
- package/src/lib/retries.ts +218 -0
- package/src/lib/schemas.ts +91 -0
- package/src/lib/sdks.ts +400 -0
- package/src/lib/security.ts +227 -0
- package/src/lib/url.ts +33 -0
- package/src/models/components/addressattributes.ts +148 -0
- package/src/models/components/apierrorlinks.ts +65 -0
- package/src/models/components/applicationattributes.ts +128 -0
- package/src/models/components/applicationattributescreate.ts +90 -0
- package/src/models/components/applicationresourcebulksubmission.ts +1000 -0
- package/src/models/components/applicationstatus.ts +39 -0
- package/src/models/components/applicationtype.ts +33 -0
- package/src/models/components/assetattributes.ts +400 -0
- package/src/models/components/customerattributes.ts +171 -0
- package/src/models/components/customertitle.ts +35 -0
- package/src/models/components/errorsource.ts +79 -0
- package/src/models/components/forbiddenerror.ts +207 -0
- package/src/models/components/frequencytype.ts +40 -0
- package/src/models/components/index.ts +20 -0
- package/src/models/components/links.ts +72 -0
- package/src/models/components/loandetailsattributes.ts +187 -0
- package/src/models/components/repaymentstructure.ts +40 -0
- package/src/models/errors/apierror.ts +27 -0
- package/src/models/errors/createapplication.ts +76 -0
- package/src/models/errors/getapplication.ts +76 -0
- package/src/models/errors/getapplications.ts +76 -0
- package/src/models/errors/httpclienterrors.ts +62 -0
- package/src/models/errors/index.ts +10 -0
- package/src/models/errors/sdkvalidationerror.ts +97 -0
- package/src/models/operations/createapplication.ts +1649 -0
- package/src/models/operations/getapplication.ts +1829 -0
- package/src/models/operations/getapplications.ts +1790 -0
- package/src/models/operations/index.ts +7 -0
- package/src/sdk/applications.ts +55 -0
- package/src/sdk/index.ts +5 -0
- package/src/sdk/sdk.ts +13 -0
- package/src/types/blobs.ts +31 -0
- package/src/types/constdatetime.ts +15 -0
- package/src/types/enums.ts +16 -0
- package/src/types/fp.ts +50 -0
- package/src/types/index.ts +11 -0
- package/src/types/operations.ts +105 -0
- package/src/types/rfcdate.ts +54 -0
- package/src/types/streams.ts +21 -0
- package/tsconfig.json +41 -0
- package/types/blobs.d.ts +4 -0
- package/types/blobs.d.ts.map +1 -0
- package/types/blobs.js +62 -0
- package/types/blobs.js.map +1 -0
- package/types/constdatetime.d.ts +3 -0
- package/types/constdatetime.d.ts.map +1 -0
- package/types/constdatetime.js +46 -0
- package/types/constdatetime.js.map +1 -0
- package/types/enums.d.ts +12 -0
- package/types/enums.d.ts.map +1 -0
- package/types/enums.js +10 -0
- package/types/enums.js.map +1 -0
- package/types/fp.d.ts +31 -0
- package/types/fp.d.ts.map +1 -0
- package/types/fp.js +37 -0
- package/types/fp.js.map +1 -0
- package/types/index.d.ts +8 -0
- package/types/index.d.ts.map +1 -0
- package/types/index.js +16 -0
- package/types/index.js.map +1 -0
- package/types/operations.d.ts +27 -0
- package/types/operations.d.ts.map +1 -0
- package/types/operations.js +83 -0
- package/types/operations.js.map +1 -0
- package/types/rfcdate.d.ts +21 -0
- package/types/rfcdate.d.ts.map +1 -0
- package/types/rfcdate.js +46 -0
- package/types/rfcdate.js.map +1 -0
- package/types/streams.d.ts +2 -0
- package/types/streams.d.ts.map +1 -0
- package/types/streams.js +18 -0
- package/types/streams.js.map +1 -0
|
@@ -0,0 +1,861 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema = exports.GetApplicationCustomers$ = exports.GetApplicationCustomers$outboundSchema = exports.GetApplicationCustomers$inboundSchema = exports.GetApplicationApplicationsResponse200ApplicationJSONData$ = exports.GetApplicationApplicationsResponse200ApplicationJSONData$outboundSchema = exports.GetApplicationApplicationsResponse200ApplicationJSONData$inboundSchema = exports.GetApplicationDataApplications1$ = exports.GetApplicationDataApplications1$outboundSchema = exports.GetApplicationDataApplications1$inboundSchema = exports.GetApplicationDataApplicationsResponseType$ = exports.GetApplicationDataApplicationsResponseType$outboundSchema = exports.GetApplicationDataApplicationsResponseType$inboundSchema = exports.GetApplicationDataApplications2$ = exports.GetApplicationDataApplications2$outboundSchema = exports.GetApplicationDataApplications2$inboundSchema = exports.GetApplicationDataApplicationsResponse200Type$ = exports.GetApplicationDataApplicationsResponse200Type$outboundSchema = exports.GetApplicationDataApplicationsResponse200Type$inboundSchema = exports.GetApplicationLoanDetails$ = exports.GetApplicationLoanDetails$outboundSchema = exports.GetApplicationLoanDetails$inboundSchema = exports.GetApplicationApplicationsResponse200Data$ = exports.GetApplicationApplicationsResponse200Data$outboundSchema = exports.GetApplicationApplicationsResponse200Data$inboundSchema = exports.GetApplicationDataApplicationsResponse2001$ = exports.GetApplicationDataApplicationsResponse2001$outboundSchema = exports.GetApplicationDataApplicationsResponse2001$inboundSchema = exports.GetApplicationDataType$ = exports.GetApplicationDataType$outboundSchema = exports.GetApplicationDataType$inboundSchema = exports.GetApplicationDataApplicationsResponse2002$ = exports.GetApplicationDataApplicationsResponse2002$outboundSchema = exports.GetApplicationDataApplicationsResponse2002$inboundSchema = exports.GetApplicationDataApplicationsType$ = exports.GetApplicationDataApplicationsType$outboundSchema = exports.GetApplicationDataApplicationsType$inboundSchema = exports.GetApplicationType$ = exports.GetApplicationType$outboundSchema = exports.GetApplicationType$inboundSchema = exports.GetApplicationRequest$ = exports.GetApplicationRequest$outboundSchema = exports.GetApplicationRequest$inboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONType = exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType = exports.GetApplicationDataApplicationsResponseType = exports.GetApplicationDataApplicationsResponse200Type = exports.GetApplicationDataType = exports.GetApplicationDataApplicationsType = exports.GetApplicationType = void 0;
|
|
40
|
+
exports.GetApplicationResponseBody$ = exports.GetApplicationResponseBody$outboundSchema = exports.GetApplicationResponseBody$inboundSchema = exports.GetApplicationIncluded$ = exports.GetApplicationIncluded$outboundSchema = exports.GetApplicationIncluded$inboundSchema = exports.GetApplicationApplicationsRelationships$ = exports.GetApplicationApplicationsRelationships$outboundSchema = exports.GetApplicationApplicationsRelationships$inboundSchema = exports.GetApplicationApplicationsData$ = exports.GetApplicationApplicationsData$outboundSchema = exports.GetApplicationApplicationsData$inboundSchema = exports.GetApplicationData1$ = exports.GetApplicationData1$outboundSchema = exports.GetApplicationData1$inboundSchema = exports.GetApplicationData2$ = exports.GetApplicationData2$outboundSchema = exports.GetApplicationData2$inboundSchema = exports.GetApplicationAttributes$ = exports.GetApplicationAttributes$outboundSchema = exports.GetApplicationAttributes$inboundSchema = exports.GetApplicationData$ = exports.GetApplicationData$outboundSchema = exports.GetApplicationData$inboundSchema = exports.GetApplicationRelationships$ = exports.GetApplicationRelationships$outboundSchema = exports.GetApplicationRelationships$inboundSchema = exports.GetApplicationAsset$ = exports.GetApplicationAsset$outboundSchema = exports.GetApplicationAsset$inboundSchema = exports.GetApplicationApplicationsResponseData$ = exports.GetApplicationApplicationsResponseData$outboundSchema = exports.GetApplicationApplicationsResponseData$inboundSchema = exports.GetApplicationDataApplicationsResponse1$ = exports.GetApplicationDataApplicationsResponse1$outboundSchema = exports.GetApplicationDataApplicationsResponse1$inboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$ = exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$outboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema = exports.GetApplicationDataApplicationsResponse2$ = exports.GetApplicationDataApplicationsResponse2$outboundSchema = exports.GetApplicationDataApplicationsResponse2$inboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$ = exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema = void 0;
|
|
41
|
+
exports.getApplicationRequestToJSON = getApplicationRequestToJSON;
|
|
42
|
+
exports.getApplicationRequestFromJSON = getApplicationRequestFromJSON;
|
|
43
|
+
exports.getApplicationDataApplicationsResponse2002ToJSON = getApplicationDataApplicationsResponse2002ToJSON;
|
|
44
|
+
exports.getApplicationDataApplicationsResponse2002FromJSON = getApplicationDataApplicationsResponse2002FromJSON;
|
|
45
|
+
exports.getApplicationDataApplicationsResponse2001ToJSON = getApplicationDataApplicationsResponse2001ToJSON;
|
|
46
|
+
exports.getApplicationDataApplicationsResponse2001FromJSON = getApplicationDataApplicationsResponse2001FromJSON;
|
|
47
|
+
exports.getApplicationApplicationsResponse200DataToJSON = getApplicationApplicationsResponse200DataToJSON;
|
|
48
|
+
exports.getApplicationApplicationsResponse200DataFromJSON = getApplicationApplicationsResponse200DataFromJSON;
|
|
49
|
+
exports.getApplicationLoanDetailsToJSON = getApplicationLoanDetailsToJSON;
|
|
50
|
+
exports.getApplicationLoanDetailsFromJSON = getApplicationLoanDetailsFromJSON;
|
|
51
|
+
exports.getApplicationDataApplications2ToJSON = getApplicationDataApplications2ToJSON;
|
|
52
|
+
exports.getApplicationDataApplications2FromJSON = getApplicationDataApplications2FromJSON;
|
|
53
|
+
exports.getApplicationDataApplications1ToJSON = getApplicationDataApplications1ToJSON;
|
|
54
|
+
exports.getApplicationDataApplications1FromJSON = getApplicationDataApplications1FromJSON;
|
|
55
|
+
exports.getApplicationApplicationsResponse200ApplicationJSONDataToJSON = getApplicationApplicationsResponse200ApplicationJSONDataToJSON;
|
|
56
|
+
exports.getApplicationApplicationsResponse200ApplicationJSONDataFromJSON = getApplicationApplicationsResponse200ApplicationJSONDataFromJSON;
|
|
57
|
+
exports.getApplicationCustomersToJSON = getApplicationCustomersToJSON;
|
|
58
|
+
exports.getApplicationCustomersFromJSON = getApplicationCustomersFromJSON;
|
|
59
|
+
exports.getApplicationDataApplicationsResponse2ToJSON = getApplicationDataApplicationsResponse2ToJSON;
|
|
60
|
+
exports.getApplicationDataApplicationsResponse2FromJSON = getApplicationDataApplicationsResponse2FromJSON;
|
|
61
|
+
exports.getApplicationDataApplicationsResponse1ToJSON = getApplicationDataApplicationsResponse1ToJSON;
|
|
62
|
+
exports.getApplicationDataApplicationsResponse1FromJSON = getApplicationDataApplicationsResponse1FromJSON;
|
|
63
|
+
exports.getApplicationApplicationsResponseDataToJSON = getApplicationApplicationsResponseDataToJSON;
|
|
64
|
+
exports.getApplicationApplicationsResponseDataFromJSON = getApplicationApplicationsResponseDataFromJSON;
|
|
65
|
+
exports.getApplicationAssetToJSON = getApplicationAssetToJSON;
|
|
66
|
+
exports.getApplicationAssetFromJSON = getApplicationAssetFromJSON;
|
|
67
|
+
exports.getApplicationRelationshipsToJSON = getApplicationRelationshipsToJSON;
|
|
68
|
+
exports.getApplicationRelationshipsFromJSON = getApplicationRelationshipsFromJSON;
|
|
69
|
+
exports.getApplicationDataToJSON = getApplicationDataToJSON;
|
|
70
|
+
exports.getApplicationDataFromJSON = getApplicationDataFromJSON;
|
|
71
|
+
exports.getApplicationAttributesToJSON = getApplicationAttributesToJSON;
|
|
72
|
+
exports.getApplicationAttributesFromJSON = getApplicationAttributesFromJSON;
|
|
73
|
+
exports.getApplicationData2ToJSON = getApplicationData2ToJSON;
|
|
74
|
+
exports.getApplicationData2FromJSON = getApplicationData2FromJSON;
|
|
75
|
+
exports.getApplicationData1ToJSON = getApplicationData1ToJSON;
|
|
76
|
+
exports.getApplicationData1FromJSON = getApplicationData1FromJSON;
|
|
77
|
+
exports.getApplicationApplicationsDataToJSON = getApplicationApplicationsDataToJSON;
|
|
78
|
+
exports.getApplicationApplicationsDataFromJSON = getApplicationApplicationsDataFromJSON;
|
|
79
|
+
exports.getApplicationApplicationsRelationshipsToJSON = getApplicationApplicationsRelationshipsToJSON;
|
|
80
|
+
exports.getApplicationApplicationsRelationshipsFromJSON = getApplicationApplicationsRelationshipsFromJSON;
|
|
81
|
+
exports.getApplicationIncludedToJSON = getApplicationIncludedToJSON;
|
|
82
|
+
exports.getApplicationIncludedFromJSON = getApplicationIncludedFromJSON;
|
|
83
|
+
exports.getApplicationResponseBodyToJSON = getApplicationResponseBodyToJSON;
|
|
84
|
+
exports.getApplicationResponseBodyFromJSON = getApplicationResponseBodyFromJSON;
|
|
85
|
+
const z = __importStar(require("zod"));
|
|
86
|
+
const schemas_js_1 = require("../../lib/schemas.js");
|
|
87
|
+
const components = __importStar(require("../components/index.js"));
|
|
88
|
+
exports.GetApplicationType = {
|
|
89
|
+
Applications: "applications",
|
|
90
|
+
};
|
|
91
|
+
exports.GetApplicationDataApplicationsType = {
|
|
92
|
+
LoanDetails: "loan-details",
|
|
93
|
+
};
|
|
94
|
+
exports.GetApplicationDataType = {
|
|
95
|
+
LoanDetails: "loan-details",
|
|
96
|
+
};
|
|
97
|
+
exports.GetApplicationDataApplicationsResponse200Type = {
|
|
98
|
+
Customers: "customers",
|
|
99
|
+
};
|
|
100
|
+
exports.GetApplicationDataApplicationsResponseType = {
|
|
101
|
+
Customers: "customers",
|
|
102
|
+
};
|
|
103
|
+
exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType = {
|
|
104
|
+
Asset: "asset",
|
|
105
|
+
};
|
|
106
|
+
exports.GetApplicationDataApplicationsResponse200ApplicationJSONType = {
|
|
107
|
+
Asset: "asset",
|
|
108
|
+
};
|
|
109
|
+
/** @internal */
|
|
110
|
+
exports.GetApplicationRequest$inboundSchema = z.object({
|
|
111
|
+
id: z.string(),
|
|
112
|
+
});
|
|
113
|
+
/** @internal */
|
|
114
|
+
exports.GetApplicationRequest$outboundSchema = z.object({
|
|
115
|
+
id: z.string(),
|
|
116
|
+
});
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
120
|
+
*/
|
|
121
|
+
var GetApplicationRequest$;
|
|
122
|
+
(function (GetApplicationRequest$) {
|
|
123
|
+
/** @deprecated use `GetApplicationRequest$inboundSchema` instead. */
|
|
124
|
+
GetApplicationRequest$.inboundSchema = exports.GetApplicationRequest$inboundSchema;
|
|
125
|
+
/** @deprecated use `GetApplicationRequest$outboundSchema` instead. */
|
|
126
|
+
GetApplicationRequest$.outboundSchema = exports.GetApplicationRequest$outboundSchema;
|
|
127
|
+
})(GetApplicationRequest$ || (exports.GetApplicationRequest$ = GetApplicationRequest$ = {}));
|
|
128
|
+
function getApplicationRequestToJSON(getApplicationRequest) {
|
|
129
|
+
return JSON.stringify(exports.GetApplicationRequest$outboundSchema.parse(getApplicationRequest));
|
|
130
|
+
}
|
|
131
|
+
function getApplicationRequestFromJSON(jsonString) {
|
|
132
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationRequest' from JSON`);
|
|
133
|
+
}
|
|
134
|
+
/** @internal */
|
|
135
|
+
exports.GetApplicationType$inboundSchema = z.nativeEnum(exports.GetApplicationType);
|
|
136
|
+
/** @internal */
|
|
137
|
+
exports.GetApplicationType$outboundSchema = exports.GetApplicationType$inboundSchema;
|
|
138
|
+
/**
|
|
139
|
+
* @internal
|
|
140
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
141
|
+
*/
|
|
142
|
+
var GetApplicationType$;
|
|
143
|
+
(function (GetApplicationType$) {
|
|
144
|
+
/** @deprecated use `GetApplicationType$inboundSchema` instead. */
|
|
145
|
+
GetApplicationType$.inboundSchema = exports.GetApplicationType$inboundSchema;
|
|
146
|
+
/** @deprecated use `GetApplicationType$outboundSchema` instead. */
|
|
147
|
+
GetApplicationType$.outboundSchema = exports.GetApplicationType$outboundSchema;
|
|
148
|
+
})(GetApplicationType$ || (exports.GetApplicationType$ = GetApplicationType$ = {}));
|
|
149
|
+
/** @internal */
|
|
150
|
+
exports.GetApplicationDataApplicationsType$inboundSchema = z.nativeEnum(exports.GetApplicationDataApplicationsType);
|
|
151
|
+
/** @internal */
|
|
152
|
+
exports.GetApplicationDataApplicationsType$outboundSchema = exports.GetApplicationDataApplicationsType$inboundSchema;
|
|
153
|
+
/**
|
|
154
|
+
* @internal
|
|
155
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
156
|
+
*/
|
|
157
|
+
var GetApplicationDataApplicationsType$;
|
|
158
|
+
(function (GetApplicationDataApplicationsType$) {
|
|
159
|
+
/** @deprecated use `GetApplicationDataApplicationsType$inboundSchema` instead. */
|
|
160
|
+
GetApplicationDataApplicationsType$.inboundSchema = exports.GetApplicationDataApplicationsType$inboundSchema;
|
|
161
|
+
/** @deprecated use `GetApplicationDataApplicationsType$outboundSchema` instead. */
|
|
162
|
+
GetApplicationDataApplicationsType$.outboundSchema = exports.GetApplicationDataApplicationsType$outboundSchema;
|
|
163
|
+
})(GetApplicationDataApplicationsType$ || (exports.GetApplicationDataApplicationsType$ = GetApplicationDataApplicationsType$ = {}));
|
|
164
|
+
/** @internal */
|
|
165
|
+
exports.GetApplicationDataApplicationsResponse2002$inboundSchema = z.object({
|
|
166
|
+
type: exports.GetApplicationDataApplicationsType$inboundSchema,
|
|
167
|
+
id: z.string(),
|
|
168
|
+
});
|
|
169
|
+
/** @internal */
|
|
170
|
+
exports.GetApplicationDataApplicationsResponse2002$outboundSchema = z.object({
|
|
171
|
+
type: exports.GetApplicationDataApplicationsType$outboundSchema,
|
|
172
|
+
id: z.string(),
|
|
173
|
+
});
|
|
174
|
+
/**
|
|
175
|
+
* @internal
|
|
176
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
177
|
+
*/
|
|
178
|
+
var GetApplicationDataApplicationsResponse2002$;
|
|
179
|
+
(function (GetApplicationDataApplicationsResponse2002$) {
|
|
180
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse2002$inboundSchema` instead. */
|
|
181
|
+
GetApplicationDataApplicationsResponse2002$.inboundSchema = exports.GetApplicationDataApplicationsResponse2002$inboundSchema;
|
|
182
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse2002$outboundSchema` instead. */
|
|
183
|
+
GetApplicationDataApplicationsResponse2002$.outboundSchema = exports.GetApplicationDataApplicationsResponse2002$outboundSchema;
|
|
184
|
+
})(GetApplicationDataApplicationsResponse2002$ || (exports.GetApplicationDataApplicationsResponse2002$ = GetApplicationDataApplicationsResponse2002$ = {}));
|
|
185
|
+
function getApplicationDataApplicationsResponse2002ToJSON(getApplicationDataApplicationsResponse2002) {
|
|
186
|
+
return JSON.stringify(exports.GetApplicationDataApplicationsResponse2002$outboundSchema.parse(getApplicationDataApplicationsResponse2002));
|
|
187
|
+
}
|
|
188
|
+
function getApplicationDataApplicationsResponse2002FromJSON(jsonString) {
|
|
189
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationDataApplicationsResponse2002$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationDataApplicationsResponse2002' from JSON`);
|
|
190
|
+
}
|
|
191
|
+
/** @internal */
|
|
192
|
+
exports.GetApplicationDataType$inboundSchema = z.nativeEnum(exports.GetApplicationDataType);
|
|
193
|
+
/** @internal */
|
|
194
|
+
exports.GetApplicationDataType$outboundSchema = exports.GetApplicationDataType$inboundSchema;
|
|
195
|
+
/**
|
|
196
|
+
* @internal
|
|
197
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
198
|
+
*/
|
|
199
|
+
var GetApplicationDataType$;
|
|
200
|
+
(function (GetApplicationDataType$) {
|
|
201
|
+
/** @deprecated use `GetApplicationDataType$inboundSchema` instead. */
|
|
202
|
+
GetApplicationDataType$.inboundSchema = exports.GetApplicationDataType$inboundSchema;
|
|
203
|
+
/** @deprecated use `GetApplicationDataType$outboundSchema` instead. */
|
|
204
|
+
GetApplicationDataType$.outboundSchema = exports.GetApplicationDataType$outboundSchema;
|
|
205
|
+
})(GetApplicationDataType$ || (exports.GetApplicationDataType$ = GetApplicationDataType$ = {}));
|
|
206
|
+
/** @internal */
|
|
207
|
+
exports.GetApplicationDataApplicationsResponse2001$inboundSchema = z.object({
|
|
208
|
+
type: exports.GetApplicationDataType$inboundSchema,
|
|
209
|
+
id: z.string(),
|
|
210
|
+
});
|
|
211
|
+
/** @internal */
|
|
212
|
+
exports.GetApplicationDataApplicationsResponse2001$outboundSchema = z.object({
|
|
213
|
+
type: exports.GetApplicationDataType$outboundSchema,
|
|
214
|
+
id: z.string(),
|
|
215
|
+
});
|
|
216
|
+
/**
|
|
217
|
+
* @internal
|
|
218
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
219
|
+
*/
|
|
220
|
+
var GetApplicationDataApplicationsResponse2001$;
|
|
221
|
+
(function (GetApplicationDataApplicationsResponse2001$) {
|
|
222
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse2001$inboundSchema` instead. */
|
|
223
|
+
GetApplicationDataApplicationsResponse2001$.inboundSchema = exports.GetApplicationDataApplicationsResponse2001$inboundSchema;
|
|
224
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse2001$outboundSchema` instead. */
|
|
225
|
+
GetApplicationDataApplicationsResponse2001$.outboundSchema = exports.GetApplicationDataApplicationsResponse2001$outboundSchema;
|
|
226
|
+
})(GetApplicationDataApplicationsResponse2001$ || (exports.GetApplicationDataApplicationsResponse2001$ = GetApplicationDataApplicationsResponse2001$ = {}));
|
|
227
|
+
function getApplicationDataApplicationsResponse2001ToJSON(getApplicationDataApplicationsResponse2001) {
|
|
228
|
+
return JSON.stringify(exports.GetApplicationDataApplicationsResponse2001$outboundSchema.parse(getApplicationDataApplicationsResponse2001));
|
|
229
|
+
}
|
|
230
|
+
function getApplicationDataApplicationsResponse2001FromJSON(jsonString) {
|
|
231
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationDataApplicationsResponse2001$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationDataApplicationsResponse2001' from JSON`);
|
|
232
|
+
}
|
|
233
|
+
/** @internal */
|
|
234
|
+
exports.GetApplicationApplicationsResponse200Data$inboundSchema = z.union([
|
|
235
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse2001$inboundSchema),
|
|
236
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2002$inboundSchema)),
|
|
237
|
+
]);
|
|
238
|
+
/** @internal */
|
|
239
|
+
exports.GetApplicationApplicationsResponse200Data$outboundSchema = z.union([
|
|
240
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse2001$outboundSchema),
|
|
241
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2002$outboundSchema)),
|
|
242
|
+
]);
|
|
243
|
+
/**
|
|
244
|
+
* @internal
|
|
245
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
246
|
+
*/
|
|
247
|
+
var GetApplicationApplicationsResponse200Data$;
|
|
248
|
+
(function (GetApplicationApplicationsResponse200Data$) {
|
|
249
|
+
/** @deprecated use `GetApplicationApplicationsResponse200Data$inboundSchema` instead. */
|
|
250
|
+
GetApplicationApplicationsResponse200Data$.inboundSchema = exports.GetApplicationApplicationsResponse200Data$inboundSchema;
|
|
251
|
+
/** @deprecated use `GetApplicationApplicationsResponse200Data$outboundSchema` instead. */
|
|
252
|
+
GetApplicationApplicationsResponse200Data$.outboundSchema = exports.GetApplicationApplicationsResponse200Data$outboundSchema;
|
|
253
|
+
})(GetApplicationApplicationsResponse200Data$ || (exports.GetApplicationApplicationsResponse200Data$ = GetApplicationApplicationsResponse200Data$ = {}));
|
|
254
|
+
function getApplicationApplicationsResponse200DataToJSON(getApplicationApplicationsResponse200Data) {
|
|
255
|
+
return JSON.stringify(exports.GetApplicationApplicationsResponse200Data$outboundSchema.parse(getApplicationApplicationsResponse200Data));
|
|
256
|
+
}
|
|
257
|
+
function getApplicationApplicationsResponse200DataFromJSON(jsonString) {
|
|
258
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationApplicationsResponse200Data$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationApplicationsResponse200Data' from JSON`);
|
|
259
|
+
}
|
|
260
|
+
/** @internal */
|
|
261
|
+
exports.GetApplicationLoanDetails$inboundSchema = z.object({
|
|
262
|
+
data: z.nullable(z.union([
|
|
263
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse2001$inboundSchema),
|
|
264
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2002$inboundSchema)),
|
|
265
|
+
])),
|
|
266
|
+
links: components.Links$inboundSchema.optional(),
|
|
267
|
+
meta: z.record(z.any()).optional(),
|
|
268
|
+
});
|
|
269
|
+
/** @internal */
|
|
270
|
+
exports.GetApplicationLoanDetails$outboundSchema = z.object({
|
|
271
|
+
data: z.nullable(z.union([
|
|
272
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse2001$outboundSchema),
|
|
273
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2002$outboundSchema)),
|
|
274
|
+
])),
|
|
275
|
+
links: components.Links$outboundSchema.optional(),
|
|
276
|
+
meta: z.record(z.any()).optional(),
|
|
277
|
+
});
|
|
278
|
+
/**
|
|
279
|
+
* @internal
|
|
280
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
281
|
+
*/
|
|
282
|
+
var GetApplicationLoanDetails$;
|
|
283
|
+
(function (GetApplicationLoanDetails$) {
|
|
284
|
+
/** @deprecated use `GetApplicationLoanDetails$inboundSchema` instead. */
|
|
285
|
+
GetApplicationLoanDetails$.inboundSchema = exports.GetApplicationLoanDetails$inboundSchema;
|
|
286
|
+
/** @deprecated use `GetApplicationLoanDetails$outboundSchema` instead. */
|
|
287
|
+
GetApplicationLoanDetails$.outboundSchema = exports.GetApplicationLoanDetails$outboundSchema;
|
|
288
|
+
})(GetApplicationLoanDetails$ || (exports.GetApplicationLoanDetails$ = GetApplicationLoanDetails$ = {}));
|
|
289
|
+
function getApplicationLoanDetailsToJSON(getApplicationLoanDetails) {
|
|
290
|
+
return JSON.stringify(exports.GetApplicationLoanDetails$outboundSchema.parse(getApplicationLoanDetails));
|
|
291
|
+
}
|
|
292
|
+
function getApplicationLoanDetailsFromJSON(jsonString) {
|
|
293
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationLoanDetails$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationLoanDetails' from JSON`);
|
|
294
|
+
}
|
|
295
|
+
/** @internal */
|
|
296
|
+
exports.GetApplicationDataApplicationsResponse200Type$inboundSchema = z
|
|
297
|
+
.nativeEnum(exports.GetApplicationDataApplicationsResponse200Type);
|
|
298
|
+
/** @internal */
|
|
299
|
+
exports.GetApplicationDataApplicationsResponse200Type$outboundSchema = exports.GetApplicationDataApplicationsResponse200Type$inboundSchema;
|
|
300
|
+
/**
|
|
301
|
+
* @internal
|
|
302
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
303
|
+
*/
|
|
304
|
+
var GetApplicationDataApplicationsResponse200Type$;
|
|
305
|
+
(function (GetApplicationDataApplicationsResponse200Type$) {
|
|
306
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse200Type$inboundSchema` instead. */
|
|
307
|
+
GetApplicationDataApplicationsResponse200Type$.inboundSchema = exports.GetApplicationDataApplicationsResponse200Type$inboundSchema;
|
|
308
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse200Type$outboundSchema` instead. */
|
|
309
|
+
GetApplicationDataApplicationsResponse200Type$.outboundSchema = exports.GetApplicationDataApplicationsResponse200Type$outboundSchema;
|
|
310
|
+
})(GetApplicationDataApplicationsResponse200Type$ || (exports.GetApplicationDataApplicationsResponse200Type$ = GetApplicationDataApplicationsResponse200Type$ = {}));
|
|
311
|
+
/** @internal */
|
|
312
|
+
exports.GetApplicationDataApplications2$inboundSchema = z.object({
|
|
313
|
+
type: exports.GetApplicationDataApplicationsResponse200Type$inboundSchema,
|
|
314
|
+
id: z.string(),
|
|
315
|
+
});
|
|
316
|
+
/** @internal */
|
|
317
|
+
exports.GetApplicationDataApplications2$outboundSchema = z.object({
|
|
318
|
+
type: exports.GetApplicationDataApplicationsResponse200Type$outboundSchema,
|
|
319
|
+
id: z.string(),
|
|
320
|
+
});
|
|
321
|
+
/**
|
|
322
|
+
* @internal
|
|
323
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
324
|
+
*/
|
|
325
|
+
var GetApplicationDataApplications2$;
|
|
326
|
+
(function (GetApplicationDataApplications2$) {
|
|
327
|
+
/** @deprecated use `GetApplicationDataApplications2$inboundSchema` instead. */
|
|
328
|
+
GetApplicationDataApplications2$.inboundSchema = exports.GetApplicationDataApplications2$inboundSchema;
|
|
329
|
+
/** @deprecated use `GetApplicationDataApplications2$outboundSchema` instead. */
|
|
330
|
+
GetApplicationDataApplications2$.outboundSchema = exports.GetApplicationDataApplications2$outboundSchema;
|
|
331
|
+
})(GetApplicationDataApplications2$ || (exports.GetApplicationDataApplications2$ = GetApplicationDataApplications2$ = {}));
|
|
332
|
+
function getApplicationDataApplications2ToJSON(getApplicationDataApplications2) {
|
|
333
|
+
return JSON.stringify(exports.GetApplicationDataApplications2$outboundSchema.parse(getApplicationDataApplications2));
|
|
334
|
+
}
|
|
335
|
+
function getApplicationDataApplications2FromJSON(jsonString) {
|
|
336
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationDataApplications2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationDataApplications2' from JSON`);
|
|
337
|
+
}
|
|
338
|
+
/** @internal */
|
|
339
|
+
exports.GetApplicationDataApplicationsResponseType$inboundSchema = z
|
|
340
|
+
.nativeEnum(exports.GetApplicationDataApplicationsResponseType);
|
|
341
|
+
/** @internal */
|
|
342
|
+
exports.GetApplicationDataApplicationsResponseType$outboundSchema = exports.GetApplicationDataApplicationsResponseType$inboundSchema;
|
|
343
|
+
/**
|
|
344
|
+
* @internal
|
|
345
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
346
|
+
*/
|
|
347
|
+
var GetApplicationDataApplicationsResponseType$;
|
|
348
|
+
(function (GetApplicationDataApplicationsResponseType$) {
|
|
349
|
+
/** @deprecated use `GetApplicationDataApplicationsResponseType$inboundSchema` instead. */
|
|
350
|
+
GetApplicationDataApplicationsResponseType$.inboundSchema = exports.GetApplicationDataApplicationsResponseType$inboundSchema;
|
|
351
|
+
/** @deprecated use `GetApplicationDataApplicationsResponseType$outboundSchema` instead. */
|
|
352
|
+
GetApplicationDataApplicationsResponseType$.outboundSchema = exports.GetApplicationDataApplicationsResponseType$outboundSchema;
|
|
353
|
+
})(GetApplicationDataApplicationsResponseType$ || (exports.GetApplicationDataApplicationsResponseType$ = GetApplicationDataApplicationsResponseType$ = {}));
|
|
354
|
+
/** @internal */
|
|
355
|
+
exports.GetApplicationDataApplications1$inboundSchema = z.object({
|
|
356
|
+
type: exports.GetApplicationDataApplicationsResponseType$inboundSchema,
|
|
357
|
+
id: z.string(),
|
|
358
|
+
});
|
|
359
|
+
/** @internal */
|
|
360
|
+
exports.GetApplicationDataApplications1$outboundSchema = z.object({
|
|
361
|
+
type: exports.GetApplicationDataApplicationsResponseType$outboundSchema,
|
|
362
|
+
id: z.string(),
|
|
363
|
+
});
|
|
364
|
+
/**
|
|
365
|
+
* @internal
|
|
366
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
367
|
+
*/
|
|
368
|
+
var GetApplicationDataApplications1$;
|
|
369
|
+
(function (GetApplicationDataApplications1$) {
|
|
370
|
+
/** @deprecated use `GetApplicationDataApplications1$inboundSchema` instead. */
|
|
371
|
+
GetApplicationDataApplications1$.inboundSchema = exports.GetApplicationDataApplications1$inboundSchema;
|
|
372
|
+
/** @deprecated use `GetApplicationDataApplications1$outboundSchema` instead. */
|
|
373
|
+
GetApplicationDataApplications1$.outboundSchema = exports.GetApplicationDataApplications1$outboundSchema;
|
|
374
|
+
})(GetApplicationDataApplications1$ || (exports.GetApplicationDataApplications1$ = GetApplicationDataApplications1$ = {}));
|
|
375
|
+
function getApplicationDataApplications1ToJSON(getApplicationDataApplications1) {
|
|
376
|
+
return JSON.stringify(exports.GetApplicationDataApplications1$outboundSchema.parse(getApplicationDataApplications1));
|
|
377
|
+
}
|
|
378
|
+
function getApplicationDataApplications1FromJSON(jsonString) {
|
|
379
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationDataApplications1$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationDataApplications1' from JSON`);
|
|
380
|
+
}
|
|
381
|
+
/** @internal */
|
|
382
|
+
exports.GetApplicationApplicationsResponse200ApplicationJSONData$inboundSchema = z.union([
|
|
383
|
+
z.lazy(() => exports.GetApplicationDataApplications1$inboundSchema),
|
|
384
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplications2$inboundSchema)),
|
|
385
|
+
]);
|
|
386
|
+
/** @internal */
|
|
387
|
+
exports.GetApplicationApplicationsResponse200ApplicationJSONData$outboundSchema = z.union([
|
|
388
|
+
z.lazy(() => exports.GetApplicationDataApplications1$outboundSchema),
|
|
389
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplications2$outboundSchema)),
|
|
390
|
+
]);
|
|
391
|
+
/**
|
|
392
|
+
* @internal
|
|
393
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
394
|
+
*/
|
|
395
|
+
var GetApplicationApplicationsResponse200ApplicationJSONData$;
|
|
396
|
+
(function (GetApplicationApplicationsResponse200ApplicationJSONData$) {
|
|
397
|
+
/** @deprecated use `GetApplicationApplicationsResponse200ApplicationJSONData$inboundSchema` instead. */
|
|
398
|
+
GetApplicationApplicationsResponse200ApplicationJSONData$.inboundSchema = exports.GetApplicationApplicationsResponse200ApplicationJSONData$inboundSchema;
|
|
399
|
+
/** @deprecated use `GetApplicationApplicationsResponse200ApplicationJSONData$outboundSchema` instead. */
|
|
400
|
+
GetApplicationApplicationsResponse200ApplicationJSONData$.outboundSchema = exports.GetApplicationApplicationsResponse200ApplicationJSONData$outboundSchema;
|
|
401
|
+
})(GetApplicationApplicationsResponse200ApplicationJSONData$ || (exports.GetApplicationApplicationsResponse200ApplicationJSONData$ = GetApplicationApplicationsResponse200ApplicationJSONData$ = {}));
|
|
402
|
+
function getApplicationApplicationsResponse200ApplicationJSONDataToJSON(getApplicationApplicationsResponse200ApplicationJSONData) {
|
|
403
|
+
return JSON.stringify(exports.GetApplicationApplicationsResponse200ApplicationJSONData$outboundSchema
|
|
404
|
+
.parse(getApplicationApplicationsResponse200ApplicationJSONData));
|
|
405
|
+
}
|
|
406
|
+
function getApplicationApplicationsResponse200ApplicationJSONDataFromJSON(jsonString) {
|
|
407
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationApplicationsResponse200ApplicationJSONData$inboundSchema
|
|
408
|
+
.parse(JSON.parse(x)), `Failed to parse 'GetApplicationApplicationsResponse200ApplicationJSONData' from JSON`);
|
|
409
|
+
}
|
|
410
|
+
/** @internal */
|
|
411
|
+
exports.GetApplicationCustomers$inboundSchema = z.object({
|
|
412
|
+
data: z.nullable(z.union([
|
|
413
|
+
z.lazy(() => exports.GetApplicationDataApplications1$inboundSchema),
|
|
414
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplications2$inboundSchema)),
|
|
415
|
+
])),
|
|
416
|
+
links: components.Links$inboundSchema.optional(),
|
|
417
|
+
meta: z.record(z.any()).optional(),
|
|
418
|
+
});
|
|
419
|
+
/** @internal */
|
|
420
|
+
exports.GetApplicationCustomers$outboundSchema = z.object({
|
|
421
|
+
data: z.nullable(z.union([
|
|
422
|
+
z.lazy(() => exports.GetApplicationDataApplications1$outboundSchema),
|
|
423
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplications2$outboundSchema)),
|
|
424
|
+
])),
|
|
425
|
+
links: components.Links$outboundSchema.optional(),
|
|
426
|
+
meta: z.record(z.any()).optional(),
|
|
427
|
+
});
|
|
428
|
+
/**
|
|
429
|
+
* @internal
|
|
430
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
431
|
+
*/
|
|
432
|
+
var GetApplicationCustomers$;
|
|
433
|
+
(function (GetApplicationCustomers$) {
|
|
434
|
+
/** @deprecated use `GetApplicationCustomers$inboundSchema` instead. */
|
|
435
|
+
GetApplicationCustomers$.inboundSchema = exports.GetApplicationCustomers$inboundSchema;
|
|
436
|
+
/** @deprecated use `GetApplicationCustomers$outboundSchema` instead. */
|
|
437
|
+
GetApplicationCustomers$.outboundSchema = exports.GetApplicationCustomers$outboundSchema;
|
|
438
|
+
})(GetApplicationCustomers$ || (exports.GetApplicationCustomers$ = GetApplicationCustomers$ = {}));
|
|
439
|
+
function getApplicationCustomersToJSON(getApplicationCustomers) {
|
|
440
|
+
return JSON.stringify(exports.GetApplicationCustomers$outboundSchema.parse(getApplicationCustomers));
|
|
441
|
+
}
|
|
442
|
+
function getApplicationCustomersFromJSON(jsonString) {
|
|
443
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationCustomers$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationCustomers' from JSON`);
|
|
444
|
+
}
|
|
445
|
+
/** @internal */
|
|
446
|
+
exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema = z.nativeEnum(exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType);
|
|
447
|
+
/** @internal */
|
|
448
|
+
exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema;
|
|
449
|
+
/**
|
|
450
|
+
* @internal
|
|
451
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
452
|
+
*/
|
|
453
|
+
var GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$;
|
|
454
|
+
(function (GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$) {
|
|
455
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema` instead. */
|
|
456
|
+
GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$.inboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema;
|
|
457
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema` instead. */
|
|
458
|
+
GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$.outboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema;
|
|
459
|
+
})(GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$ || (exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$ = GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$ = {}));
|
|
460
|
+
/** @internal */
|
|
461
|
+
exports.GetApplicationDataApplicationsResponse2$inboundSchema = z.object({
|
|
462
|
+
type: exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
463
|
+
id: z.string(),
|
|
464
|
+
});
|
|
465
|
+
/** @internal */
|
|
466
|
+
exports.GetApplicationDataApplicationsResponse2$outboundSchema = z.object({
|
|
467
|
+
type: exports.GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema,
|
|
468
|
+
id: z.string(),
|
|
469
|
+
});
|
|
470
|
+
/**
|
|
471
|
+
* @internal
|
|
472
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
473
|
+
*/
|
|
474
|
+
var GetApplicationDataApplicationsResponse2$;
|
|
475
|
+
(function (GetApplicationDataApplicationsResponse2$) {
|
|
476
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse2$inboundSchema` instead. */
|
|
477
|
+
GetApplicationDataApplicationsResponse2$.inboundSchema = exports.GetApplicationDataApplicationsResponse2$inboundSchema;
|
|
478
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse2$outboundSchema` instead. */
|
|
479
|
+
GetApplicationDataApplicationsResponse2$.outboundSchema = exports.GetApplicationDataApplicationsResponse2$outboundSchema;
|
|
480
|
+
})(GetApplicationDataApplicationsResponse2$ || (exports.GetApplicationDataApplicationsResponse2$ = GetApplicationDataApplicationsResponse2$ = {}));
|
|
481
|
+
function getApplicationDataApplicationsResponse2ToJSON(getApplicationDataApplicationsResponse2) {
|
|
482
|
+
return JSON.stringify(exports.GetApplicationDataApplicationsResponse2$outboundSchema.parse(getApplicationDataApplicationsResponse2));
|
|
483
|
+
}
|
|
484
|
+
function getApplicationDataApplicationsResponse2FromJSON(jsonString) {
|
|
485
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationDataApplicationsResponse2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationDataApplicationsResponse2' from JSON`);
|
|
486
|
+
}
|
|
487
|
+
/** @internal */
|
|
488
|
+
exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema = z.nativeEnum(exports.GetApplicationDataApplicationsResponse200ApplicationJSONType);
|
|
489
|
+
/** @internal */
|
|
490
|
+
exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$outboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema;
|
|
491
|
+
/**
|
|
492
|
+
* @internal
|
|
493
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
494
|
+
*/
|
|
495
|
+
var GetApplicationDataApplicationsResponse200ApplicationJSONType$;
|
|
496
|
+
(function (GetApplicationDataApplicationsResponse200ApplicationJSONType$) {
|
|
497
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
498
|
+
GetApplicationDataApplicationsResponse200ApplicationJSONType$.inboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema;
|
|
499
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
500
|
+
GetApplicationDataApplicationsResponse200ApplicationJSONType$.outboundSchema = exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$outboundSchema;
|
|
501
|
+
})(GetApplicationDataApplicationsResponse200ApplicationJSONType$ || (exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$ = GetApplicationDataApplicationsResponse200ApplicationJSONType$ = {}));
|
|
502
|
+
/** @internal */
|
|
503
|
+
exports.GetApplicationDataApplicationsResponse1$inboundSchema = z.object({
|
|
504
|
+
type: exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema,
|
|
505
|
+
id: z.string(),
|
|
506
|
+
});
|
|
507
|
+
/** @internal */
|
|
508
|
+
exports.GetApplicationDataApplicationsResponse1$outboundSchema = z.object({
|
|
509
|
+
type: exports.GetApplicationDataApplicationsResponse200ApplicationJSONType$outboundSchema,
|
|
510
|
+
id: z.string(),
|
|
511
|
+
});
|
|
512
|
+
/**
|
|
513
|
+
* @internal
|
|
514
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
515
|
+
*/
|
|
516
|
+
var GetApplicationDataApplicationsResponse1$;
|
|
517
|
+
(function (GetApplicationDataApplicationsResponse1$) {
|
|
518
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse1$inboundSchema` instead. */
|
|
519
|
+
GetApplicationDataApplicationsResponse1$.inboundSchema = exports.GetApplicationDataApplicationsResponse1$inboundSchema;
|
|
520
|
+
/** @deprecated use `GetApplicationDataApplicationsResponse1$outboundSchema` instead. */
|
|
521
|
+
GetApplicationDataApplicationsResponse1$.outboundSchema = exports.GetApplicationDataApplicationsResponse1$outboundSchema;
|
|
522
|
+
})(GetApplicationDataApplicationsResponse1$ || (exports.GetApplicationDataApplicationsResponse1$ = GetApplicationDataApplicationsResponse1$ = {}));
|
|
523
|
+
function getApplicationDataApplicationsResponse1ToJSON(getApplicationDataApplicationsResponse1) {
|
|
524
|
+
return JSON.stringify(exports.GetApplicationDataApplicationsResponse1$outboundSchema.parse(getApplicationDataApplicationsResponse1));
|
|
525
|
+
}
|
|
526
|
+
function getApplicationDataApplicationsResponse1FromJSON(jsonString) {
|
|
527
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationDataApplicationsResponse1$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationDataApplicationsResponse1' from JSON`);
|
|
528
|
+
}
|
|
529
|
+
/** @internal */
|
|
530
|
+
exports.GetApplicationApplicationsResponseData$inboundSchema = z.union([
|
|
531
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse1$inboundSchema),
|
|
532
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2$inboundSchema)),
|
|
533
|
+
]);
|
|
534
|
+
/** @internal */
|
|
535
|
+
exports.GetApplicationApplicationsResponseData$outboundSchema = z.union([
|
|
536
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse1$outboundSchema),
|
|
537
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2$outboundSchema)),
|
|
538
|
+
]);
|
|
539
|
+
/**
|
|
540
|
+
* @internal
|
|
541
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
542
|
+
*/
|
|
543
|
+
var GetApplicationApplicationsResponseData$;
|
|
544
|
+
(function (GetApplicationApplicationsResponseData$) {
|
|
545
|
+
/** @deprecated use `GetApplicationApplicationsResponseData$inboundSchema` instead. */
|
|
546
|
+
GetApplicationApplicationsResponseData$.inboundSchema = exports.GetApplicationApplicationsResponseData$inboundSchema;
|
|
547
|
+
/** @deprecated use `GetApplicationApplicationsResponseData$outboundSchema` instead. */
|
|
548
|
+
GetApplicationApplicationsResponseData$.outboundSchema = exports.GetApplicationApplicationsResponseData$outboundSchema;
|
|
549
|
+
})(GetApplicationApplicationsResponseData$ || (exports.GetApplicationApplicationsResponseData$ = GetApplicationApplicationsResponseData$ = {}));
|
|
550
|
+
function getApplicationApplicationsResponseDataToJSON(getApplicationApplicationsResponseData) {
|
|
551
|
+
return JSON.stringify(exports.GetApplicationApplicationsResponseData$outboundSchema.parse(getApplicationApplicationsResponseData));
|
|
552
|
+
}
|
|
553
|
+
function getApplicationApplicationsResponseDataFromJSON(jsonString) {
|
|
554
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationApplicationsResponseData$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationApplicationsResponseData' from JSON`);
|
|
555
|
+
}
|
|
556
|
+
/** @internal */
|
|
557
|
+
exports.GetApplicationAsset$inboundSchema = z.object({
|
|
558
|
+
data: z.nullable(z.union([
|
|
559
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse1$inboundSchema),
|
|
560
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2$inboundSchema)),
|
|
561
|
+
])),
|
|
562
|
+
links: components.Links$inboundSchema.optional(),
|
|
563
|
+
meta: z.record(z.any()).optional(),
|
|
564
|
+
});
|
|
565
|
+
/** @internal */
|
|
566
|
+
exports.GetApplicationAsset$outboundSchema = z.object({
|
|
567
|
+
data: z.nullable(z.union([
|
|
568
|
+
z.lazy(() => exports.GetApplicationDataApplicationsResponse1$outboundSchema),
|
|
569
|
+
z.array(z.lazy(() => exports.GetApplicationDataApplicationsResponse2$outboundSchema)),
|
|
570
|
+
])),
|
|
571
|
+
links: components.Links$outboundSchema.optional(),
|
|
572
|
+
meta: z.record(z.any()).optional(),
|
|
573
|
+
});
|
|
574
|
+
/**
|
|
575
|
+
* @internal
|
|
576
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
577
|
+
*/
|
|
578
|
+
var GetApplicationAsset$;
|
|
579
|
+
(function (GetApplicationAsset$) {
|
|
580
|
+
/** @deprecated use `GetApplicationAsset$inboundSchema` instead. */
|
|
581
|
+
GetApplicationAsset$.inboundSchema = exports.GetApplicationAsset$inboundSchema;
|
|
582
|
+
/** @deprecated use `GetApplicationAsset$outboundSchema` instead. */
|
|
583
|
+
GetApplicationAsset$.outboundSchema = exports.GetApplicationAsset$outboundSchema;
|
|
584
|
+
})(GetApplicationAsset$ || (exports.GetApplicationAsset$ = GetApplicationAsset$ = {}));
|
|
585
|
+
function getApplicationAssetToJSON(getApplicationAsset) {
|
|
586
|
+
return JSON.stringify(exports.GetApplicationAsset$outboundSchema.parse(getApplicationAsset));
|
|
587
|
+
}
|
|
588
|
+
function getApplicationAssetFromJSON(jsonString) {
|
|
589
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationAsset$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationAsset' from JSON`);
|
|
590
|
+
}
|
|
591
|
+
/** @internal */
|
|
592
|
+
exports.GetApplicationRelationships$inboundSchema = z.object({
|
|
593
|
+
loanDetails: z.lazy(() => exports.GetApplicationLoanDetails$inboundSchema).optional(),
|
|
594
|
+
customers: z.lazy(() => exports.GetApplicationCustomers$inboundSchema).optional(),
|
|
595
|
+
asset: z.lazy(() => exports.GetApplicationAsset$inboundSchema).optional(),
|
|
596
|
+
});
|
|
597
|
+
/** @internal */
|
|
598
|
+
exports.GetApplicationRelationships$outboundSchema = z.object({
|
|
599
|
+
loanDetails: z.lazy(() => exports.GetApplicationLoanDetails$outboundSchema)
|
|
600
|
+
.optional(),
|
|
601
|
+
customers: z.lazy(() => exports.GetApplicationCustomers$outboundSchema).optional(),
|
|
602
|
+
asset: z.lazy(() => exports.GetApplicationAsset$outboundSchema).optional(),
|
|
603
|
+
});
|
|
604
|
+
/**
|
|
605
|
+
* @internal
|
|
606
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
607
|
+
*/
|
|
608
|
+
var GetApplicationRelationships$;
|
|
609
|
+
(function (GetApplicationRelationships$) {
|
|
610
|
+
/** @deprecated use `GetApplicationRelationships$inboundSchema` instead. */
|
|
611
|
+
GetApplicationRelationships$.inboundSchema = exports.GetApplicationRelationships$inboundSchema;
|
|
612
|
+
/** @deprecated use `GetApplicationRelationships$outboundSchema` instead. */
|
|
613
|
+
GetApplicationRelationships$.outboundSchema = exports.GetApplicationRelationships$outboundSchema;
|
|
614
|
+
})(GetApplicationRelationships$ || (exports.GetApplicationRelationships$ = GetApplicationRelationships$ = {}));
|
|
615
|
+
function getApplicationRelationshipsToJSON(getApplicationRelationships) {
|
|
616
|
+
return JSON.stringify(exports.GetApplicationRelationships$outboundSchema.parse(getApplicationRelationships));
|
|
617
|
+
}
|
|
618
|
+
function getApplicationRelationshipsFromJSON(jsonString) {
|
|
619
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationRelationships$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationRelationships' from JSON`);
|
|
620
|
+
}
|
|
621
|
+
/** @internal */
|
|
622
|
+
exports.GetApplicationData$inboundSchema = z.object({
|
|
623
|
+
type: exports.GetApplicationType$inboundSchema,
|
|
624
|
+
id: z.string(),
|
|
625
|
+
attributes: components.ApplicationAttributes$inboundSchema.optional(),
|
|
626
|
+
relationships: z.lazy(() => exports.GetApplicationRelationships$inboundSchema)
|
|
627
|
+
.optional(),
|
|
628
|
+
links: components.Links$inboundSchema.optional(),
|
|
629
|
+
meta: z.record(z.any()).optional(),
|
|
630
|
+
});
|
|
631
|
+
/** @internal */
|
|
632
|
+
exports.GetApplicationData$outboundSchema = z.object({
|
|
633
|
+
type: exports.GetApplicationType$outboundSchema,
|
|
634
|
+
id: z.string(),
|
|
635
|
+
attributes: components.ApplicationAttributes$outboundSchema.optional(),
|
|
636
|
+
relationships: z.lazy(() => exports.GetApplicationRelationships$outboundSchema)
|
|
637
|
+
.optional(),
|
|
638
|
+
links: components.Links$outboundSchema.optional(),
|
|
639
|
+
meta: z.record(z.any()).optional(),
|
|
640
|
+
});
|
|
641
|
+
/**
|
|
642
|
+
* @internal
|
|
643
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
644
|
+
*/
|
|
645
|
+
var GetApplicationData$;
|
|
646
|
+
(function (GetApplicationData$) {
|
|
647
|
+
/** @deprecated use `GetApplicationData$inboundSchema` instead. */
|
|
648
|
+
GetApplicationData$.inboundSchema = exports.GetApplicationData$inboundSchema;
|
|
649
|
+
/** @deprecated use `GetApplicationData$outboundSchema` instead. */
|
|
650
|
+
GetApplicationData$.outboundSchema = exports.GetApplicationData$outboundSchema;
|
|
651
|
+
})(GetApplicationData$ || (exports.GetApplicationData$ = GetApplicationData$ = {}));
|
|
652
|
+
function getApplicationDataToJSON(getApplicationData) {
|
|
653
|
+
return JSON.stringify(exports.GetApplicationData$outboundSchema.parse(getApplicationData));
|
|
654
|
+
}
|
|
655
|
+
function getApplicationDataFromJSON(jsonString) {
|
|
656
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationData$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationData' from JSON`);
|
|
657
|
+
}
|
|
658
|
+
/** @internal */
|
|
659
|
+
exports.GetApplicationAttributes$inboundSchema = z.object({});
|
|
660
|
+
/** @internal */
|
|
661
|
+
exports.GetApplicationAttributes$outboundSchema = z.object({});
|
|
662
|
+
/**
|
|
663
|
+
* @internal
|
|
664
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
665
|
+
*/
|
|
666
|
+
var GetApplicationAttributes$;
|
|
667
|
+
(function (GetApplicationAttributes$) {
|
|
668
|
+
/** @deprecated use `GetApplicationAttributes$inboundSchema` instead. */
|
|
669
|
+
GetApplicationAttributes$.inboundSchema = exports.GetApplicationAttributes$inboundSchema;
|
|
670
|
+
/** @deprecated use `GetApplicationAttributes$outboundSchema` instead. */
|
|
671
|
+
GetApplicationAttributes$.outboundSchema = exports.GetApplicationAttributes$outboundSchema;
|
|
672
|
+
})(GetApplicationAttributes$ || (exports.GetApplicationAttributes$ = GetApplicationAttributes$ = {}));
|
|
673
|
+
function getApplicationAttributesToJSON(getApplicationAttributes) {
|
|
674
|
+
return JSON.stringify(exports.GetApplicationAttributes$outboundSchema.parse(getApplicationAttributes));
|
|
675
|
+
}
|
|
676
|
+
function getApplicationAttributesFromJSON(jsonString) {
|
|
677
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationAttributes$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationAttributes' from JSON`);
|
|
678
|
+
}
|
|
679
|
+
/** @internal */
|
|
680
|
+
exports.GetApplicationData2$inboundSchema = z.object({
|
|
681
|
+
type: z.string(),
|
|
682
|
+
id: z.string(),
|
|
683
|
+
});
|
|
684
|
+
/** @internal */
|
|
685
|
+
exports.GetApplicationData2$outboundSchema = z.object({
|
|
686
|
+
type: z.string(),
|
|
687
|
+
id: z.string(),
|
|
688
|
+
});
|
|
689
|
+
/**
|
|
690
|
+
* @internal
|
|
691
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
692
|
+
*/
|
|
693
|
+
var GetApplicationData2$;
|
|
694
|
+
(function (GetApplicationData2$) {
|
|
695
|
+
/** @deprecated use `GetApplicationData2$inboundSchema` instead. */
|
|
696
|
+
GetApplicationData2$.inboundSchema = exports.GetApplicationData2$inboundSchema;
|
|
697
|
+
/** @deprecated use `GetApplicationData2$outboundSchema` instead. */
|
|
698
|
+
GetApplicationData2$.outboundSchema = exports.GetApplicationData2$outboundSchema;
|
|
699
|
+
})(GetApplicationData2$ || (exports.GetApplicationData2$ = GetApplicationData2$ = {}));
|
|
700
|
+
function getApplicationData2ToJSON(getApplicationData2) {
|
|
701
|
+
return JSON.stringify(exports.GetApplicationData2$outboundSchema.parse(getApplicationData2));
|
|
702
|
+
}
|
|
703
|
+
function getApplicationData2FromJSON(jsonString) {
|
|
704
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationData2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationData2' from JSON`);
|
|
705
|
+
}
|
|
706
|
+
/** @internal */
|
|
707
|
+
exports.GetApplicationData1$inboundSchema = z.object({
|
|
708
|
+
type: z.string(),
|
|
709
|
+
id: z.string(),
|
|
710
|
+
});
|
|
711
|
+
/** @internal */
|
|
712
|
+
exports.GetApplicationData1$outboundSchema = z.object({
|
|
713
|
+
type: z.string(),
|
|
714
|
+
id: z.string(),
|
|
715
|
+
});
|
|
716
|
+
/**
|
|
717
|
+
* @internal
|
|
718
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
719
|
+
*/
|
|
720
|
+
var GetApplicationData1$;
|
|
721
|
+
(function (GetApplicationData1$) {
|
|
722
|
+
/** @deprecated use `GetApplicationData1$inboundSchema` instead. */
|
|
723
|
+
GetApplicationData1$.inboundSchema = exports.GetApplicationData1$inboundSchema;
|
|
724
|
+
/** @deprecated use `GetApplicationData1$outboundSchema` instead. */
|
|
725
|
+
GetApplicationData1$.outboundSchema = exports.GetApplicationData1$outboundSchema;
|
|
726
|
+
})(GetApplicationData1$ || (exports.GetApplicationData1$ = GetApplicationData1$ = {}));
|
|
727
|
+
function getApplicationData1ToJSON(getApplicationData1) {
|
|
728
|
+
return JSON.stringify(exports.GetApplicationData1$outboundSchema.parse(getApplicationData1));
|
|
729
|
+
}
|
|
730
|
+
function getApplicationData1FromJSON(jsonString) {
|
|
731
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationData1$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationData1' from JSON`);
|
|
732
|
+
}
|
|
733
|
+
/** @internal */
|
|
734
|
+
exports.GetApplicationApplicationsData$inboundSchema = z.union([
|
|
735
|
+
z.lazy(() => exports.GetApplicationData1$inboundSchema),
|
|
736
|
+
z.array(z.lazy(() => exports.GetApplicationData2$inboundSchema)),
|
|
737
|
+
]);
|
|
738
|
+
/** @internal */
|
|
739
|
+
exports.GetApplicationApplicationsData$outboundSchema = z.union([
|
|
740
|
+
z.lazy(() => exports.GetApplicationData1$outboundSchema),
|
|
741
|
+
z.array(z.lazy(() => exports.GetApplicationData2$outboundSchema)),
|
|
742
|
+
]);
|
|
743
|
+
/**
|
|
744
|
+
* @internal
|
|
745
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
746
|
+
*/
|
|
747
|
+
var GetApplicationApplicationsData$;
|
|
748
|
+
(function (GetApplicationApplicationsData$) {
|
|
749
|
+
/** @deprecated use `GetApplicationApplicationsData$inboundSchema` instead. */
|
|
750
|
+
GetApplicationApplicationsData$.inboundSchema = exports.GetApplicationApplicationsData$inboundSchema;
|
|
751
|
+
/** @deprecated use `GetApplicationApplicationsData$outboundSchema` instead. */
|
|
752
|
+
GetApplicationApplicationsData$.outboundSchema = exports.GetApplicationApplicationsData$outboundSchema;
|
|
753
|
+
})(GetApplicationApplicationsData$ || (exports.GetApplicationApplicationsData$ = GetApplicationApplicationsData$ = {}));
|
|
754
|
+
function getApplicationApplicationsDataToJSON(getApplicationApplicationsData) {
|
|
755
|
+
return JSON.stringify(exports.GetApplicationApplicationsData$outboundSchema.parse(getApplicationApplicationsData));
|
|
756
|
+
}
|
|
757
|
+
function getApplicationApplicationsDataFromJSON(jsonString) {
|
|
758
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationApplicationsData$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationApplicationsData' from JSON`);
|
|
759
|
+
}
|
|
760
|
+
/** @internal */
|
|
761
|
+
exports.GetApplicationApplicationsRelationships$inboundSchema = z.object({
|
|
762
|
+
data: z.nullable(z.union([
|
|
763
|
+
z.lazy(() => exports.GetApplicationData1$inboundSchema),
|
|
764
|
+
z.array(z.lazy(() => exports.GetApplicationData2$inboundSchema)),
|
|
765
|
+
])),
|
|
766
|
+
links: components.Links$inboundSchema.optional(),
|
|
767
|
+
meta: z.record(z.any()).optional(),
|
|
768
|
+
});
|
|
769
|
+
/** @internal */
|
|
770
|
+
exports.GetApplicationApplicationsRelationships$outboundSchema = z.object({
|
|
771
|
+
data: z.nullable(z.union([
|
|
772
|
+
z.lazy(() => exports.GetApplicationData1$outboundSchema),
|
|
773
|
+
z.array(z.lazy(() => exports.GetApplicationData2$outboundSchema)),
|
|
774
|
+
])),
|
|
775
|
+
links: components.Links$outboundSchema.optional(),
|
|
776
|
+
meta: z.record(z.any()).optional(),
|
|
777
|
+
});
|
|
778
|
+
/**
|
|
779
|
+
* @internal
|
|
780
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
781
|
+
*/
|
|
782
|
+
var GetApplicationApplicationsRelationships$;
|
|
783
|
+
(function (GetApplicationApplicationsRelationships$) {
|
|
784
|
+
/** @deprecated use `GetApplicationApplicationsRelationships$inboundSchema` instead. */
|
|
785
|
+
GetApplicationApplicationsRelationships$.inboundSchema = exports.GetApplicationApplicationsRelationships$inboundSchema;
|
|
786
|
+
/** @deprecated use `GetApplicationApplicationsRelationships$outboundSchema` instead. */
|
|
787
|
+
GetApplicationApplicationsRelationships$.outboundSchema = exports.GetApplicationApplicationsRelationships$outboundSchema;
|
|
788
|
+
})(GetApplicationApplicationsRelationships$ || (exports.GetApplicationApplicationsRelationships$ = GetApplicationApplicationsRelationships$ = {}));
|
|
789
|
+
function getApplicationApplicationsRelationshipsToJSON(getApplicationApplicationsRelationships) {
|
|
790
|
+
return JSON.stringify(exports.GetApplicationApplicationsRelationships$outboundSchema.parse(getApplicationApplicationsRelationships));
|
|
791
|
+
}
|
|
792
|
+
function getApplicationApplicationsRelationshipsFromJSON(jsonString) {
|
|
793
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationApplicationsRelationships$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationApplicationsRelationships' from JSON`);
|
|
794
|
+
}
|
|
795
|
+
/** @internal */
|
|
796
|
+
exports.GetApplicationIncluded$inboundSchema = z.object({
|
|
797
|
+
type: z.string(),
|
|
798
|
+
id: z.string(),
|
|
799
|
+
attributes: z.lazy(() => exports.GetApplicationAttributes$inboundSchema).optional(),
|
|
800
|
+
relationships: z.record(z.lazy(() => exports.GetApplicationApplicationsRelationships$inboundSchema)).optional(),
|
|
801
|
+
links: components.Links$inboundSchema.optional(),
|
|
802
|
+
meta: z.record(z.any()).optional(),
|
|
803
|
+
});
|
|
804
|
+
/** @internal */
|
|
805
|
+
exports.GetApplicationIncluded$outboundSchema = z.object({
|
|
806
|
+
type: z.string(),
|
|
807
|
+
id: z.string(),
|
|
808
|
+
attributes: z.lazy(() => exports.GetApplicationAttributes$outboundSchema).optional(),
|
|
809
|
+
relationships: z.record(z.lazy(() => exports.GetApplicationApplicationsRelationships$outboundSchema)).optional(),
|
|
810
|
+
links: components.Links$outboundSchema.optional(),
|
|
811
|
+
meta: z.record(z.any()).optional(),
|
|
812
|
+
});
|
|
813
|
+
/**
|
|
814
|
+
* @internal
|
|
815
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
816
|
+
*/
|
|
817
|
+
var GetApplicationIncluded$;
|
|
818
|
+
(function (GetApplicationIncluded$) {
|
|
819
|
+
/** @deprecated use `GetApplicationIncluded$inboundSchema` instead. */
|
|
820
|
+
GetApplicationIncluded$.inboundSchema = exports.GetApplicationIncluded$inboundSchema;
|
|
821
|
+
/** @deprecated use `GetApplicationIncluded$outboundSchema` instead. */
|
|
822
|
+
GetApplicationIncluded$.outboundSchema = exports.GetApplicationIncluded$outboundSchema;
|
|
823
|
+
})(GetApplicationIncluded$ || (exports.GetApplicationIncluded$ = GetApplicationIncluded$ = {}));
|
|
824
|
+
function getApplicationIncludedToJSON(getApplicationIncluded) {
|
|
825
|
+
return JSON.stringify(exports.GetApplicationIncluded$outboundSchema.parse(getApplicationIncluded));
|
|
826
|
+
}
|
|
827
|
+
function getApplicationIncludedFromJSON(jsonString) {
|
|
828
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationIncluded$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationIncluded' from JSON`);
|
|
829
|
+
}
|
|
830
|
+
/** @internal */
|
|
831
|
+
exports.GetApplicationResponseBody$inboundSchema = z.object({
|
|
832
|
+
data: z.lazy(() => exports.GetApplicationData$inboundSchema),
|
|
833
|
+
included: z.array(z.lazy(() => exports.GetApplicationIncluded$inboundSchema))
|
|
834
|
+
.optional(),
|
|
835
|
+
links: components.Links$inboundSchema.optional(),
|
|
836
|
+
});
|
|
837
|
+
/** @internal */
|
|
838
|
+
exports.GetApplicationResponseBody$outboundSchema = z.object({
|
|
839
|
+
data: z.lazy(() => exports.GetApplicationData$outboundSchema),
|
|
840
|
+
included: z.array(z.lazy(() => exports.GetApplicationIncluded$outboundSchema))
|
|
841
|
+
.optional(),
|
|
842
|
+
links: components.Links$outboundSchema.optional(),
|
|
843
|
+
});
|
|
844
|
+
/**
|
|
845
|
+
* @internal
|
|
846
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
847
|
+
*/
|
|
848
|
+
var GetApplicationResponseBody$;
|
|
849
|
+
(function (GetApplicationResponseBody$) {
|
|
850
|
+
/** @deprecated use `GetApplicationResponseBody$inboundSchema` instead. */
|
|
851
|
+
GetApplicationResponseBody$.inboundSchema = exports.GetApplicationResponseBody$inboundSchema;
|
|
852
|
+
/** @deprecated use `GetApplicationResponseBody$outboundSchema` instead. */
|
|
853
|
+
GetApplicationResponseBody$.outboundSchema = exports.GetApplicationResponseBody$outboundSchema;
|
|
854
|
+
})(GetApplicationResponseBody$ || (exports.GetApplicationResponseBody$ = GetApplicationResponseBody$ = {}));
|
|
855
|
+
function getApplicationResponseBodyToJSON(getApplicationResponseBody) {
|
|
856
|
+
return JSON.stringify(exports.GetApplicationResponseBody$outboundSchema.parse(getApplicationResponseBody));
|
|
857
|
+
}
|
|
858
|
+
function getApplicationResponseBodyFromJSON(jsonString) {
|
|
859
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.GetApplicationResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetApplicationResponseBody' from JSON`);
|
|
860
|
+
}
|
|
861
|
+
//# sourceMappingURL=getapplication.js.map
|