@firela/api-types 0.0.0-canary.d8f5ada2 → 0.0.0-canary.d9762ea3

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/dist/index.d.mts CHANGED
@@ -4172,7 +4172,7 @@ type NlpResponseDto = {
4172
4172
  /**
4173
4173
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
4174
4174
  */
4175
- assetSubType?: 'transfer' | 'banking' | 'investment';
4175
+ assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
4176
4176
  /**
4177
4177
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
4178
4178
  */
@@ -4276,7 +4276,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
4276
4276
  /**
4277
4277
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
4278
4278
  */
4279
- type assetSubType = 'transfer' | 'banking' | 'investment';
4279
+ type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
4280
4280
  /**
4281
4281
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
4282
4282
  */
package/dist/index.d.ts CHANGED
@@ -4172,7 +4172,7 @@ type NlpResponseDto = {
4172
4172
  /**
4173
4173
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
4174
4174
  */
4175
- assetSubType?: 'transfer' | 'banking' | 'investment';
4175
+ assetSubType?: 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
4176
4176
  /**
4177
4177
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
4178
4178
  */
@@ -4276,7 +4276,7 @@ type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
4276
4276
  /**
4277
4277
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
4278
4278
  */
4279
- type assetSubType = 'transfer' | 'banking' | 'investment';
4279
+ type assetSubType = 'transfer' | 'banking' | 'investment' | 'lend' | 'lend_collect';
4280
4280
  /**
4281
4281
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
4282
4282
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firela/api-types",
3
- "version": "0.0.0-canary.d8f5ada2",
3
+ "version": "0.0.0-canary.d9762ea3",
4
4
  "description": "TypeScript types generated from IGN OpenAPI specification",
5
5
  "license": "MIT",
6
6
  "author": "FireLa Team",
@@ -6838,7 +6838,7 @@ export const $NlpResponseDto = {
6838
6838
  type: 'string',
6839
6839
  description:
6840
6840
  'Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.',
6841
- enum: ['transfer', 'banking', 'investment'],
6841
+ enum: ['transfer', 'banking', 'investment', 'lend', 'lend_collect'],
6842
6842
  example: 'investment'
6843
6843
  },
6844
6844
  liabilitySubType: {
@@ -4781,7 +4781,12 @@ export type NlpResponseDto = {
4781
4781
  /**
4782
4782
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
4783
4783
  */
4784
- assetSubType?: 'transfer' | 'banking' | 'investment';
4784
+ assetSubType?:
4785
+ | 'transfer'
4786
+ | 'banking'
4787
+ | 'investment'
4788
+ | 'lend'
4789
+ | 'lend_collect';
4785
4790
  /**
4786
4791
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).
4787
4792
  */
@@ -4898,7 +4903,12 @@ export type intent = 'expense' | 'asset' | 'income' | 'liability' | 'equity';
4898
4903
  /**
4899
4904
  * Asset sub-type (only present when intent is "asset"). Determines which asset-related form to render.
4900
4905
  */
4901
- export type assetSubType = 'transfer' | 'banking' | 'investment';
4906
+ export type assetSubType =
4907
+ | 'transfer'
4908
+ | 'banking'
4909
+ | 'investment'
4910
+ | 'lend'
4911
+ | 'lend_collect';
4902
4912
 
4903
4913
  /**
4904
4914
  * Liability sub-type (only present when intent is "liability"). borrow: borrowing money (Liabilities → Assets), repay: repaying debt (Assets → Liabilities).