@cranberry-money/shared-services 10.1.316 → 10.1.317

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/assets.d.ts CHANGED
@@ -14,7 +14,7 @@ export declare const getAssetByUuid: (apiClient: AxiosInstance, uuid: string) =>
14
14
  */
15
15
  export declare const searchAssets: (apiClient: AxiosInstance, searchTerm: string, params?: Omit<AssetQueryParams, "search">) => Promise<import("axios").AxiosResponse<PaginatedResponse<Asset>, any>>;
16
16
  /**
17
- * Get assets by type (STOCK, ETF, FUND, CRYPTO, STABLECOIN)
17
+ * Get assets by type (Phase 7: native_crypto, stablecoin, tokenized_security, tokenized_rwa, synthetic)
18
18
  */
19
19
  export declare const getAssetsByType: (apiClient: AxiosInstance, asset_type: AssetQueryParams["asset_type"], params?: Omit<AssetQueryParams, "asset_type">) => Promise<import("axios").AxiosResponse<PaginatedResponse<Asset>, any>>;
20
20
  //# sourceMappingURL=assets.d.ts.map
package/dist/assets.js CHANGED
@@ -22,7 +22,7 @@ export const searchAssets = (apiClient, searchTerm, params) => {
22
22
  });
23
23
  };
24
24
  /**
25
- * Get assets by type (STOCK, ETF, FUND, CRYPTO, STABLECOIN)
25
+ * Get assets by type (Phase 7: native_crypto, stablecoin, tokenized_security, tokenized_rwa, synthetic)
26
26
  */
27
27
  export const getAssetsByType = (apiClient, asset_type, params) => {
28
28
  return getAssets(apiClient, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cranberry-money/shared-services",
3
- "version": "10.1.316",
3
+ "version": "10.1.317",
4
4
  "description": "Platform-agnostic API services with pure functions and dependency injection. Includes auth, portfolios, instruments, countries, sectors, and more.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,8 +29,8 @@
29
29
  "prepublishOnly": "npm run clean && npm run typecheck && npm run build"
30
30
  },
31
31
  "dependencies": {
32
- "@cranberry-money/shared-constants": "^8.15.341",
33
- "@cranberry-money/shared-types": "^8.22.316",
32
+ "@cranberry-money/shared-constants": "^8.15.342",
33
+ "@cranberry-money/shared-types": "^8.22.317",
34
34
  "axios": "^1.9.0"
35
35
  },
36
36
  "peerDependencies": {