rebilly-js-sdk 62.145.4 → 62.146.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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [62.145.4](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v62.145.3...rebilly-js-sdk-v62.145.4) (2026-07-16)
1
+ ## [62.146.0](https://github.com/Rebilly/rebilly/compare/rebilly-js-sdk-v62.145.4...rebilly-js-sdk-v62.146.0) (2026-07-16)
2
2
 
3
3
 
4
- ### Bug Fixes
4
+ ### Features
5
5
 
6
- * **api:** Fix sdk generation with downloadComplianceScreeningReport ([#23719](https://github.com/Rebilly/rebilly/issues/23719)) ([856f75e](https://github.com/Rebilly/rebilly/commit/856f75efa875b67613ffb7d4433db710b9158e56))
6
+ * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#23725](https://github.com/Rebilly/rebilly/issues/23725)) ([21eab27](https://github.com/Rebilly/rebilly/commit/21eab277d79cbc412d7e04f5f6a66bd8507743ab))
@@ -31,8 +31,8 @@ declare namespace rebilly {
31
31
  type GetAmlCheckCollectionResponse = operations['GetAmlCheckCollection']['responses']['200']['content']['application/json'][0]
32
32
  type GetAmlCheckCollectionResponsePromise = Promise<{ items: {fields: GetAmlCheckCollectionResponse}[], getJSON: object, total?: number, offset?: number, limit?: number }>
33
33
 
34
- type GetAmlCheckRequest = operations['GetAmlCheck']['parameters'] & { id: string }
35
-
34
+ type GetAmlCheckRequest = { id: string }
35
+
36
36
  type GetAmlCheckResponse = operations['GetAmlCheck']['responses']['200']['content']['application/json']
37
37
  type GetAmlCheckResponsePromise = Promise<{fields: GetAmlCheckResponse}>
38
38
 
@@ -6368,10 +6368,6 @@ export interface coreComponents {
6368
6368
  /** Type of link. */
6369
6369
  rel?: "self" | "customer";
6370
6370
  }[];
6371
- /** Embedded objects that are requested by the `expand` query parameter. */
6372
- _embedded?: {
6373
- customer?: { [key: string]: any };
6374
- };
6375
6371
  };
6376
6372
  /** AML check review. */
6377
6373
  AmlCheckReview: {
@@ -10877,10 +10873,15 @@ export interface coreComponents {
10877
10873
  /** Proof of funds document matches. */
10878
10874
  documentMatches?: {
10879
10875
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10876
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10877
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10880
10878
  data?: coreComponents["schemas"]["FundsMatches"];
10881
10879
  } | null;
10880
+ /** Parsed data. */
10882
10881
  parsedData?: {
10883
10882
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10883
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10884
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10884
10885
  data?: coreComponents["schemas"]["FundsMatches"];
10885
10886
  } | null;
10886
10887
  /** Related links. */
@@ -10971,11 +10972,15 @@ export interface coreComponents {
10971
10972
  /** Proof of purchase document matches. */
10972
10973
  documentMatches?: {
10973
10974
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10975
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10976
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10974
10977
  data?: coreComponents["schemas"]["PurchaseMatches"];
10975
10978
  } | null;
10976
10979
  /** Parsed data. */
10977
10980
  parsedData?: {
10978
10981
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10982
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10983
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10979
10984
  data?: coreComponents["schemas"]["PurchaseMatches"];
10980
10985
  } | null;
10981
10986
  /** Related links. */
@@ -11111,8 +11116,16 @@ export interface coreComponents {
11111
11116
  /** Proof of credit document matches. */
11112
11117
  documentMatches?: {
11113
11118
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
11119
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
11120
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
11114
11121
  data?: coreComponents["schemas"]["CreditFileMatches"];
11122
+ } | null;
11123
+ /** Parsed data. */
11124
+ parsedData?: {
11125
+ version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
11126
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
11115
11127
  checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
11128
+ data?: coreComponents["schemas"]["CreditFileMatches"];
11116
11129
  } | null;
11117
11130
  /** Related links. */
11118
11131
  _links?: {
@@ -25619,6 +25632,11 @@ export interface coreComponents {
25619
25632
  updatedTime?: coreComponents["schemas"]["UpdatedTime"];
25620
25633
  /** Date and time when the KYC document is processed. */
25621
25634
  processedTime?: string;
25635
+ /** Document matches. */
25636
+ documentMatches?: {
25637
+ version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
25638
+ data?: coreComponents["schemas"]["FundsMatches"];
25639
+ } | null;
25622
25640
  _links?: coreComponents["schemas"]["SelfLink"];
25623
25641
  };
25624
25642
  StorefrontProofOfPurchaseKycDocument: {
@@ -30010,14 +30028,6 @@ export interface operations {
30010
30028
  filter?: coreComponents["parameters"]["collectionFilter"];
30011
30029
  /** Use this field to perform a partial search of text fields. */
30012
30030
  q?: coreComponents["parameters"]["collectionQuery"];
30013
- /**
30014
- * Expands a request to include embedded objects within the `_embedded`
30015
- * property of the response. This field accepts a comma-separated list of objects.
30016
- *
30017
- * For more information, see
30018
- * [Embedded resources](https://www.rebilly.com/docs/dev-docs/expand-embedded-resources).
30019
- */
30020
- expand?: coreComponents["parameters"]["collectionExpand"];
30021
30031
  };
30022
30032
  };
30023
30033
  responses: {
@@ -30042,16 +30052,6 @@ export interface operations {
30042
30052
  /** ID of the resource. */
30043
30053
  id: coreComponents["parameters"]["resourceId"];
30044
30054
  };
30045
- query: {
30046
- /**
30047
- * Expands a request to include embedded objects within the `_embedded`
30048
- * property of the response. This field accepts a comma-separated list of objects.
30049
- *
30050
- * For more information, see
30051
- * [Embedded resources](https://www.rebilly.com/docs/dev-docs/expand-embedded-resources).
30052
- */
30053
- expand?: coreComponents["parameters"]["collectionExpand"];
30054
- };
30055
30055
  };
30056
30056
  responses: {
30057
30057
  /** AML check retrieved. */
@@ -44917,10 +44917,6 @@ export interface storefrontComponents {
44917
44917
  /** Type of link. */
44918
44918
  rel?: "self" | "customer";
44919
44919
  }[];
44920
- /** Embedded objects that are requested by the `expand` query parameter. */
44921
- _embedded?: {
44922
- customer?: { [key: string]: any };
44923
- };
44924
44920
  };
44925
44921
  /** AML check review. */
44926
44922
  AmlCheckReview: {
@@ -49426,10 +49422,15 @@ export interface storefrontComponents {
49426
49422
  /** Proof of funds document matches. */
49427
49423
  documentMatches?: {
49428
49424
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49425
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49426
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49429
49427
  data?: storefrontComponents["schemas"]["FundsMatches"];
49430
49428
  } | null;
49429
+ /** Parsed data. */
49431
49430
  parsedData?: {
49432
49431
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49432
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49433
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49433
49434
  data?: storefrontComponents["schemas"]["FundsMatches"];
49434
49435
  } | null;
49435
49436
  /** Related links. */
@@ -49520,11 +49521,15 @@ export interface storefrontComponents {
49520
49521
  /** Proof of purchase document matches. */
49521
49522
  documentMatches?: {
49522
49523
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49524
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49525
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49523
49526
  data?: storefrontComponents["schemas"]["PurchaseMatches"];
49524
49527
  } | null;
49525
49528
  /** Parsed data. */
49526
49529
  parsedData?: {
49527
49530
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49531
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49532
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49528
49533
  data?: storefrontComponents["schemas"]["PurchaseMatches"];
49529
49534
  } | null;
49530
49535
  /** Related links. */
@@ -49660,8 +49665,16 @@ export interface storefrontComponents {
49660
49665
  /** Proof of credit document matches. */
49661
49666
  documentMatches?: {
49662
49667
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49668
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49669
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49663
49670
  data?: storefrontComponents["schemas"]["CreditFileMatches"];
49671
+ } | null;
49672
+ /** Parsed data. */
49673
+ parsedData?: {
49674
+ version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49675
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49664
49676
  checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49677
+ data?: storefrontComponents["schemas"]["CreditFileMatches"];
49665
49678
  } | null;
49666
49679
  /** Related links. */
49667
49680
  _links?: {
@@ -64168,6 +64181,11 @@ export interface storefrontComponents {
64168
64181
  updatedTime?: storefrontComponents["schemas"]["UpdatedTime"];
64169
64182
  /** Date and time when the KYC document is processed. */
64170
64183
  processedTime?: string;
64184
+ /** Document matches. */
64185
+ documentMatches?: {
64186
+ version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
64187
+ data?: storefrontComponents["schemas"]["FundsMatches"];
64188
+ } | null;
64171
64189
  _links?: storefrontComponents["schemas"]["SelfLink"];
64172
64190
  };
64173
64191
  StorefrontProofOfPurchaseKycDocument: {
@@ -70901,10 +70919,6 @@ export interface reportsComponents {
70901
70919
  /** Type of link. */
70902
70920
  rel?: "self" | "customer";
70903
70921
  }[];
70904
- /** Embedded objects that are requested by the `expand` query parameter. */
70905
- _embedded?: {
70906
- customer?: { [key: string]: any };
70907
- };
70908
70922
  };
70909
70923
  /** AML check review. */
70910
70924
  AmlCheckReview: {
@@ -75410,10 +75424,15 @@ export interface reportsComponents {
75410
75424
  /** Proof of funds document matches. */
75411
75425
  documentMatches?: {
75412
75426
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75427
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75428
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75413
75429
  data?: reportsComponents["schemas"]["FundsMatches"];
75414
75430
  } | null;
75431
+ /** Parsed data. */
75415
75432
  parsedData?: {
75416
75433
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75434
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75435
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75417
75436
  data?: reportsComponents["schemas"]["FundsMatches"];
75418
75437
  } | null;
75419
75438
  /** Related links. */
@@ -75504,11 +75523,15 @@ export interface reportsComponents {
75504
75523
  /** Proof of purchase document matches. */
75505
75524
  documentMatches?: {
75506
75525
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75526
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75527
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75507
75528
  data?: reportsComponents["schemas"]["PurchaseMatches"];
75508
75529
  } | null;
75509
75530
  /** Parsed data. */
75510
75531
  parsedData?: {
75511
75532
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75533
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75534
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75512
75535
  data?: reportsComponents["schemas"]["PurchaseMatches"];
75513
75536
  } | null;
75514
75537
  /** Related links. */
@@ -75644,8 +75667,16 @@ export interface reportsComponents {
75644
75667
  /** Proof of credit document matches. */
75645
75668
  documentMatches?: {
75646
75669
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75670
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75671
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75647
75672
  data?: reportsComponents["schemas"]["CreditFileMatches"];
75673
+ } | null;
75674
+ /** Parsed data. */
75675
+ parsedData?: {
75676
+ version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75677
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75648
75678
  checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75679
+ data?: reportsComponents["schemas"]["CreditFileMatches"];
75649
75680
  } | null;
75650
75681
  /** Related links. */
75651
75682
  _links?: {
@@ -90152,6 +90183,11 @@ export interface reportsComponents {
90152
90183
  updatedTime?: reportsComponents["schemas"]["UpdatedTime"];
90153
90184
  /** Date and time when the KYC document is processed. */
90154
90185
  processedTime?: string;
90186
+ /** Document matches. */
90187
+ documentMatches?: {
90188
+ version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
90189
+ data?: reportsComponents["schemas"]["FundsMatches"];
90190
+ } | null;
90155
90191
  _links?: reportsComponents["schemas"]["SelfLink"];
90156
90192
  };
90157
90193
  StorefrontProofOfPurchaseKycDocument: {
@@ -98201,10 +98237,9 @@ declare module "resources/aml-checks-resource" {
98201
98237
  export default function AmlChecksResource({ apiHandler }: {
98202
98238
  apiHandler: any;
98203
98239
  }): {
98204
- getAll({ limit, offset, sort, filter, q, expand, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
98205
- get({ id, expand }: {
98240
+ getAll({ limit, offset, sort, filter, q, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
98241
+ get({ id }: {
98206
98242
  id: any;
98207
- expand?: any;
98208
98243
  }): rebilly.GetAmlCheckResponsePromise;
98209
98244
  startReview({ id }: {
98210
98245
  id: any;
@@ -100198,10 +100233,9 @@ declare module "resources/api-instance" {
100198
100233
  }): any;
100199
100234
  };
100200
100235
  amlChecks: {
100201
- getAll({ limit, offset, sort, filter, q, expand, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
100202
- get({ id, expand }: {
100236
+ getAll({ limit, offset, sort, filter, q, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
100237
+ get({ id }: {
100203
100238
  id: any;
100204
- expand?: any;
100205
100239
  }): rebilly.GetAmlCheckResponsePromise;
100206
100240
  startReview({ id }: {
100207
100241
  id: any;
@@ -31,8 +31,8 @@ declare namespace rebilly {
31
31
  type GetAmlCheckCollectionResponse = operations['GetAmlCheckCollection']['responses']['200']['content']['application/json'][0]
32
32
  type GetAmlCheckCollectionResponsePromise = Promise<{ items: {fields: GetAmlCheckCollectionResponse}[], getJSON: object, total?: number, offset?: number, limit?: number }>
33
33
 
34
- type GetAmlCheckRequest = operations['GetAmlCheck']['parameters'] & { id: string }
35
-
34
+ type GetAmlCheckRequest = { id: string }
35
+
36
36
  type GetAmlCheckResponse = operations['GetAmlCheck']['responses']['200']['content']['application/json']
37
37
  type GetAmlCheckResponsePromise = Promise<{fields: GetAmlCheckResponse}>
38
38
 
@@ -6368,10 +6368,6 @@ export interface coreComponents {
6368
6368
  /** Type of link. */
6369
6369
  rel?: "self" | "customer";
6370
6370
  }[];
6371
- /** Embedded objects that are requested by the `expand` query parameter. */
6372
- _embedded?: {
6373
- customer?: { [key: string]: any };
6374
- };
6375
6371
  };
6376
6372
  /** AML check review. */
6377
6373
  AmlCheckReview: {
@@ -10877,10 +10873,15 @@ export interface coreComponents {
10877
10873
  /** Proof of funds document matches. */
10878
10874
  documentMatches?: {
10879
10875
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10876
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10877
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10880
10878
  data?: coreComponents["schemas"]["FundsMatches"];
10881
10879
  } | null;
10880
+ /** Parsed data. */
10882
10881
  parsedData?: {
10883
10882
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10883
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10884
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10884
10885
  data?: coreComponents["schemas"]["FundsMatches"];
10885
10886
  } | null;
10886
10887
  /** Related links. */
@@ -10971,11 +10972,15 @@ export interface coreComponents {
10971
10972
  /** Proof of purchase document matches. */
10972
10973
  documentMatches?: {
10973
10974
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10975
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10976
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10974
10977
  data?: coreComponents["schemas"]["PurchaseMatches"];
10975
10978
  } | null;
10976
10979
  /** Parsed data. */
10977
10980
  parsedData?: {
10978
10981
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
10982
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
10983
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
10979
10984
  data?: coreComponents["schemas"]["PurchaseMatches"];
10980
10985
  } | null;
10981
10986
  /** Related links. */
@@ -11111,8 +11116,16 @@ export interface coreComponents {
11111
11116
  /** Proof of credit document matches. */
11112
11117
  documentMatches?: {
11113
11118
  version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
11119
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
11120
+ checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
11114
11121
  data?: coreComponents["schemas"]["CreditFileMatches"];
11122
+ } | null;
11123
+ /** Parsed data. */
11124
+ parsedData?: {
11125
+ version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
11126
+ score?: coreComponents["schemas"]["KycDocumentMatchesScore"];
11115
11127
  checkList?: coreComponents["schemas"]["KycDocumentCheckList"];
11128
+ data?: coreComponents["schemas"]["CreditFileMatches"];
11116
11129
  } | null;
11117
11130
  /** Related links. */
11118
11131
  _links?: {
@@ -25619,6 +25632,11 @@ export interface coreComponents {
25619
25632
  updatedTime?: coreComponents["schemas"]["UpdatedTime"];
25620
25633
  /** Date and time when the KYC document is processed. */
25621
25634
  processedTime?: string;
25635
+ /** Document matches. */
25636
+ documentMatches?: {
25637
+ version?: coreComponents["schemas"]["KycDocumentMatchesVersion"];
25638
+ data?: coreComponents["schemas"]["FundsMatches"];
25639
+ } | null;
25622
25640
  _links?: coreComponents["schemas"]["SelfLink"];
25623
25641
  };
25624
25642
  StorefrontProofOfPurchaseKycDocument: {
@@ -30010,14 +30028,6 @@ export interface operations {
30010
30028
  filter?: coreComponents["parameters"]["collectionFilter"];
30011
30029
  /** Use this field to perform a partial search of text fields. */
30012
30030
  q?: coreComponents["parameters"]["collectionQuery"];
30013
- /**
30014
- * Expands a request to include embedded objects within the `_embedded`
30015
- * property of the response. This field accepts a comma-separated list of objects.
30016
- *
30017
- * For more information, see
30018
- * [Embedded resources](https://www.rebilly.com/docs/dev-docs/expand-embedded-resources).
30019
- */
30020
- expand?: coreComponents["parameters"]["collectionExpand"];
30021
30031
  };
30022
30032
  };
30023
30033
  responses: {
@@ -30042,16 +30052,6 @@ export interface operations {
30042
30052
  /** ID of the resource. */
30043
30053
  id: coreComponents["parameters"]["resourceId"];
30044
30054
  };
30045
- query: {
30046
- /**
30047
- * Expands a request to include embedded objects within the `_embedded`
30048
- * property of the response. This field accepts a comma-separated list of objects.
30049
- *
30050
- * For more information, see
30051
- * [Embedded resources](https://www.rebilly.com/docs/dev-docs/expand-embedded-resources).
30052
- */
30053
- expand?: coreComponents["parameters"]["collectionExpand"];
30054
- };
30055
30055
  };
30056
30056
  responses: {
30057
30057
  /** AML check retrieved. */
@@ -44917,10 +44917,6 @@ export interface storefrontComponents {
44917
44917
  /** Type of link. */
44918
44918
  rel?: "self" | "customer";
44919
44919
  }[];
44920
- /** Embedded objects that are requested by the `expand` query parameter. */
44921
- _embedded?: {
44922
- customer?: { [key: string]: any };
44923
- };
44924
44920
  };
44925
44921
  /** AML check review. */
44926
44922
  AmlCheckReview: {
@@ -49426,10 +49422,15 @@ export interface storefrontComponents {
49426
49422
  /** Proof of funds document matches. */
49427
49423
  documentMatches?: {
49428
49424
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49425
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49426
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49429
49427
  data?: storefrontComponents["schemas"]["FundsMatches"];
49430
49428
  } | null;
49429
+ /** Parsed data. */
49431
49430
  parsedData?: {
49432
49431
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49432
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49433
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49433
49434
  data?: storefrontComponents["schemas"]["FundsMatches"];
49434
49435
  } | null;
49435
49436
  /** Related links. */
@@ -49520,11 +49521,15 @@ export interface storefrontComponents {
49520
49521
  /** Proof of purchase document matches. */
49521
49522
  documentMatches?: {
49522
49523
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49524
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49525
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49523
49526
  data?: storefrontComponents["schemas"]["PurchaseMatches"];
49524
49527
  } | null;
49525
49528
  /** Parsed data. */
49526
49529
  parsedData?: {
49527
49530
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49531
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49532
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49528
49533
  data?: storefrontComponents["schemas"]["PurchaseMatches"];
49529
49534
  } | null;
49530
49535
  /** Related links. */
@@ -49660,8 +49665,16 @@ export interface storefrontComponents {
49660
49665
  /** Proof of credit document matches. */
49661
49666
  documentMatches?: {
49662
49667
  version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49668
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49669
+ checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49663
49670
  data?: storefrontComponents["schemas"]["CreditFileMatches"];
49671
+ } | null;
49672
+ /** Parsed data. */
49673
+ parsedData?: {
49674
+ version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
49675
+ score?: storefrontComponents["schemas"]["KycDocumentMatchesScore"];
49664
49676
  checkList?: storefrontComponents["schemas"]["KycDocumentCheckList"];
49677
+ data?: storefrontComponents["schemas"]["CreditFileMatches"];
49665
49678
  } | null;
49666
49679
  /** Related links. */
49667
49680
  _links?: {
@@ -64168,6 +64181,11 @@ export interface storefrontComponents {
64168
64181
  updatedTime?: storefrontComponents["schemas"]["UpdatedTime"];
64169
64182
  /** Date and time when the KYC document is processed. */
64170
64183
  processedTime?: string;
64184
+ /** Document matches. */
64185
+ documentMatches?: {
64186
+ version?: storefrontComponents["schemas"]["KycDocumentMatchesVersion"];
64187
+ data?: storefrontComponents["schemas"]["FundsMatches"];
64188
+ } | null;
64171
64189
  _links?: storefrontComponents["schemas"]["SelfLink"];
64172
64190
  };
64173
64191
  StorefrontProofOfPurchaseKycDocument: {
@@ -70901,10 +70919,6 @@ export interface reportsComponents {
70901
70919
  /** Type of link. */
70902
70920
  rel?: "self" | "customer";
70903
70921
  }[];
70904
- /** Embedded objects that are requested by the `expand` query parameter. */
70905
- _embedded?: {
70906
- customer?: { [key: string]: any };
70907
- };
70908
70922
  };
70909
70923
  /** AML check review. */
70910
70924
  AmlCheckReview: {
@@ -75410,10 +75424,15 @@ export interface reportsComponents {
75410
75424
  /** Proof of funds document matches. */
75411
75425
  documentMatches?: {
75412
75426
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75427
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75428
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75413
75429
  data?: reportsComponents["schemas"]["FundsMatches"];
75414
75430
  } | null;
75431
+ /** Parsed data. */
75415
75432
  parsedData?: {
75416
75433
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75434
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75435
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75417
75436
  data?: reportsComponents["schemas"]["FundsMatches"];
75418
75437
  } | null;
75419
75438
  /** Related links. */
@@ -75504,11 +75523,15 @@ export interface reportsComponents {
75504
75523
  /** Proof of purchase document matches. */
75505
75524
  documentMatches?: {
75506
75525
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75526
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75527
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75507
75528
  data?: reportsComponents["schemas"]["PurchaseMatches"];
75508
75529
  } | null;
75509
75530
  /** Parsed data. */
75510
75531
  parsedData?: {
75511
75532
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75533
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75534
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75512
75535
  data?: reportsComponents["schemas"]["PurchaseMatches"];
75513
75536
  } | null;
75514
75537
  /** Related links. */
@@ -75644,8 +75667,16 @@ export interface reportsComponents {
75644
75667
  /** Proof of credit document matches. */
75645
75668
  documentMatches?: {
75646
75669
  version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75670
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75671
+ checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75647
75672
  data?: reportsComponents["schemas"]["CreditFileMatches"];
75673
+ } | null;
75674
+ /** Parsed data. */
75675
+ parsedData?: {
75676
+ version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
75677
+ score?: reportsComponents["schemas"]["KycDocumentMatchesScore"];
75648
75678
  checkList?: reportsComponents["schemas"]["KycDocumentCheckList"];
75679
+ data?: reportsComponents["schemas"]["CreditFileMatches"];
75649
75680
  } | null;
75650
75681
  /** Related links. */
75651
75682
  _links?: {
@@ -90152,6 +90183,11 @@ export interface reportsComponents {
90152
90183
  updatedTime?: reportsComponents["schemas"]["UpdatedTime"];
90153
90184
  /** Date and time when the KYC document is processed. */
90154
90185
  processedTime?: string;
90186
+ /** Document matches. */
90187
+ documentMatches?: {
90188
+ version?: reportsComponents["schemas"]["KycDocumentMatchesVersion"];
90189
+ data?: reportsComponents["schemas"]["FundsMatches"];
90190
+ } | null;
90155
90191
  _links?: reportsComponents["schemas"]["SelfLink"];
90156
90192
  };
90157
90193
  StorefrontProofOfPurchaseKycDocument: {
@@ -98201,10 +98237,9 @@ declare module "resources/aml-checks-resource" {
98201
98237
  export default function AmlChecksResource({ apiHandler }: {
98202
98238
  apiHandler: any;
98203
98239
  }): {
98204
- getAll({ limit, offset, sort, filter, q, expand, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
98205
- get({ id, expand }: {
98240
+ getAll({ limit, offset, sort, filter, q, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
98241
+ get({ id }: {
98206
98242
  id: any;
98207
- expand?: any;
98208
98243
  }): rebilly.GetAmlCheckResponsePromise;
98209
98244
  startReview({ id }: {
98210
98245
  id: any;
@@ -100198,10 +100233,9 @@ declare module "resources/api-instance" {
100198
100233
  }): any;
100199
100234
  };
100200
100235
  amlChecks: {
100201
- getAll({ limit, offset, sort, filter, q, expand, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
100202
- get({ id, expand }: {
100236
+ getAll({ limit, offset, sort, filter, q, }?: rebilly.GetAmlCheckCollectionRequest): rebilly.GetAmlCheckCollectionResponsePromise;
100237
+ get({ id }: {
100203
100238
  id: any;
100204
- expand?: any;
100205
100239
  }): rebilly.GetAmlCheckResponsePromise;
100206
100240
  startReview({ id }: {
100207
100241
  id: any;