@financeable/aggregation 0.6.1 → 0.6.15

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 (73) hide show
  1. package/FUNCTIONS.md +2 -2
  2. package/README.md +8 -8
  3. package/docs/sdks/applications/README.md +266 -16
  4. package/docs/sdks/oauthtoken/README.md +5 -5
  5. package/docs/sdks/supportingdocuments/README.md +4 -4
  6. package/funcs/{oauthTokenOauthToken.d.ts → oauthTokenGet.d.ts} +2 -2
  7. package/funcs/oauthTokenGet.d.ts.map +1 -0
  8. package/funcs/{oauthTokenOauthToken.js → oauthTokenGet.js} +3 -3
  9. package/funcs/oauthTokenGet.js.map +1 -0
  10. package/jsr.json +1 -1
  11. package/lib/config.d.ts +3 -3
  12. package/lib/config.js +3 -3
  13. package/lib/config.js.map +1 -1
  14. package/models/components/addressattributes.d.ts +2 -2
  15. package/models/components/addressattributes.d.ts.map +1 -1
  16. package/models/components/addressattributes.js +2 -2
  17. package/models/components/addressattributes.js.map +1 -1
  18. package/models/components/commercialsecuredapplicationpayload.d.ts +2 -2
  19. package/models/components/commercialsecuredapplicationpayload.d.ts.map +1 -1
  20. package/models/components/commercialsecuredapplicationpayload.js +2 -2
  21. package/models/components/commercialsecuredapplicationpayload.js.map +1 -1
  22. package/models/components/commercialsecuredapplicationresource.d.ts +4 -4
  23. package/models/components/commercialsecuredapplicationresource.d.ts.map +1 -1
  24. package/models/components/commercialsecuredapplicationresource.js +4 -4
  25. package/models/components/commercialsecuredapplicationresource.js.map +1 -1
  26. package/models/components/consumersecuredapplicationpayload.d.ts +2 -2
  27. package/models/components/consumersecuredapplicationpayload.d.ts.map +1 -1
  28. package/models/components/consumersecuredapplicationpayload.js +2 -2
  29. package/models/components/consumersecuredapplicationpayload.js.map +1 -1
  30. package/models/components/consumersecuredapplicationresource.d.ts +4 -4
  31. package/models/components/consumersecuredapplicationresource.d.ts.map +1 -1
  32. package/models/components/consumersecuredapplicationresource.js +4 -4
  33. package/models/components/consumersecuredapplicationresource.js.map +1 -1
  34. package/models/components/consumersecuredloanassetattributes.d.ts +2 -2
  35. package/models/components/consumersecuredloanassetattributes.d.ts.map +1 -1
  36. package/models/components/consumersecuredloanassetattributes.js +2 -2
  37. package/models/components/consumersecuredloanassetattributes.js.map +1 -1
  38. package/models/components/customerattributes.d.ts +2 -2
  39. package/models/components/customerattributes.d.ts.map +1 -1
  40. package/models/components/customerattributes.js +2 -2
  41. package/models/components/customerattributes.js.map +1 -1
  42. package/models/components/entityattributes.d.ts +2 -2
  43. package/models/components/entityattributes.d.ts.map +1 -1
  44. package/models/components/entityattributes.js +2 -2
  45. package/models/components/entityattributes.js.map +1 -1
  46. package/models/components/loandetailsattributes.d.ts +2 -2
  47. package/models/components/loandetailsattributes.d.ts.map +1 -1
  48. package/models/components/loandetailsattributes.js +2 -2
  49. package/models/components/loandetailsattributes.js.map +1 -1
  50. package/models/components/supportingdocumentattributes.d.ts +2 -2
  51. package/models/components/supportingdocumentattributes.d.ts.map +1 -1
  52. package/models/components/supportingdocumentattributes.js +2 -2
  53. package/models/components/supportingdocumentattributes.js.map +1 -1
  54. package/package.json +1 -1
  55. package/sdk/oauthtoken.d.ts +1 -1
  56. package/sdk/oauthtoken.d.ts.map +1 -1
  57. package/sdk/oauthtoken.js +3 -3
  58. package/sdk/oauthtoken.js.map +1 -1
  59. package/src/funcs/{oauthTokenOauthToken.ts → oauthTokenGet.ts} +1 -1
  60. package/src/lib/config.ts +3 -3
  61. package/src/models/components/addressattributes.ts +4 -4
  62. package/src/models/components/commercialsecuredapplicationpayload.ts +4 -4
  63. package/src/models/components/commercialsecuredapplicationresource.ts +8 -8
  64. package/src/models/components/consumersecuredapplicationpayload.ts +4 -4
  65. package/src/models/components/consumersecuredapplicationresource.ts +8 -8
  66. package/src/models/components/consumersecuredloanassetattributes.ts +4 -4
  67. package/src/models/components/customerattributes.ts +4 -4
  68. package/src/models/components/entityattributes.ts +4 -4
  69. package/src/models/components/loandetailsattributes.ts +4 -4
  70. package/src/models/components/supportingdocumentattributes.ts +4 -4
  71. package/src/sdk/oauthtoken.ts +3 -3
  72. package/funcs/oauthTokenOauthToken.d.ts.map +0 -1
  73. package/funcs/oauthTokenOauthToken.js.map +0 -1
@@ -3,7 +3,7 @@ import { Result as SafeParseResult } from "../../types/fp.js";
3
3
  import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
4
  import { DocumentType } from "./documenttype.js";
5
5
  export type SupportingDocumentAttributes = {
6
- id: string;
6
+ id?: string | undefined;
7
7
  /**
8
8
  * Must include the extension, e.g: 'Privacy agreement.pdf'
9
9
  */
@@ -17,7 +17,7 @@ export type SupportingDocumentAttributes = {
17
17
  export declare const SupportingDocumentAttributes$inboundSchema: z.ZodType<SupportingDocumentAttributes, z.ZodTypeDef, unknown>;
18
18
  /** @internal */
19
19
  export type SupportingDocumentAttributes$Outbound = {
20
- id: string;
20
+ id?: string | undefined;
21
21
  filename: string;
22
22
  documentType: string;
23
23
  };
@@ -1 +1 @@
1
- {"version":3,"file":"supportingdocumentattributes.d.ts","sourceRoot":"","sources":["../../src/models/components/supportingdocumentattributes.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,YAAY,EAGb,MAAM,mBAAmB,CAAC;AAE3B,MAAM,MAAM,4BAA4B,GAAG;IACzC,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;CAC5B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAChE,4BAA4B,EAC5B,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,qCAAqC,GAAG;IAClD,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,qCAAqC,EACrC,CAAC,CAAC,UAAU,EACZ,4BAA4B,CAK5B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,6BAA6B,CAAC;IAC7C,4EAA4E;IACrE,MAAM,aAAa,gEAA6C,CAAC;IACxE,6EAA6E;IACtE,MAAM,cAAc,8FAA8C,CAAC;IAC1E,uEAAuE;IACvE,KAAY,QAAQ,GAAG,qCAAqC,CAAC;CAC9D;AAED,wBAAgB,kCAAkC,CAChD,4BAA4B,EAAE,4BAA4B,GACzD,MAAM,CAMR;AAED,wBAAgB,oCAAoC,CAClD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,4BAA4B,EAAE,kBAAkB,CAAC,CAMnE"}
1
+ {"version":3,"file":"supportingdocumentattributes.d.ts","sourceRoot":"","sources":["../../src/models/components/supportingdocumentattributes.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,YAAY,EAGb,MAAM,mBAAmB,CAAC;AAE3B,MAAM,MAAM,4BAA4B,GAAG;IACzC,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,YAAY,EAAE,YAAY,CAAC;CAC5B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAChE,4BAA4B,EAC5B,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,qCAAqC,GAAG;IAClD,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,qCAAqC,EACrC,CAAC,CAAC,UAAU,EACZ,4BAA4B,CAK5B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,6BAA6B,CAAC;IAC7C,4EAA4E;IACrE,MAAM,aAAa,gEAA6C,CAAC;IACxE,6EAA6E;IACtE,MAAM,cAAc,8FAA8C,CAAC;IAC1E,uEAAuE;IACvE,KAAY,QAAQ,GAAG,qCAAqC,CAAC;CAC9D;AAED,wBAAgB,kCAAkC,CAChD,4BAA4B,EAAE,4BAA4B,GACzD,MAAM,CAMR;AAED,wBAAgB,oCAAoC,CAClD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,4BAA4B,EAAE,kBAAkB,CAAC,CAMnE"}
@@ -44,13 +44,13 @@ const schemas_js_1 = require("../../lib/schemas.js");
44
44
  const documenttype_js_1 = require("./documenttype.js");
45
45
  /** @internal */
46
46
  exports.SupportingDocumentAttributes$inboundSchema = z.object({
47
- id: z.string(),
47
+ id: z.string().optional(),
48
48
  filename: z.string(),
49
49
  documentType: documenttype_js_1.DocumentType$inboundSchema,
50
50
  });
51
51
  /** @internal */
52
52
  exports.SupportingDocumentAttributes$outboundSchema = z.object({
53
- id: z.string(),
53
+ id: z.string().optional(),
54
54
  filename: z.string(),
55
55
  documentType: documenttype_js_1.DocumentType$outboundSchema,
56
56
  });
@@ -1 +1 @@
1
- {"version":3,"file":"supportingdocumentattributes.js","sourceRoot":"","sources":["../../src/models/components/supportingdocumentattributes.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkEH,gFAQC;AAED,oFAQC;AAlFD,uCAAyB;AACzB,qDAAiD;AAGjD,uDAI2B;AAc3B,gBAAgB;AACH,QAAA,0CAA0C,GAInD,CAAC,CAAC,MAAM,CAAC;IACX,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,YAAY,EAAE,4CAA0B;CACzC,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,YAAY,EAAE,6CAA2B;CAC1C,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,6BAA6B,CAO7C;AAPD,WAAiB,6BAA6B;IAC5C,4EAA4E;IAC/D,2CAAa,GAAG,kDAA0C,CAAC;IACxE,6EAA6E;IAChE,4CAAc,GAAG,mDAA2C,CAAC;AAG5E,CAAC,EAPgB,6BAA6B,6CAA7B,6BAA6B,QAO7C;AAED,SAAgB,kCAAkC,CAChD,4BAA0D;IAE1D,OAAO,IAAI,CAAC,SAAS,CACnB,mDAA2C,CAAC,KAAK,CAC/C,4BAA4B,CAC7B,CACF,CAAC;AACJ,CAAC;AAED,SAAgB,oCAAoC,CAClD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,kDAA0C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACtE,0DAA0D,CAC3D,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"supportingdocumentattributes.js","sourceRoot":"","sources":["../../src/models/components/supportingdocumentattributes.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkEH,gFAQC;AAED,oFAQC;AAlFD,uCAAyB;AACzB,qDAAiD;AAGjD,uDAI2B;AAc3B,gBAAgB;AACH,QAAA,0CAA0C,GAInD,CAAC,CAAC,MAAM,CAAC;IACX,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,YAAY,EAAE,4CAA0B;CACzC,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,YAAY,EAAE,6CAA2B;CAC1C,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,6BAA6B,CAO7C;AAPD,WAAiB,6BAA6B;IAC5C,4EAA4E;IAC/D,2CAAa,GAAG,kDAA0C,CAAC;IACxE,6EAA6E;IAChE,4CAAc,GAAG,mDAA2C,CAAC;AAG5E,CAAC,EAPgB,6BAA6B,6CAA7B,6BAA6B,QAO7C;AAED,SAAgB,kCAAkC,CAChD,4BAA0D;IAE1D,OAAO,IAAI,CAAC,SAAS,CACnB,mDAA2C,CAAC,KAAK,CAC/C,4BAA4B,CAC7B,CACF,CAAC;AACJ,CAAC;AAED,SAAgB,oCAAoC,CAClD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,kDAA0C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACtE,0DAA0D,CAC3D,CAAC;AACJ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@financeable/aggregation",
3
- "version": "0.6.1",
3
+ "version": "0.6.15",
4
4
  "author": "Financeable",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
@@ -4,6 +4,6 @@ export declare class OauthToken extends ClientSDK {
4
4
  /**
5
5
  * Obtain an OAuth client_credentials token
6
6
  */
7
- oauthToken(request: components.TokenRequest, options?: RequestOptions): Promise<components.TokenResponse>;
7
+ get(request: components.TokenRequest, options?: RequestOptions): Promise<components.TokenResponse>;
8
8
  }
9
9
  //# sourceMappingURL=oauthtoken.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"oauthtoken.d.ts","sourceRoot":"","sources":["../src/sdk/oauthtoken.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,UAAW,SAAQ,SAAS;IACvC;;OAEG;IACG,UAAU,CACd,OAAO,EAAE,UAAU,CAAC,YAAY,EAChC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,aAAa,CAAC;CAOrC"}
1
+ {"version":3,"file":"oauthtoken.d.ts","sourceRoot":"","sources":["../src/sdk/oauthtoken.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,UAAW,SAAQ,SAAS;IACvC;;OAEG;IACG,GAAG,CACP,OAAO,EAAE,UAAU,CAAC,YAAY,EAChC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,aAAa,CAAC;CAOrC"}
package/sdk/oauthtoken.js CHANGED
@@ -4,15 +4,15 @@
4
4
  */
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.OauthToken = void 0;
7
- const oauthTokenOauthToken_js_1 = require("../funcs/oauthTokenOauthToken.js");
7
+ const oauthTokenGet_js_1 = require("../funcs/oauthTokenGet.js");
8
8
  const sdks_js_1 = require("../lib/sdks.js");
9
9
  const fp_js_1 = require("../types/fp.js");
10
10
  class OauthToken extends sdks_js_1.ClientSDK {
11
11
  /**
12
12
  * Obtain an OAuth client_credentials token
13
13
  */
14
- async oauthToken(request, options) {
15
- return (0, fp_js_1.unwrapAsync)((0, oauthTokenOauthToken_js_1.oauthTokenOauthToken)(this, request, options));
14
+ async get(request, options) {
15
+ return (0, fp_js_1.unwrapAsync)((0, oauthTokenGet_js_1.oauthTokenGet)(this, request, options));
16
16
  }
17
17
  }
18
18
  exports.OauthToken = OauthToken;
@@ -1 +1 @@
1
- {"version":3,"file":"oauthtoken.js","sourceRoot":"","sources":["../src/sdk/oauthtoken.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,8EAAwE;AACxE,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,UAAW,SAAQ,mBAAS;IACvC;;OAEG;IACH,KAAK,CAAC,UAAU,CACd,OAAgC,EAChC,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,8CAAoB,EACrC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAdD,gCAcC"}
1
+ {"version":3,"file":"oauthtoken.js","sourceRoot":"","sources":["../src/sdk/oauthtoken.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,gEAA0D;AAC1D,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,UAAW,SAAQ,mBAAS;IACvC;;OAEG;IACH,KAAK,CAAC,GAAG,CACP,OAAgC,EAChC,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,gCAAa,EAC9B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAdD,gCAcC"}
@@ -26,7 +26,7 @@ import { Result } from "../types/fp.js";
26
26
  /**
27
27
  * Obtain an OAuth client_credentials token
28
28
  */
29
- export function oauthTokenOauthToken(
29
+ export function oauthTokenGet(
30
30
  client: FinanceableCore,
31
31
  request: components.TokenRequest,
32
32
  options?: RequestOptions,
package/src/lib/config.ts CHANGED
@@ -54,8 +54,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
54
54
  export const SDK_METADATA = {
55
55
  language: "typescript",
56
56
  openapiDocVersion: "0.4.0",
57
- sdkVersion: "0.6.1",
58
- genVersion: "2.599.0",
57
+ sdkVersion: "0.6.15",
58
+ genVersion: "2.603.1",
59
59
  userAgent:
60
- "speakeasy-sdk/typescript 0.6.1 2.599.0 0.4.0 @financeable/aggregation",
60
+ "speakeasy-sdk/typescript 0.6.15 2.603.1 0.4.0 @financeable/aggregation",
61
61
  } as const;
@@ -22,7 +22,7 @@ export type AddressAttributesStatus = ClosedEnum<
22
22
  >;
23
23
 
24
24
  export type AddressAttributes = {
25
- id: string;
25
+ id?: string | undefined;
26
26
  unitNumber?: number | undefined;
27
27
  addressType: string;
28
28
  fullAddress: string;
@@ -67,7 +67,7 @@ export const AddressAttributes$inboundSchema: z.ZodType<
67
67
  z.ZodTypeDef,
68
68
  unknown
69
69
  > = z.object({
70
- id: z.string(),
70
+ id: z.string().optional(),
71
71
  unitNumber: z.number().int().optional(),
72
72
  addressType: z.string(),
73
73
  fullAddress: z.string(),
@@ -87,7 +87,7 @@ export const AddressAttributes$inboundSchema: z.ZodType<
87
87
 
88
88
  /** @internal */
89
89
  export type AddressAttributes$Outbound = {
90
- id: string;
90
+ id?: string | undefined;
91
91
  unitNumber?: number | undefined;
92
92
  addressType: string;
93
93
  fullAddress: string;
@@ -111,7 +111,7 @@ export const AddressAttributes$outboundSchema: z.ZodType<
111
111
  z.ZodTypeDef,
112
112
  AddressAttributes
113
113
  > = z.object({
114
- id: z.string(),
114
+ id: z.string().optional(),
115
115
  unitNumber: z.number().int().optional(),
116
116
  addressType: z.string(),
117
117
  fullAddress: z.string(),
@@ -62,7 +62,7 @@ export type Attributes = {
62
62
  /**
63
63
  * Email address of the broker to be associated with this application.
64
64
  */
65
- associatedBrokerEmail?: string | undefined;
65
+ associatedBrokerEmail: string;
66
66
  };
67
67
 
68
68
  export type CommercialSecuredApplicationPayload = {
@@ -127,13 +127,13 @@ export const Attributes$inboundSchema: z.ZodType<
127
127
  unknown
128
128
  > = z.object({
129
129
  applicationType: ApplicationType$inboundSchema,
130
- associatedBrokerEmail: z.string().optional(),
130
+ associatedBrokerEmail: z.string(),
131
131
  });
132
132
 
133
133
  /** @internal */
134
134
  export type Attributes$Outbound = {
135
135
  applicationType: string;
136
- associatedBrokerEmail?: string | undefined;
136
+ associatedBrokerEmail: string;
137
137
  };
138
138
 
139
139
  /** @internal */
@@ -143,7 +143,7 @@ export const Attributes$outboundSchema: z.ZodType<
143
143
  Attributes
144
144
  > = z.object({
145
145
  applicationType: ApplicationType$outboundSchema,
146
- associatedBrokerEmail: z.string().optional(),
146
+ associatedBrokerEmail: z.string(),
147
147
  });
148
148
 
149
149
  /**
@@ -52,7 +52,7 @@ export type CommercialSecuredApplicationResourceAttributes = {
52
52
  /**
53
53
  * Full identifier of the application. Not visible within the web application.
54
54
  */
55
- id: string;
55
+ id?: string | undefined;
56
56
  /**
57
57
  * Human readable & easily communicated identifier of the application. Visible within the web application.
58
58
  */
@@ -68,7 +68,7 @@ export type CommercialSecuredApplicationResourceAttributes = {
68
68
  /**
69
69
  * Email address of the broker to be associated with this application.
70
70
  */
71
- associatedBrokerEmail?: string | undefined;
71
+ associatedBrokerEmail: string;
72
72
  /**
73
73
  * Creation timestamp
74
74
  */
@@ -150,23 +150,23 @@ export const CommercialSecuredApplicationResourceAttributes$inboundSchema:
150
150
  z.ZodTypeDef,
151
151
  unknown
152
152
  > = z.object({
153
- id: z.string(),
153
+ id: z.string().optional(),
154
154
  humanId: z.string(),
155
155
  applicationType:
156
156
  CommercialSecuredApplicationResourceApplicationType$inboundSchema,
157
157
  status: ApplicationStatus$inboundSchema,
158
- associatedBrokerEmail: z.string().optional(),
158
+ associatedBrokerEmail: z.string(),
159
159
  createdAt: z.string().optional(),
160
160
  updatedAt: z.string().optional(),
161
161
  });
162
162
 
163
163
  /** @internal */
164
164
  export type CommercialSecuredApplicationResourceAttributes$Outbound = {
165
- id: string;
165
+ id?: string | undefined;
166
166
  humanId: string;
167
167
  applicationType: string;
168
168
  status: string;
169
- associatedBrokerEmail?: string | undefined;
169
+ associatedBrokerEmail: string;
170
170
  createdAt?: string | undefined;
171
171
  updatedAt?: string | undefined;
172
172
  };
@@ -178,12 +178,12 @@ export const CommercialSecuredApplicationResourceAttributes$outboundSchema:
178
178
  z.ZodTypeDef,
179
179
  CommercialSecuredApplicationResourceAttributes
180
180
  > = z.object({
181
- id: z.string(),
181
+ id: z.string().optional(),
182
182
  humanId: z.string(),
183
183
  applicationType:
184
184
  CommercialSecuredApplicationResourceApplicationType$outboundSchema,
185
185
  status: ApplicationStatus$outboundSchema,
186
- associatedBrokerEmail: z.string().optional(),
186
+ associatedBrokerEmail: z.string(),
187
187
  createdAt: z.string().optional(),
188
188
  updatedAt: z.string().optional(),
189
189
  });
@@ -64,7 +64,7 @@ export type ConsumerSecuredApplicationPayloadAttributes = {
64
64
  /**
65
65
  * Email address of the broker to be associated with this application.
66
66
  */
67
- associatedBrokerEmail?: string | undefined;
67
+ associatedBrokerEmail: string;
68
68
  };
69
69
 
70
70
  export type ConsumerSecuredApplicationPayload = {
@@ -134,13 +134,13 @@ export const ConsumerSecuredApplicationPayloadAttributes$inboundSchema:
134
134
  > = z.object({
135
135
  applicationType:
136
136
  ConsumerSecuredApplicationPayloadApplicationType$inboundSchema,
137
- associatedBrokerEmail: z.string().optional(),
137
+ associatedBrokerEmail: z.string(),
138
138
  });
139
139
 
140
140
  /** @internal */
141
141
  export type ConsumerSecuredApplicationPayloadAttributes$Outbound = {
142
142
  applicationType: string;
143
- associatedBrokerEmail?: string | undefined;
143
+ associatedBrokerEmail: string;
144
144
  };
145
145
 
146
146
  /** @internal */
@@ -152,7 +152,7 @@ export const ConsumerSecuredApplicationPayloadAttributes$outboundSchema:
152
152
  > = z.object({
153
153
  applicationType:
154
154
  ConsumerSecuredApplicationPayloadApplicationType$outboundSchema,
155
- associatedBrokerEmail: z.string().optional(),
155
+ associatedBrokerEmail: z.string(),
156
156
  });
157
157
 
158
158
  /**
@@ -52,7 +52,7 @@ export type ConsumerSecuredApplicationResourceAttributes = {
52
52
  /**
53
53
  * Full identifier of the application. Not visible within the web application.
54
54
  */
55
- id: string;
55
+ id?: string | undefined;
56
56
  /**
57
57
  * Human readable & easily communicated identifier of the application. Visible within the web application.
58
58
  */
@@ -68,7 +68,7 @@ export type ConsumerSecuredApplicationResourceAttributes = {
68
68
  /**
69
69
  * Email address of the broker to be associated with this application.
70
70
  */
71
- associatedBrokerEmail?: string | undefined;
71
+ associatedBrokerEmail: string;
72
72
  /**
73
73
  * Creation timestamp
74
74
  */
@@ -151,23 +151,23 @@ export const ConsumerSecuredApplicationResourceAttributes$inboundSchema:
151
151
  z.ZodTypeDef,
152
152
  unknown
153
153
  > = z.object({
154
- id: z.string(),
154
+ id: z.string().optional(),
155
155
  humanId: z.string(),
156
156
  applicationType:
157
157
  ConsumerSecuredApplicationResourceApplicationType$inboundSchema,
158
158
  status: ApplicationStatus$inboundSchema,
159
- associatedBrokerEmail: z.string().optional(),
159
+ associatedBrokerEmail: z.string(),
160
160
  createdAt: z.string().optional(),
161
161
  updatedAt: z.string().optional(),
162
162
  });
163
163
 
164
164
  /** @internal */
165
165
  export type ConsumerSecuredApplicationResourceAttributes$Outbound = {
166
- id: string;
166
+ id?: string | undefined;
167
167
  humanId: string;
168
168
  applicationType: string;
169
169
  status: string;
170
- associatedBrokerEmail?: string | undefined;
170
+ associatedBrokerEmail: string;
171
171
  createdAt?: string | undefined;
172
172
  updatedAt?: string | undefined;
173
173
  };
@@ -179,12 +179,12 @@ export const ConsumerSecuredApplicationResourceAttributes$outboundSchema:
179
179
  z.ZodTypeDef,
180
180
  ConsumerSecuredApplicationResourceAttributes
181
181
  > = z.object({
182
- id: z.string(),
182
+ id: z.string().optional(),
183
183
  humanId: z.string(),
184
184
  applicationType:
185
185
  ConsumerSecuredApplicationResourceApplicationType$outboundSchema,
186
186
  status: ApplicationStatus$outboundSchema,
187
- associatedBrokerEmail: z.string().optional(),
187
+ associatedBrokerEmail: z.string(),
188
188
  createdAt: z.string().optional(),
189
189
  updatedAt: z.string().optional(),
190
190
  });
@@ -52,7 +52,7 @@ export type ConsumerSecuredLoanAssetAttributesRegistrationState = ClosedEnum<
52
52
  * The asset to be obtained by the customer, using the proposed loan financing.
53
53
  */
54
54
  export type ConsumerSecuredLoanAssetAttributes = {
55
- id: string;
55
+ id?: string | undefined;
56
56
  /**
57
57
  * Current age of asset as number (integer) of years
58
58
  */
@@ -205,7 +205,7 @@ export const ConsumerSecuredLoanAssetAttributes$inboundSchema: z.ZodType<
205
205
  z.ZodTypeDef,
206
206
  unknown
207
207
  > = z.object({
208
- id: z.string(),
208
+ id: z.string().optional(),
209
209
  ageOfAsset: z.number().int(),
210
210
  ageOfAssetAtEnd: z.number().int(),
211
211
  condition: ConsumerSecuredLoanAssetAttributesCondition$inboundSchema,
@@ -236,7 +236,7 @@ export const ConsumerSecuredLoanAssetAttributes$inboundSchema: z.ZodType<
236
236
 
237
237
  /** @internal */
238
238
  export type ConsumerSecuredLoanAssetAttributes$Outbound = {
239
- id: string;
239
+ id?: string | undefined;
240
240
  ageOfAsset: number;
241
241
  ageOfAssetAtEnd: number;
242
242
  condition: string;
@@ -269,7 +269,7 @@ export const ConsumerSecuredLoanAssetAttributes$outboundSchema: z.ZodType<
269
269
  z.ZodTypeDef,
270
270
  ConsumerSecuredLoanAssetAttributes
271
271
  > = z.object({
272
- id: z.string(),
272
+ id: z.string().optional(),
273
273
  ageOfAsset: z.number().int(),
274
274
  ageOfAssetAtEnd: z.number().int(),
275
275
  condition: ConsumerSecuredLoanAssetAttributesCondition$outboundSchema,
@@ -21,7 +21,7 @@ import {
21
21
  * A customer of the proposed financing
22
22
  */
23
23
  export type CustomerAttributes = {
24
- id: string;
24
+ id?: string | undefined;
25
25
  /**
26
26
  * Title of the customer
27
27
  */
@@ -70,7 +70,7 @@ export const CustomerAttributes$inboundSchema: z.ZodType<
70
70
  z.ZodTypeDef,
71
71
  unknown
72
72
  > = z.object({
73
- id: z.string(),
73
+ id: z.string().optional(),
74
74
  title: CustomerTitle$inboundSchema,
75
75
  firstName: z.string(),
76
76
  middleNames: z.string().optional(),
@@ -85,7 +85,7 @@ export const CustomerAttributes$inboundSchema: z.ZodType<
85
85
 
86
86
  /** @internal */
87
87
  export type CustomerAttributes$Outbound = {
88
- id: string;
88
+ id?: string | undefined;
89
89
  title: string;
90
90
  firstName: string;
91
91
  middleNames?: string | undefined;
@@ -104,7 +104,7 @@ export const CustomerAttributes$outboundSchema: z.ZodType<
104
104
  z.ZodTypeDef,
105
105
  CustomerAttributes
106
106
  > = z.object({
107
- id: z.string(),
107
+ id: z.string().optional(),
108
108
  title: CustomerTitle$outboundSchema,
109
109
  firstName: z.string(),
110
110
  middleNames: z.string().optional(),
@@ -8,7 +8,7 @@ import { Result as SafeParseResult } from "../../types/fp.js";
8
8
  import { SDKValidationError } from "../errors/sdkvalidationerror.js";
9
9
 
10
10
  export type EntityAttributes = {
11
- id: string;
11
+ id?: string | undefined;
12
12
  entityName: string;
13
13
  abn: string;
14
14
  turnover?: number | undefined;
@@ -23,7 +23,7 @@ export const EntityAttributes$inboundSchema: z.ZodType<
23
23
  z.ZodTypeDef,
24
24
  unknown
25
25
  > = z.object({
26
- id: z.string(),
26
+ id: z.string().optional(),
27
27
  entityName: z.string(),
28
28
  abn: z.string(),
29
29
  turnover: z.number().int().optional(),
@@ -34,7 +34,7 @@ export const EntityAttributes$inboundSchema: z.ZodType<
34
34
 
35
35
  /** @internal */
36
36
  export type EntityAttributes$Outbound = {
37
- id: string;
37
+ id?: string | undefined;
38
38
  entityName: string;
39
39
  abn: string;
40
40
  turnover?: number | undefined;
@@ -49,7 +49,7 @@ export const EntityAttributes$outboundSchema: z.ZodType<
49
49
  z.ZodTypeDef,
50
50
  EntityAttributes
51
51
  > = z.object({
52
- id: z.string(),
52
+ id: z.string().optional(),
53
53
  entityName: z.string(),
54
54
  abn: z.string(),
55
55
  turnover: z.number().int().optional(),
@@ -21,7 +21,7 @@ import {
21
21
  * Loan details model
22
22
  */
23
23
  export type LoanDetailsAttributes = {
24
- id: string;
24
+ id?: string | undefined;
25
25
  /**
26
26
  * Number of repayments as integer
27
27
  */
@@ -94,7 +94,7 @@ export const LoanDetailsAttributes$inboundSchema: z.ZodType<
94
94
  z.ZodTypeDef,
95
95
  unknown
96
96
  > = z.object({
97
- id: z.string(),
97
+ id: z.string().optional(),
98
98
  repayments: z.number().int().optional(),
99
99
  repaymentFrequency: FrequencyType$inboundSchema.optional(),
100
100
  repaymentStructure: RepaymentStructure$inboundSchema.optional(),
@@ -115,7 +115,7 @@ export const LoanDetailsAttributes$inboundSchema: z.ZodType<
115
115
 
116
116
  /** @internal */
117
117
  export type LoanDetailsAttributes$Outbound = {
118
- id: string;
118
+ id?: string | undefined;
119
119
  repayments?: number | undefined;
120
120
  repaymentFrequency?: string | undefined;
121
121
  repaymentStructure?: string | undefined;
@@ -140,7 +140,7 @@ export const LoanDetailsAttributes$outboundSchema: z.ZodType<
140
140
  z.ZodTypeDef,
141
141
  LoanDetailsAttributes
142
142
  > = z.object({
143
- id: z.string(),
143
+ id: z.string().optional(),
144
144
  repayments: z.number().int().optional(),
145
145
  repaymentFrequency: FrequencyType$outboundSchema.optional(),
146
146
  repaymentStructure: RepaymentStructure$outboundSchema.optional(),
@@ -13,7 +13,7 @@ import {
13
13
  } from "./documenttype.js";
14
14
 
15
15
  export type SupportingDocumentAttributes = {
16
- id: string;
16
+ id?: string | undefined;
17
17
  /**
18
18
  * Must include the extension, e.g: 'Privacy agreement.pdf'
19
19
  */
@@ -30,14 +30,14 @@ export const SupportingDocumentAttributes$inboundSchema: z.ZodType<
30
30
  z.ZodTypeDef,
31
31
  unknown
32
32
  > = z.object({
33
- id: z.string(),
33
+ id: z.string().optional(),
34
34
  filename: z.string(),
35
35
  documentType: DocumentType$inboundSchema,
36
36
  });
37
37
 
38
38
  /** @internal */
39
39
  export type SupportingDocumentAttributes$Outbound = {
40
- id: string;
40
+ id?: string | undefined;
41
41
  filename: string;
42
42
  documentType: string;
43
43
  };
@@ -48,7 +48,7 @@ export const SupportingDocumentAttributes$outboundSchema: z.ZodType<
48
48
  z.ZodTypeDef,
49
49
  SupportingDocumentAttributes
50
50
  > = z.object({
51
- id: z.string(),
51
+ id: z.string().optional(),
52
52
  filename: z.string(),
53
53
  documentType: DocumentType$outboundSchema,
54
54
  });
@@ -2,7 +2,7 @@
2
2
  * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
3
  */
4
4
 
5
- import { oauthTokenOauthToken } from "../funcs/oauthTokenOauthToken.js";
5
+ import { oauthTokenGet } from "../funcs/oauthTokenGet.js";
6
6
  import { ClientSDK, RequestOptions } from "../lib/sdks.js";
7
7
  import * as components from "../models/components/index.js";
8
8
  import { unwrapAsync } from "../types/fp.js";
@@ -11,11 +11,11 @@ export class OauthToken extends ClientSDK {
11
11
  /**
12
12
  * Obtain an OAuth client_credentials token
13
13
  */
14
- async oauthToken(
14
+ async get(
15
15
  request: components.TokenRequest,
16
16
  options?: RequestOptions,
17
17
  ): Promise<components.TokenResponse> {
18
- return unwrapAsync(oauthTokenOauthToken(
18
+ return unwrapAsync(oauthTokenGet(
19
19
  this,
20
20
  request,
21
21
  options,
@@ -1 +0,0 @@
1
- {"version":3,"file":"oauthTokenOauthToken.d.ts","sourceRoot":"","sources":["../src/funcs/oauthTokenOauthToken.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAK7C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACtB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAW,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAgB,oBAAoB,CAClC,MAAM,EAAE,eAAe,EACvB,OAAO,EAAE,UAAU,CAAC,YAAY,EAChC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CACX,MAAM,CACJ,UAAU,CAAC,aAAa,EACtB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CAClB,CACF,CAMA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"oauthTokenOauthToken.js","sourceRoot":"","sources":["../src/funcs/oauthTokenOauthToken.ts"],"names":[],"mappings":"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"}