@roxyapi/sdk 1.2.34 → 1.2.36

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/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.2.34";
1
+ export declare const VERSION = "1.2.36";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1297,7 +1297,7 @@ const { data } = await roxy.angelNumbers.listAngelNumbers({ query: { limit: 20,
1297
1297
  const { data } = await roxy.angelNumbers.getAngelNumber({ path: { number: '444' } });
1298
1298
 
1299
1299
  // Analyze Any Number Sequence
1300
- const { data } = await roxy.angelNumbers.analyzeNumberSequence({ query: { number: '1234' } });
1300
+ const { data } = await roxy.angelNumbers.analyzeNumberSequence({ query: { number: '1234', context: 'clock' } });
1301
1301
 
1302
1302
  // Daily Angel Number
1303
1303
  const { data } = await roxy.angelNumbers.getDailyAngelNumber({ body: { seed: 'user123', date: '2026-03-06' } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roxyapi/sdk",
3
- "version": "1.2.34",
3
+ "version": "1.2.36",
4
4
  "description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
5
5
  "type": "module",
6
6
  "exports": {
package/src/sdk.gen.ts CHANGED
@@ -2291,7 +2291,7 @@ export class AngelNumbers extends HeyApiClient {
2291
2291
  /**
2292
2292
  * List All Angel Numbers
2293
2293
  *
2294
- * Retrieve the complete database of angel numbers with summary information. Returns all 43 angel numbers covering root digits (0-9), master numbers (11, 22, 33), double digits (44-99), triple repeating (111-999), quad repeating (1111-9999), mirror patterns (1212), and sequential numbers (1234). Supports optional type filtering. Perfect for building angel number explorer apps, reference guides, and spiritual databases.
2294
+ * Retrieve the complete database of angel numbers with summary information. Returns 75+ angel numbers covering root digits (0-9), master numbers (11, 22, 33), double digits (44-99), triple repeating (111-999), quad repeating (1111-9999), the mirror families (X0X like 101-909, X1X, four-digit mirrors like 1212-2121), palindromes (1221, 1331), compound sequences (911, 1122), and sequential numbers (123, 1234). Supports optional type filtering. Perfect for building angel number explorer apps, reference guides, and spiritual databases.
2295
2295
  */
2296
2296
  public listAngelNumbers<ThrowOnError extends boolean = false>(options?: Options<GetAngelNumbersNumbersData, ThrowOnError>) {
2297
2297
  return (options?.client ?? this.client).get<GetAngelNumbersNumbersResponses, GetAngelNumbersNumbersErrors, ThrowOnError>({
@@ -2304,7 +2304,7 @@ export class AngelNumbers extends HeyApiClient {
2304
2304
  /**
2305
2305
  * Get Angel Number Meaning
2306
2306
  *
2307
- * Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, and twin flame interpretations along with keywords, affirmation, and actionable steps. Covers 43 angel numbers including 111, 222, 333, 444, 555, 666, 777, 888, 999, 1111, 1212, 1234, and more. Authoritative interpretations covering all major angel number patterns.
2307
+ * Get the complete, authoritative meaning and interpretation for a specific angel number. Returns detailed spiritual, love, career, money, and twin flame interpretations, plus a biblical perspective and a shadow reading, along with keywords, affirmation, and actionable steps. Covers 75+ angel numbers including 111, 222, 333, 444, 555, 666, 777, 888, 999, 1111, 1212, 1234, and more. Authoritative interpretations covering all major angel number patterns.
2308
2308
  */
2309
2309
  public getAngelNumber<ThrowOnError extends boolean = false>(options: Options<GetAngelNumbersNumbersByNumberData, ThrowOnError>) {
2310
2310
  return (options.client ?? this.client).get<GetAngelNumbersNumbersByNumberResponses, GetAngelNumbersNumbersByNumberErrors, ThrowOnError>({
@@ -2317,7 +2317,7 @@ export class AngelNumbers extends HeyApiClient {
2317
2317
  /**
2318
2318
  * Analyze Any Number Sequence
2319
2319
  *
2320
- * Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation as a fallback. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
2320
+ * Smart angel number analysis that works for ANY number sequence, not just known angel numbers. Automatically classifies the pattern type (repeating, sequential, mirror, master, root, compound), calculates the numerology digit root, checks the database for a known meaning, and provides the foundational digit root interpretation (with full spiritual, love, career, money, and twin flame guidance) as a fallback. An optional context parameter adds a note tailored to where the number was seen. Perfect for synchronicity tracking apps where users enter arbitrary number sequences they encounter.
2321
2321
  */
2322
2322
  public analyzeNumberSequence<ThrowOnError extends boolean = false>(options: Options<GetAngelNumbersLookupData, ThrowOnError>) {
2323
2323
  return (options.client ?? this.client).get<GetAngelNumbersLookupResponses, GetAngelNumbersLookupErrors, ThrowOnError>({
@@ -2330,7 +2330,7 @@ export class AngelNumbers extends HeyApiClient {
2330
2330
  /**
2331
2331
  * Daily Angel Number
2332
2332
  *
2333
- * Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, and twin flame interpretations. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
2333
+ * Get the angel number of the day with full meaning and interpretation. Returns a deterministic angel number based on the current date (or a provided seed date), ensuring all users see the same number for any given day. Includes complete spiritual, love, career, money, and twin flame interpretations plus a biblical perspective and a shadow reading. Perfect for daily guidance features, push notifications, content generation, and angel number widget integrations.
2334
2334
  */
2335
2335
  public getDailyAngelNumber<ThrowOnError extends boolean = false>(options?: Options<PostAngelNumbersDailyData, ThrowOnError>) {
2336
2336
  return (options?.client ?? this.client).post<PostAngelNumbersDailyResponses, PostAngelNumbersDailyErrors, ThrowOnError>({
package/src/types.gen.ts CHANGED
@@ -10127,7 +10127,12 @@ export type PostVedicAstrologyBirthChartResponse = PostVedicAstrologyBirthChartR
10127
10127
  export type PostVedicAstrologyNavamsaData = {
10128
10128
  body?: NavamsaRequest;
10129
10129
  path?: never;
10130
- query?: never;
10130
+ query?: {
10131
+ /**
10132
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
10133
+ */
10134
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
10135
+ };
10131
10136
  url: '/vedic-astrology/navamsa';
10132
10137
  };
10133
10138
 
@@ -10247,7 +10252,12 @@ export type PostVedicAstrologyNavamsaResponse = PostVedicAstrologyNavamsaRespons
10247
10252
  export type PostVedicAstrologyDivisionalChartData = {
10248
10253
  body?: DivisionalChartRequest;
10249
10254
  path?: never;
10250
- query?: never;
10255
+ query?: {
10256
+ /**
10257
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
10258
+ */
10259
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
10260
+ };
10251
10261
  url: '/vedic-astrology/divisional-chart';
10252
10262
  };
10253
10263
 
@@ -13986,7 +13996,12 @@ export type PostVedicAstrologyKpCuspsResponse = PostVedicAstrologyKpCuspsRespons
13986
13996
  export type PostVedicAstrologyKpChartData = {
13987
13997
  body?: KpChartRequest;
13988
13998
  path?: never;
13989
- query?: never;
13999
+ query?: {
14000
+ /**
14001
+ * Response language (ISO 639-1). Supported: en, tr, de, es, hi, pt, fr, ru. Defaults to en. Languages without translations yet return English.
14002
+ */
14003
+ lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
14004
+ };
13990
14005
  url: '/vedic-astrology/kp/chart';
13991
14006
  };
13992
14007
 
@@ -32351,9 +32366,9 @@ export type GetAngelNumbersNumbersData = {
32351
32366
  */
32352
32367
  offset?: number;
32353
32368
  /**
32354
- * Filter results by angel number pattern type. "repeating" returns numbers like 111, 444, 7777. "sequential" returns patterns like 1234. "mirror" returns palindrome patterns like 1212. "master" returns 11, 22, 33. "root" returns single digits 0-9.
32369
+ * Filter results by angel number pattern type. "repeating" returns numbers like 111, 444, 7777. "sequential" returns patterns like 1234. "mirror" returns palindrome or alternating patterns like 1212, 717. "master" returns 11, 22, 33. "root" returns single digits 0-9. "compound" returns mixed sequences with no pure pattern like 911, 1122.
32355
32370
  */
32356
- type?: 'repeating' | 'sequential' | 'mirror' | 'master' | 'root';
32371
+ type?: 'repeating' | 'sequential' | 'mirror' | 'master' | 'root' | 'compound';
32357
32372
  };
32358
32373
  url: '/angel-numbers/numbers';
32359
32374
  };
@@ -32468,7 +32483,7 @@ export type GetAngelNumbersNumbersResponses = {
32468
32483
  */
32469
32484
  200: {
32470
32485
  /**
32471
- * Total number of angel numbers matching the applied filters. 43 for the full set, fewer when filtered by type.
32486
+ * Total number of angel numbers matching the applied filters. The full catalog size when unfiltered, fewer when filtered by type.
32472
32487
  */
32473
32488
  total: number;
32474
32489
  /**
@@ -32496,7 +32511,7 @@ export type GetAngelNumbersNumbersResponses = {
32496
32511
  */
32497
32512
  coreMessage: string;
32498
32513
  /**
32499
- * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9).
32514
+ * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9). "compound" means a mixed sequence with no pure pattern (911, 1122).
32500
32515
  */
32501
32516
  type: string;
32502
32517
  /**
@@ -32669,7 +32684,7 @@ export type GetAngelNumbersNumbersByNumberResponses = {
32669
32684
  */
32670
32685
  coreMessage: string;
32671
32686
  /**
32672
- * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9).
32687
+ * Pattern classification of the angel number. "repeating" means all digits are the same (111, 4444). "sequential" means consecutive digits (1234). "mirror" means palindrome or alternating pattern (1212, 1221). "master" means numerology master number (11, 22, 33). "root" means single digit (0-9). "compound" means a mixed sequence with no pure pattern (911, 1122).
32673
32688
  */
32674
32689
  type: string;
32675
32690
  /**
@@ -32694,14 +32709,26 @@ export type GetAngelNumbersNumbersByNumberResponses = {
32694
32709
  */
32695
32710
  love: string;
32696
32711
  /**
32697
- * Career and financial guidance including professional opportunities, money mindset, and practical advice for work life aligned with this angel number energy.
32712
+ * Career and vocation guidance: professional opportunities, calling, and practical work advice aligned with this angel number energy. Money and finances are returned separately in the money field.
32698
32713
  */
32699
32714
  career: string;
32715
+ /**
32716
+ * Money, finances, and material abundance guidance, kept distinct from career and vocation. Covers income, spending, debt, and prosperity mindset for this angel number.
32717
+ */
32718
+ money: string;
32700
32719
  /**
32701
32720
  * Twin flame connection interpretation covering union, separation, and spiritual growth within the twin flame journey.
32702
32721
  */
32703
32722
  twinFlame: string;
32704
32723
  };
32724
+ /**
32725
+ * Biblical and religious perspective on the sequence, framed honestly. States plainly when a number is not a scriptural concept rather than inventing scripture.
32726
+ */
32727
+ biblical: string;
32728
+ /**
32729
+ * Shadow or cautionary reading: the misuse, over-reliance, or imbalance this sequence can signal. Complements the energy classification.
32730
+ */
32731
+ shadow: string;
32705
32732
  /**
32706
32733
  * Positive affirmation aligned with this angel number. Can be used for daily affirmation features, meditation guidance, or spiritual journal prompts.
32707
32734
  */
@@ -32727,6 +32754,10 @@ export type GetAngelNumbersLookupData = {
32727
32754
  * Number sequence to analyze (1-8 digits). Can be any number the user has encountered: clock times (1111), addresses (717), receipts (888), license plates (4444), or any repeating pattern.
32728
32755
  */
32729
32756
  number: string;
32757
+ /**
32758
+ * Where the number was seen. When supplied, the response adds a contextNote tailoring the reading to the sighting: clock (a glanced time), receipt (a purchase), license-plate (in transit), phone (a call or notification), address (a home or place), price (a total or amount).
32759
+ */
32760
+ context?: 'clock' | 'receipt' | 'license-plate' | 'phone' | 'address' | 'price';
32730
32761
  };
32731
32762
  url: '/angel-numbers/lookup';
32732
32763
  };
@@ -32845,7 +32876,7 @@ export type GetAngelNumbersLookupResponses = {
32845
32876
  */
32846
32877
  number: string;
32847
32878
  /**
32848
- * Pattern classification detected for this number. "repeating" means all same digits. "sequential" means consecutive ascending or descending. "mirror" means palindrome or alternating pattern. "master" means numerology master number. "root" means single digit.
32879
+ * Pattern classification detected for this number. "repeating" means all same digits. "sequential" means consecutive ascending or descending. "mirror" means palindrome or alternating pattern. "master" means numerology master number. "root" means single digit. "compound" means a multi-digit sequence with no pure pattern (e.g. 911, 1122).
32849
32880
  */
32850
32881
  type: string;
32851
32882
  /**
@@ -32869,7 +32900,7 @@ export type GetAngelNumbersLookupResponses = {
32869
32900
  */
32870
32901
  isRepeating: boolean;
32871
32902
  /**
32872
- * Full angel number meaning if this number exists in the database (43 known numbers). Null if the number is not in the database, in which case use the analysis fields (type, digitRoot) for interpretation.
32903
+ * Full angel number meaning if this number exists in the curated database (75+ known sequences). Null if the number is not in the database, in which case use the analysis fields (type, digitRoot) and the digitRootMeaning fallback for interpretation.
32873
32904
  */
32874
32905
  knownMeaning: {
32875
32906
  /**
@@ -32889,7 +32920,7 @@ export type GetAngelNumbersLookupResponses = {
32889
32920
  */
32890
32921
  keywords: Array<string>;
32891
32922
  /**
32892
- * Detailed interpretations across four life areas: spiritual, love, career, and twin flame.
32923
+ * Detailed interpretations across life areas.
32893
32924
  */
32894
32925
  meaning: {
32895
32926
  /**
@@ -32901,14 +32932,26 @@ export type GetAngelNumbersLookupResponses = {
32901
32932
  */
32902
32933
  love: string;
32903
32934
  /**
32904
- * Career and financial guidance including professional opportunities and money mindset.
32935
+ * Career and vocation guidance. Money and finances are returned separately in the money field.
32905
32936
  */
32906
32937
  career: string;
32938
+ /**
32939
+ * Money, finances, and material abundance guidance, distinct from career.
32940
+ */
32941
+ money: string;
32907
32942
  /**
32908
32943
  * Twin flame connection interpretation covering union, separation, and spiritual growth.
32909
32944
  */
32910
32945
  twinFlame: string;
32911
32946
  };
32947
+ /**
32948
+ * Biblical and religious perspective, framed honestly.
32949
+ */
32950
+ biblical: string;
32951
+ /**
32952
+ * Shadow or cautionary reading for this number.
32953
+ */
32954
+ shadow: string;
32912
32955
  /**
32913
32956
  * Positive affirmation for this number.
32914
32957
  */
@@ -32934,7 +32977,29 @@ export type GetAngelNumbersLookupResponses = {
32934
32977
  * Core message of the foundational root digit.
32935
32978
  */
32936
32979
  coreMessage: string;
32980
+ /**
32981
+ * Full life-area interpretation of the underlying root digit. For an unknown sequence this is the substantive reading to display, so a synchronicity app never dead-ends on an arbitrary number.
32982
+ */
32983
+ meaning: {
32984
+ spiritual: string;
32985
+ love: string;
32986
+ career: string;
32987
+ money: string;
32988
+ twinFlame: string;
32989
+ };
32990
+ /**
32991
+ * Keywords for the root digit.
32992
+ */
32993
+ keywords: Array<string>;
32994
+ /**
32995
+ * Affirmation for the root digit.
32996
+ */
32997
+ affirmation: string;
32937
32998
  };
32999
+ /**
33000
+ * Present only when the context query parameter is supplied. A short reading layered on top of the meaning that accounts for WHERE the number was seen (clock, receipt, license plate, phone, address, price), since the place of a sighting shifts its emphasis.
33001
+ */
33002
+ contextNote?: string;
32938
33003
  };
32939
33004
  };
32940
33005
 
@@ -33103,7 +33168,7 @@ export type PostAngelNumbersDailyResponses = {
33103
33168
  */
33104
33169
  energy: string;
33105
33170
  /**
33106
- * Detailed interpretations across four life areas for the daily angel number.
33171
+ * Detailed interpretations across life areas for the daily angel number.
33107
33172
  */
33108
33173
  meaning: {
33109
33174
  /**
@@ -33115,14 +33180,26 @@ export type PostAngelNumbersDailyResponses = {
33115
33180
  */
33116
33181
  love: string;
33117
33182
  /**
33118
- * Career and financial guidance including professional opportunities, money mindset, and practical advice for work life.
33183
+ * Career and vocation guidance: professional opportunities, calling, and practical work advice. Money and finances are returned separately in the money field.
33119
33184
  */
33120
33185
  career: string;
33186
+ /**
33187
+ * Money, finances, and material abundance guidance, kept distinct from career and vocation.
33188
+ */
33189
+ money: string;
33121
33190
  /**
33122
33191
  * Twin flame connection interpretation covering union, separation, and spiritual growth within the twin flame journey.
33123
33192
  */
33124
33193
  twinFlame: string;
33125
33194
  };
33195
+ /**
33196
+ * Biblical and religious perspective on the daily sequence, framed honestly.
33197
+ */
33198
+ biblical: string;
33199
+ /**
33200
+ * Shadow or cautionary reading for the daily sequence. Complements the energy classification.
33201
+ */
33202
+ shadow: string;
33126
33203
  /**
33127
33204
  * Five to eight keywords capturing the spiritual themes and energy of the daily angel number. Useful for search, filtering, and content generation.
33128
33205
  */
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.2.34';
1
+ export const VERSION = '1.2.36';