@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 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:write` permission.
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
@@ -4955,6 +4955,7 @@ var ProfilePermissionsItem = {
4955
4955
  "prompts:write": "prompts:write",
4956
4956
  "secrets:read": "secrets:read",
4957
4957
  "secrets:write": "secrets:write",
4958
+ "schedules:read": "schedules:read",
4958
4959
  "schedules:write": "schedules:write"
4959
4960
  };
4960
4961