@robosystems/client 0.2.34 → 0.2.35
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/package.json +1 -1
- package/sdk/sdk.gen.d.ts +2 -2
- package/sdk/sdk.gen.js +2 -2
- package/sdk/sdk.gen.ts +2 -2
- package/sdk/types.gen.d.ts +6 -0
- package/sdk/types.gen.ts +6 -0
- package/sdk.gen.d.ts +2 -2
- package/sdk.gen.js +2 -2
- package/sdk.gen.ts +2 -2
- package/types.gen.d.ts +6 -0
- package/types.gen.ts +6 -0
package/package.json
CHANGED
package/sdk/sdk.gen.d.ts
CHANGED
|
@@ -1741,7 +1741,7 @@ export declare const updateFile: <ThrowOnError extends boolean = false>(options:
|
|
|
1741
1741
|
* - Graphs you create or have been invited to
|
|
1742
1742
|
*
|
|
1743
1743
|
* **Shared Repositories (isRepository: true):**
|
|
1744
|
-
* - Read-only data repositories
|
|
1744
|
+
* - Read-only data repositories (e.g., SEC filings)
|
|
1745
1745
|
* - Access levels: `read`, `write` (for data contributions), `admin`
|
|
1746
1746
|
* - Cannot be selected (each has separate subscription)
|
|
1747
1747
|
* - Require separate subscriptions (personal, cannot be shared)
|
|
@@ -1975,7 +1975,7 @@ export declare const selectGraph: <ThrowOnError extends boolean = false>(options
|
|
|
1975
1975
|
*
|
|
1976
1976
|
* Includes:
|
|
1977
1977
|
* - Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
|
|
1978
|
-
* - Shared repository subscriptions
|
|
1978
|
+
* - Shared repository subscriptions - org-level
|
|
1979
1979
|
* - Operation costs and credit information
|
|
1980
1980
|
* - Features and capabilities for each tier
|
|
1981
1981
|
* - Enabled/disabled status for repositories
|
package/sdk/sdk.gen.js
CHANGED
|
@@ -2272,7 +2272,7 @@ exports.updateFile = updateFile;
|
|
|
2272
2272
|
* - Graphs you create or have been invited to
|
|
2273
2273
|
*
|
|
2274
2274
|
* **Shared Repositories (isRepository: true):**
|
|
2275
|
-
* - Read-only data repositories
|
|
2275
|
+
* - Read-only data repositories (e.g., SEC filings)
|
|
2276
2276
|
* - Access levels: `read`, `write` (for data contributions), `admin`
|
|
2277
2277
|
* - Cannot be selected (each has separate subscription)
|
|
2278
2278
|
* - Require separate subscriptions (personal, cannot be shared)
|
|
@@ -2540,7 +2540,7 @@ exports.selectGraph = selectGraph;
|
|
|
2540
2540
|
*
|
|
2541
2541
|
* Includes:
|
|
2542
2542
|
* - Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
|
|
2543
|
-
* - Shared repository subscriptions
|
|
2543
|
+
* - Shared repository subscriptions - org-level
|
|
2544
2544
|
* - Operation costs and credit information
|
|
2545
2545
|
* - Features and capabilities for each tier
|
|
2546
2546
|
* - Enabled/disabled status for repositories
|
package/sdk/sdk.gen.ts
CHANGED
|
@@ -2285,7 +2285,7 @@ export const updateFile = <ThrowOnError extends boolean = false>(options: Option
|
|
|
2285
2285
|
* - Graphs you create or have been invited to
|
|
2286
2286
|
*
|
|
2287
2287
|
* **Shared Repositories (isRepository: true):**
|
|
2288
|
-
* - Read-only data repositories
|
|
2288
|
+
* - Read-only data repositories (e.g., SEC filings)
|
|
2289
2289
|
* - Access levels: `read`, `write` (for data contributions), `admin`
|
|
2290
2290
|
* - Cannot be selected (each has separate subscription)
|
|
2291
2291
|
* - Require separate subscriptions (personal, cannot be shared)
|
|
@@ -2553,7 +2553,7 @@ export const selectGraph = <ThrowOnError extends boolean = false>(options: Optio
|
|
|
2553
2553
|
*
|
|
2554
2554
|
* Includes:
|
|
2555
2555
|
* - Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
|
|
2556
|
-
* - Shared repository subscriptions
|
|
2556
|
+
* - Shared repository subscriptions - org-level
|
|
2557
2557
|
* - Operation costs and credit information
|
|
2558
2558
|
* - Features and capabilities for each tier
|
|
2559
2559
|
* - Enabled/disabled status for repositories
|
package/sdk/types.gen.d.ts
CHANGED
|
@@ -5519,6 +5519,12 @@ export type UserResponse = {
|
|
|
5519
5519
|
* User's email address
|
|
5520
5520
|
*/
|
|
5521
5521
|
email?: string | null;
|
|
5522
|
+
/**
|
|
5523
|
+
* Email Verified
|
|
5524
|
+
*
|
|
5525
|
+
* Whether user's email is verified
|
|
5526
|
+
*/
|
|
5527
|
+
email_verified?: boolean;
|
|
5522
5528
|
/**
|
|
5523
5529
|
* Accounts
|
|
5524
5530
|
*
|
package/sdk/types.gen.ts
CHANGED
|
@@ -5681,6 +5681,12 @@ export type UserResponse = {
|
|
|
5681
5681
|
* User's email address
|
|
5682
5682
|
*/
|
|
5683
5683
|
email?: string | null;
|
|
5684
|
+
/**
|
|
5685
|
+
* Email Verified
|
|
5686
|
+
*
|
|
5687
|
+
* Whether user's email is verified
|
|
5688
|
+
*/
|
|
5689
|
+
email_verified?: boolean;
|
|
5684
5690
|
/**
|
|
5685
5691
|
* Accounts
|
|
5686
5692
|
*
|
package/sdk.gen.d.ts
CHANGED
|
@@ -1741,7 +1741,7 @@ export declare const updateFile: <ThrowOnError extends boolean = false>(options:
|
|
|
1741
1741
|
* - Graphs you create or have been invited to
|
|
1742
1742
|
*
|
|
1743
1743
|
* **Shared Repositories (isRepository: true):**
|
|
1744
|
-
* - Read-only data repositories
|
|
1744
|
+
* - Read-only data repositories (e.g., SEC filings)
|
|
1745
1745
|
* - Access levels: `read`, `write` (for data contributions), `admin`
|
|
1746
1746
|
* - Cannot be selected (each has separate subscription)
|
|
1747
1747
|
* - Require separate subscriptions (personal, cannot be shared)
|
|
@@ -1975,7 +1975,7 @@ export declare const selectGraph: <ThrowOnError extends boolean = false>(options
|
|
|
1975
1975
|
*
|
|
1976
1976
|
* Includes:
|
|
1977
1977
|
* - Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
|
|
1978
|
-
* - Shared repository subscriptions
|
|
1978
|
+
* - Shared repository subscriptions - org-level
|
|
1979
1979
|
* - Operation costs and credit information
|
|
1980
1980
|
* - Features and capabilities for each tier
|
|
1981
1981
|
* - Enabled/disabled status for repositories
|
package/sdk.gen.js
CHANGED
|
@@ -2272,7 +2272,7 @@ exports.updateFile = updateFile;
|
|
|
2272
2272
|
* - Graphs you create or have been invited to
|
|
2273
2273
|
*
|
|
2274
2274
|
* **Shared Repositories (isRepository: true):**
|
|
2275
|
-
* - Read-only data repositories
|
|
2275
|
+
* - Read-only data repositories (e.g., SEC filings)
|
|
2276
2276
|
* - Access levels: `read`, `write` (for data contributions), `admin`
|
|
2277
2277
|
* - Cannot be selected (each has separate subscription)
|
|
2278
2278
|
* - Require separate subscriptions (personal, cannot be shared)
|
|
@@ -2540,7 +2540,7 @@ exports.selectGraph = selectGraph;
|
|
|
2540
2540
|
*
|
|
2541
2541
|
* Includes:
|
|
2542
2542
|
* - Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
|
|
2543
|
-
* - Shared repository subscriptions
|
|
2543
|
+
* - Shared repository subscriptions - org-level
|
|
2544
2544
|
* - Operation costs and credit information
|
|
2545
2545
|
* - Features and capabilities for each tier
|
|
2546
2546
|
* - Enabled/disabled status for repositories
|
package/sdk.gen.ts
CHANGED
|
@@ -2285,7 +2285,7 @@ export const updateFile = <ThrowOnError extends boolean = false>(options: Option
|
|
|
2285
2285
|
* - Graphs you create or have been invited to
|
|
2286
2286
|
*
|
|
2287
2287
|
* **Shared Repositories (isRepository: true):**
|
|
2288
|
-
* - Read-only data repositories
|
|
2288
|
+
* - Read-only data repositories (e.g., SEC filings)
|
|
2289
2289
|
* - Access levels: `read`, `write` (for data contributions), `admin`
|
|
2290
2290
|
* - Cannot be selected (each has separate subscription)
|
|
2291
2291
|
* - Require separate subscriptions (personal, cannot be shared)
|
|
@@ -2553,7 +2553,7 @@ export const selectGraph = <ThrowOnError extends boolean = false>(options: Optio
|
|
|
2553
2553
|
*
|
|
2554
2554
|
* Includes:
|
|
2555
2555
|
* - Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
|
|
2556
|
-
* - Shared repository subscriptions
|
|
2556
|
+
* - Shared repository subscriptions - org-level
|
|
2557
2557
|
* - Operation costs and credit information
|
|
2558
2558
|
* - Features and capabilities for each tier
|
|
2559
2559
|
* - Enabled/disabled status for repositories
|
package/types.gen.d.ts
CHANGED
|
@@ -5519,6 +5519,12 @@ export type UserResponse = {
|
|
|
5519
5519
|
* User's email address
|
|
5520
5520
|
*/
|
|
5521
5521
|
email?: string | null;
|
|
5522
|
+
/**
|
|
5523
|
+
* Email Verified
|
|
5524
|
+
*
|
|
5525
|
+
* Whether user's email is verified
|
|
5526
|
+
*/
|
|
5527
|
+
email_verified?: boolean;
|
|
5522
5528
|
/**
|
|
5523
5529
|
* Accounts
|
|
5524
5530
|
*
|
package/types.gen.ts
CHANGED
|
@@ -5681,6 +5681,12 @@ export type UserResponse = {
|
|
|
5681
5681
|
* User's email address
|
|
5682
5682
|
*/
|
|
5683
5683
|
email?: string | null;
|
|
5684
|
+
/**
|
|
5685
|
+
* Email Verified
|
|
5686
|
+
*
|
|
5687
|
+
* Whether user's email is verified
|
|
5688
|
+
*/
|
|
5689
|
+
email_verified?: boolean;
|
|
5684
5690
|
/**
|
|
5685
5691
|
* Accounts
|
|
5686
5692
|
*
|