@risika/api-response-types-dev 1.244.0 → 1.246.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.
@@ -0,0 +1,3 @@
1
+ // @ts-nocheck
2
+ export type { Information as Information } from "./information"
3
+ export type { InformationBatch as InformationBatch } from "./information_batch"
@@ -0,0 +1,19 @@
1
+ // @ts-nocheck
2
+ /* eslint-disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run json-schema-to-typescript to regenerate this file.
7
+ */
8
+
9
+ export type Information = Record | Record[];
10
+
11
+ export interface Record {
12
+ local_id?: string | null;
13
+ override_outcome?: string | null;
14
+ override_status?: string | null;
15
+ override_credit_limit?: number | null;
16
+ override_currency?: string | null;
17
+ feedback?: string | null;
18
+ override_review_date?: string | null;
19
+ }
@@ -0,0 +1,17 @@
1
+ // @ts-nocheck
2
+ /* eslint-disable */
3
+ /**
4
+ * This file was automatically generated by json-schema-to-typescript.
5
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
6
+ * and run json-schema-to-typescript to regenerate this file.
7
+ */
8
+
9
+ export type InformationBatch = {
10
+ local_id?: string | null;
11
+ override_outcome?: string | null;
12
+ override_status?: string | null;
13
+ override_credit_limit?: number | null;
14
+ override_currency?: string | null;
15
+ feedback?: string | null;
16
+ override_review_date?: string | null;
17
+ }[];
package/index.ts CHANGED
@@ -2,6 +2,7 @@
2
2
  export * as Account from "./account"
3
3
  export * as Company from "./company"
4
4
  export * as ConvertCurrency from "./convert_currency"
5
+ export * as CreditOverride from "./credit_override"
5
6
  export * as CreditRequest from "./credit_request"
6
7
  export * as Export from "./export"
7
8
  export * as Financial from "./financial"
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@risika/api-response-types-dev","version":"1.244.0","main":"index.js","license":"MIT","type":"module"}
1
+ {"name":"@risika/api-response-types-dev","version":"1.246.0","main":"index.js","license":"MIT","type":"module"}