@avallon-labs/sdk 36.8.0-staging.916 → 36.9.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.
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4969,6 +4969,7 @@ declare const ProfilePermissionsItem: {
|
|
|
4969
4969
|
readonly "prompts:write": "prompts:write";
|
|
4970
4970
|
readonly "secrets:read": "secrets:read";
|
|
4971
4971
|
readonly "secrets:write": "secrets:write";
|
|
4972
|
+
readonly "schedules:read": "schedules:read";
|
|
4972
4973
|
readonly "schedules:write": "schedules:write";
|
|
4973
4974
|
};
|
|
4974
4975
|
|
|
@@ -8944,7 +8945,7 @@ declare const useCreateSchedule: <TError = ErrorType<ErrorResponse>>(options?: {
|
|
|
8944
8945
|
swrKey: string | readonly ["/v1/schedules"];
|
|
8945
8946
|
};
|
|
8946
8947
|
/**
|
|
8947
|
-
* List the organization's schedules with pagination and sorting, optionally narrowed to the schedules that trigger one worker with `worker_id`. Requires the `schedules:
|
|
8948
|
+
* List the organization's schedules with pagination and sorting, optionally narrowed to the schedules that trigger one worker with `worker_id`. Requires the `schedules:read` permission.
|
|
8948
8949
|
* @summary List schedules
|
|
8949
8950
|
*/
|
|
8950
8951
|
declare const getListSchedulesUrl: (params?: ListSchedulesParams) => string;
|
|
@@ -8969,7 +8970,7 @@ declare const useListSchedules: <TError = ErrorType<ErrorResponse>>(params?: Lis
|
|
|
8969
8970
|
swrKey: string | false | readonly [any, ...unknown[]] | Record<any, any> | (() => Arguments);
|
|
8970
8971
|
};
|
|
8971
8972
|
/**
|
|
8972
|
-
* Retrieve a single schedule.
|
|
8973
|
+
* Retrieve a single schedule. Requires the `schedules:read` permission.
|
|
8973
8974
|
* @summary Get a schedule
|
|
8974
8975
|
*/
|
|
8975
8976
|
declare const getGetScheduleUrl: (scheduleId: string) => string;
|
package/dist/index.js
CHANGED