@nikcli-ai/sdk 1.135.0 → 1.136.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.
|
@@ -3230,6 +3230,7 @@ export type MobileAuthTokenPublic = {
|
|
|
3230
3230
|
createdAt: number;
|
|
3231
3231
|
lastUsedAt?: number;
|
|
3232
3232
|
expiresAt?: number;
|
|
3233
|
+
scope?: string;
|
|
3233
3234
|
};
|
|
3234
3235
|
export type MobileProject = {
|
|
3235
3236
|
id: string;
|
|
@@ -7019,6 +7020,10 @@ export type SyncEventPushErrors = {
|
|
|
7019
7020
|
* Unauthorized
|
|
7020
7021
|
*/
|
|
7021
7022
|
401: unknown;
|
|
7023
|
+
/**
|
|
7024
|
+
* Rate limit exceeded
|
|
7025
|
+
*/
|
|
7026
|
+
429: unknown;
|
|
7022
7027
|
};
|
|
7023
7028
|
export type SyncEventPushResponses = {
|
|
7024
7029
|
/**
|