@oxide/turnstile.ts 0.6.4 → 0.6.5

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.
@@ -451,8 +451,11 @@ type EmailConfig = {
451
451
  'subject': string;
452
452
  'textTemplate': string;
453
453
  };
454
+ type TransitionMessage = 'Default' | 'Omit' | {
455
+ 'Custom': EmailConfig;
456
+ };
454
457
  type TransitionBody = {
455
- 'message'?: EmailConfig;
458
+ 'message': TransitionMessage;
456
459
  };
457
460
  type BatchParameter_for_TransitionBody = {
458
461
  'all': TransitionBody;
@@ -799,6 +802,9 @@ type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchE
799
802
  'state': OperationState;
800
803
  'updatedAt': Date;
801
804
  };
805
+ type OptionalTransitionBody = {
806
+ 'message'?: EmailConfig;
807
+ };
802
808
  type RegisterApplicant = {
803
809
  'email': string;
804
810
  };
@@ -1260,19 +1266,19 @@ declare class Api extends HttpClient {
1260
1266
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1261
1267
  transitionApplicationToInterviewing: ({ path, body, }: {
1262
1268
  path: TransitionApplicationToInterviewingPathParams;
1263
- body: TransitionBody;
1269
+ body: OptionalTransitionBody;
1264
1270
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1265
1271
  transitionApplicationToNextSteps: ({ path, body, }: {
1266
1272
  path: TransitionApplicationToNextStepsPathParams;
1267
- body: TransitionBody;
1273
+ body: OptionalTransitionBody;
1268
1274
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1269
1275
  transitionApplicationToOffer: ({ path, body, }: {
1270
1276
  path: TransitionApplicationToOfferPathParams;
1271
- body: TransitionBody;
1277
+ body: OptionalTransitionBody;
1272
1278
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1273
1279
  transitionApplicationToWithdrawn: ({ path, body, }: {
1274
1280
  path: TransitionApplicationToWithdrawnPathParams;
1275
- body: TransitionBody;
1281
+ body: OptionalTransitionBody;
1276
1282
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1277
1283
  listApplicationSummaries: ({ query, }: {
1278
1284
  query?: ListApplicationSummariesQueryParams;
@@ -1569,4 +1575,4 @@ declare class Api extends HttpClient {
1569
1575
  ws: {};
1570
1576
  }
1571
1577
 
1572
- export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type TypedUuidForMagicLinkAttemptId as a$, type Application as a0, type DocumentKind as a1, type DocumentSource as a2, type Document as a3, type ApplicationBundle as a4, type TypedUuidForApplicationInterviewCodeId as a5, type ApplicationInterviewCode as a6, type TypedUuidForApplicationStateRecordId as a7, type ApplicationStateRecord as a8, type ReviewScore as a9, type RecipientId as aA, type NotificationStatus as aB, type Notification_for_RenderedEmail as aC, type CreatedAssignment as aD, type CreateReviewAssignmentsResponse as aE, type CreateRole as aF, type CreatedApplication as aG, type Department as aH, type DocumentUploadUrlResponse as aI, type EmailApplicantBody as aJ, type GetUserResponse_for_TurnstilePermission as aK, type InitialApiKeyResponse_for_TurnstilePermission as aL, type TypedUuidForMagicLinkSecretId as aM, type InitialMagicLinkSecretResponse as aN, type TypedUuidForOAuthSecretId as aO, type InitialOAuthClientSecretResponse as aP, type TypedUuidForInterviewAttendeeId as aQ, type InterviewAttendee as aR, type Interview as aS, type Interviewer as aT, type Jwk as aU, type Jwks as aV, type Listing as aW, type TypedUuidForMagicLinkRedirectUriId as aX, type MagicLinkRedirectUri as aY, type MagicLinkSecret as aZ, type MagicLink as a_, type Reviews as aa, type ExpandedApplicationSummary as ab, type Evaluator as ac, type ApplicationSummariesResponse as ad, type ApplicationSummaryResponse as ae, type AttachDocument as af, type EmailConfig as ag, type TransitionBody as ah, type BatchParameter_for_TransitionBody as ai, type ViewApplication as aj, type BatchParameter_for_ViewApplication as ak, type CreateApplication as al, type CreateDepartment as am, type CreateDocument as an, type RoleListingStatus as ao, type CreateListing as ap, type CreateMapper as aq, type CreateReview as ar, type CreateReviewAssignments as as, type ReviewAssignmentCreationError as at, type TypedUuidForReviewAssignmentId as au, type ReviewAssignmentState as av, type ReviewAssignment as aw, type TypedUuidForNotificationId as ax, type NotificationMedium as ay, type RenderedEmail as az, type ApiResult as b, type TransitionApplicationToNextStepsPathParams as b$, type MagicLinkExchangeRequest as b0, type MagicLinkExchangeResponse as b1, type MagicLinkMedium as b2, type MagicLinkSendRequest as b3, type MagicLinkSendResponse as b4, type Mapper as b5, type OAuthAuthzCodeExchangeBody as b6, type OAuthAuthzCodeExchangeResponse as b7, type TypedUuidForOAuthRedirectUriId as b8, type OAuthClientRedirectUri as b9, type UpdateReview as bA, type ScalarApplicationState as bB, type GetApiUserPathParams as bC, type UpdateApiUserPathParams as bD, type SetApiUserContactEmailPathParams as bE, type AddApiUserToGroupPathParams as bF, type RemoveApiUserFromGroupPathParams as bG, type LinkProviderPathParams as bH, type ListApiUserTokensPathParams as bI, type CreateApiUserTokenPathParams as bJ, type GetApiUserTokenPathParams as bK, type DeleteApiUserTokenPathParams as bL, type CreateLinkTokenPathParams as bM, type ListApplicantsQueryParams as bN, type ViewApplicantPathParams as bO, type UpdateApplicantContactPathParams as bP, type ViewApplicationPathParams as bQ, type ListApplicationReviewAssignmentsPathParams as bR, type CreateApplicationReviewAssignmentsPathParams as bS, type ViewApplicationBundlePathParams as bT, type AttachDocumentPathParams as bU, type CreateDocumentUploadUrlPathParams as bV, type GetApplicationInterviewCodePathParams as bW, type SubmitApplicationPathParams as bX, type TransitionApplicationToDeclinedPathParams as bY, type TransitionApplicationToDeferredPathParams as bZ, type TransitionApplicationToInterviewingPathParams as b_, type OAuthClientSecret as ba, type OAuthClient as bb, type OAuthProviderName as bc, type OAuthProviderInfo as bd, type OpenIdConfiguration as be, type OperationState as bf, type OperationTaskState as bg, type TypedUuidForOperationTaskId as bh, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bi, type Operation_for_TurnstilePermission_and_String as bj, type TransitionApplicationToDeclinedBatchEndpoint as bk, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bl, type TransitionApplicationToDeferredBatchEndpoint as bm, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bn, type RegisterApplicant as bo, type Review as bp, type Reviewer as bq, type ReviewerInfo as br, type ReviewInfo as bs, type Role as bt, type TransitionApplicationToDeclinedBatch as bu, type TransitionApplicationToDeferredBatch as bv, type UpdateApplicantContact as bw, type UpdateDocument as bx, type UpdateDocumentStatus as by, type UpdateListing as bz, type TypedUuidForUserId as c, type TransitionApplicationToOfferPathParams as c0, type TransitionApplicationToWithdrawnPathParams as c1, type ListApplicationSummariesQueryParams as c2, type ViewApplicationSummaryPathParams as c3, type ListOperationsQueryParams as c4, type GetOperationPathParams as c5, type ListOperationTasksQueryParams as c6, type ViewDepartmentPathParams as c7, type ListDocumentsQueryParams as c8, type ViewDocumentPathParams as c9, type DeleteMapperPathParams as cA, type ListNotificationsQueryParams as cB, type EmailApplicantPathParams as cC, type GetOauthClientPathParams as cD, type CreateOauthClientRedirectUriPathParams as cE, type DeleteOauthClientRedirectUriPathParams as cF, type CreateOauthClientSecretPathParams as cG, type DeleteOauthClientSecretPathParams as cH, type ListReviewsQueryParams as cI, type ViewReviewPathParams as cJ, type UpdateReviewPathParams as cK, type DeleteReviewPathParams as cL, type ListReviewersQueryParams as cM, type ViewRolePathParams as cN, type ErrorBody as cO, type ErrorResult as cP, type UpdateDocumentPathParams as ca, type DeleteDocumentPathParams as cb, type ViewDocumentDataPathParams as cc, type UpdateDocumentStatusPathParams as cd, type UpdateGroupPathParams as ce, type DeleteGroupPathParams as cf, type ListInterviewsQueryParams as cg, type ListInterviewersQueryParams as ch, type ViewListingPathParams as ci, type UpdateListingPathParams as cj, type UpdateListingStatePathParams as ck, type MagicLinkExchangePathParams as cl, type MagicLinkSendPathParams as cm, type AuthzCodeRedirectPathParams as cn, type AuthzCodeRedirectQueryParams as co, type AuthzCodeCallbackPathParams as cp, type AuthzCodeCallbackQueryParams as cq, type AuthzCodeExchangePathParams as cr, type GetDeviceProviderPathParams as cs, type ExchangeDeviceTokenPathParams as ct, type GetMagicLinkPathParams as cu, type CreateMagicLinkRedirectUriPathParams as cv, type DeleteMagicLinkRedirectUriPathParams as cw, type CreateMagicLinkSecretPathParams as cx, type DeleteMagicLinkSecretPathParams as cy, type GetMappersQueryParams as cz, type TypedUuidForApplicationId as d, type TypedUuidForDocumentId as e, type TypedUuidForEmployeeId as f, type TypedUuidForOnboardingId as g, type TypedUuidForDepartmentId as h, type TypedUuidForRoleId as i, type TypedUuidForListingId as j, type TypedUuidForReviewerId as k, type TypedUuidForReviewId as l, type TypedUuidForInterviewerId as m, type TypedUuidForInterviewId as n, type TypedUuidForBackgroundCheckId as o, type TypedUuidForOperationId as p, type TypedUuidForApiKeyId as q, type TypedUuidForAccessGroupId as r, type TypedUuidForMapperId as s, type TypedUuidForOAuthClientId as t, type TypedUuidForMagicLinkId as u, type TurnstilePermission as v, type AccessGroupUpdateParams_for_TurnstilePermission as w, type AccessGroup_for_TurnstilePermission as x, type AccessTokenExchangeRequest as y, type AddGroupBody as z };
1578
+ export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type MagicLink as a$, type Application as a0, type DocumentKind as a1, type DocumentSource as a2, type Document as a3, type ApplicationBundle as a4, type TypedUuidForApplicationInterviewCodeId as a5, type ApplicationInterviewCode as a6, type TypedUuidForApplicationStateRecordId as a7, type ApplicationStateRecord as a8, type ReviewScore as a9, type RenderedEmail as aA, type RecipientId as aB, type NotificationStatus as aC, type Notification_for_RenderedEmail as aD, type CreatedAssignment as aE, type CreateReviewAssignmentsResponse as aF, type CreateRole as aG, type CreatedApplication as aH, type Department as aI, type DocumentUploadUrlResponse as aJ, type EmailApplicantBody as aK, type GetUserResponse_for_TurnstilePermission as aL, type InitialApiKeyResponse_for_TurnstilePermission as aM, type TypedUuidForMagicLinkSecretId as aN, type InitialMagicLinkSecretResponse as aO, type TypedUuidForOAuthSecretId as aP, type InitialOAuthClientSecretResponse as aQ, type TypedUuidForInterviewAttendeeId as aR, type InterviewAttendee as aS, type Interview as aT, type Interviewer as aU, type Jwk as aV, type Jwks as aW, type Listing as aX, type TypedUuidForMagicLinkRedirectUriId as aY, type MagicLinkRedirectUri as aZ, type MagicLinkSecret as a_, type Reviews as aa, type ExpandedApplicationSummary as ab, type Evaluator as ac, type ApplicationSummariesResponse as ad, type ApplicationSummaryResponse as ae, type AttachDocument as af, type EmailConfig as ag, type TransitionMessage as ah, type TransitionBody as ai, type BatchParameter_for_TransitionBody as aj, type ViewApplication as ak, type BatchParameter_for_ViewApplication as al, type CreateApplication as am, type CreateDepartment as an, type CreateDocument as ao, type RoleListingStatus as ap, type CreateListing as aq, type CreateMapper as ar, type CreateReview as as, type CreateReviewAssignments as at, type ReviewAssignmentCreationError as au, type TypedUuidForReviewAssignmentId as av, type ReviewAssignmentState as aw, type ReviewAssignment as ax, type TypedUuidForNotificationId as ay, type NotificationMedium as az, type ApiResult as b, type TransitionApplicationToDeferredPathParams as b$, type TypedUuidForMagicLinkAttemptId as b0, type MagicLinkExchangeRequest as b1, type MagicLinkExchangeResponse as b2, type MagicLinkMedium as b3, type MagicLinkSendRequest as b4, type MagicLinkSendResponse as b5, type Mapper as b6, type OAuthAuthzCodeExchangeBody as b7, type OAuthAuthzCodeExchangeResponse as b8, type TypedUuidForOAuthRedirectUriId as b9, type UpdateDocumentStatus as bA, type UpdateListing as bB, type UpdateReview as bC, type ScalarApplicationState as bD, type GetApiUserPathParams as bE, type UpdateApiUserPathParams as bF, type SetApiUserContactEmailPathParams as bG, type AddApiUserToGroupPathParams as bH, type RemoveApiUserFromGroupPathParams as bI, type LinkProviderPathParams as bJ, type ListApiUserTokensPathParams as bK, type CreateApiUserTokenPathParams as bL, type GetApiUserTokenPathParams as bM, type DeleteApiUserTokenPathParams as bN, type CreateLinkTokenPathParams as bO, type ListApplicantsQueryParams as bP, type ViewApplicantPathParams as bQ, type UpdateApplicantContactPathParams as bR, type ViewApplicationPathParams as bS, type ListApplicationReviewAssignmentsPathParams as bT, type CreateApplicationReviewAssignmentsPathParams as bU, type ViewApplicationBundlePathParams as bV, type AttachDocumentPathParams as bW, type CreateDocumentUploadUrlPathParams as bX, type GetApplicationInterviewCodePathParams as bY, type SubmitApplicationPathParams as bZ, type TransitionApplicationToDeclinedPathParams as b_, type OAuthClientRedirectUri as ba, type OAuthClientSecret as bb, type OAuthClient as bc, type OAuthProviderName as bd, type OAuthProviderInfo as be, type OpenIdConfiguration as bf, type OperationState as bg, type OperationTaskState as bh, type TypedUuidForOperationTaskId as bi, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bj, type Operation_for_TurnstilePermission_and_String as bk, type TransitionApplicationToDeclinedBatchEndpoint as bl, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bm, type TransitionApplicationToDeferredBatchEndpoint as bn, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bo, type OptionalTransitionBody as bp, type RegisterApplicant as bq, type Review as br, type Reviewer as bs, type ReviewerInfo as bt, type ReviewInfo as bu, type Role as bv, type TransitionApplicationToDeclinedBatch as bw, type TransitionApplicationToDeferredBatch as bx, type UpdateApplicantContact as by, type UpdateDocument as bz, type TypedUuidForUserId as c, type TransitionApplicationToInterviewingPathParams as c0, type TransitionApplicationToNextStepsPathParams as c1, type TransitionApplicationToOfferPathParams as c2, type TransitionApplicationToWithdrawnPathParams as c3, type ListApplicationSummariesQueryParams as c4, type ViewApplicationSummaryPathParams as c5, type ListOperationsQueryParams as c6, type GetOperationPathParams as c7, type ListOperationTasksQueryParams as c8, type ViewDepartmentPathParams as c9, type DeleteMagicLinkSecretPathParams as cA, type GetMappersQueryParams as cB, type DeleteMapperPathParams as cC, type ListNotificationsQueryParams as cD, type EmailApplicantPathParams as cE, type GetOauthClientPathParams as cF, type CreateOauthClientRedirectUriPathParams as cG, type DeleteOauthClientRedirectUriPathParams as cH, type CreateOauthClientSecretPathParams as cI, type DeleteOauthClientSecretPathParams as cJ, type ListReviewsQueryParams as cK, type ViewReviewPathParams as cL, type UpdateReviewPathParams as cM, type DeleteReviewPathParams as cN, type ListReviewersQueryParams as cO, type ViewRolePathParams as cP, type ErrorBody as cQ, type ErrorResult as cR, type ListDocumentsQueryParams as ca, type ViewDocumentPathParams as cb, type UpdateDocumentPathParams as cc, type DeleteDocumentPathParams as cd, type ViewDocumentDataPathParams as ce, type UpdateDocumentStatusPathParams as cf, type UpdateGroupPathParams as cg, type DeleteGroupPathParams as ch, type ListInterviewsQueryParams as ci, type ListInterviewersQueryParams as cj, type ViewListingPathParams as ck, type UpdateListingPathParams as cl, type UpdateListingStatePathParams as cm, type MagicLinkExchangePathParams as cn, type MagicLinkSendPathParams as co, type AuthzCodeRedirectPathParams as cp, type AuthzCodeRedirectQueryParams as cq, type AuthzCodeCallbackPathParams as cr, type AuthzCodeCallbackQueryParams as cs, type AuthzCodeExchangePathParams as ct, type GetDeviceProviderPathParams as cu, type ExchangeDeviceTokenPathParams as cv, type GetMagicLinkPathParams as cw, type CreateMagicLinkRedirectUriPathParams as cx, type DeleteMagicLinkRedirectUriPathParams as cy, type CreateMagicLinkSecretPathParams as cz, type TypedUuidForApplicationId as d, type TypedUuidForDocumentId as e, type TypedUuidForEmployeeId as f, type TypedUuidForOnboardingId as g, type TypedUuidForDepartmentId as h, type TypedUuidForRoleId as i, type TypedUuidForListingId as j, type TypedUuidForReviewerId as k, type TypedUuidForReviewId as l, type TypedUuidForInterviewerId as m, type TypedUuidForInterviewId as n, type TypedUuidForBackgroundCheckId as o, type TypedUuidForOperationId as p, type TypedUuidForApiKeyId as q, type TypedUuidForAccessGroupId as r, type TypedUuidForMapperId as s, type TypedUuidForOAuthClientId as t, type TypedUuidForMagicLinkId as u, type TurnstilePermission as v, type AccessGroupUpdateParams_for_TurnstilePermission as w, type AccessGroup_for_TurnstilePermission as x, type AccessTokenExchangeRequest as y, type AddGroupBody as z };
@@ -451,8 +451,11 @@ type EmailConfig = {
451
451
  'subject': string;
452
452
  'textTemplate': string;
453
453
  };
454
+ type TransitionMessage = 'Default' | 'Omit' | {
455
+ 'Custom': EmailConfig;
456
+ };
454
457
  type TransitionBody = {
455
- 'message'?: EmailConfig;
458
+ 'message': TransitionMessage;
456
459
  };
457
460
  type BatchParameter_for_TransitionBody = {
458
461
  'all': TransitionBody;
@@ -799,6 +802,9 @@ type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchE
799
802
  'state': OperationState;
800
803
  'updatedAt': Date;
801
804
  };
805
+ type OptionalTransitionBody = {
806
+ 'message'?: EmailConfig;
807
+ };
802
808
  type RegisterApplicant = {
803
809
  'email': string;
804
810
  };
@@ -1260,19 +1266,19 @@ declare class Api extends HttpClient {
1260
1266
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1261
1267
  transitionApplicationToInterviewing: ({ path, body, }: {
1262
1268
  path: TransitionApplicationToInterviewingPathParams;
1263
- body: TransitionBody;
1269
+ body: OptionalTransitionBody;
1264
1270
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1265
1271
  transitionApplicationToNextSteps: ({ path, body, }: {
1266
1272
  path: TransitionApplicationToNextStepsPathParams;
1267
- body: TransitionBody;
1273
+ body: OptionalTransitionBody;
1268
1274
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1269
1275
  transitionApplicationToOffer: ({ path, body, }: {
1270
1276
  path: TransitionApplicationToOfferPathParams;
1271
- body: TransitionBody;
1277
+ body: OptionalTransitionBody;
1272
1278
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1273
1279
  transitionApplicationToWithdrawn: ({ path, body, }: {
1274
1280
  path: TransitionApplicationToWithdrawnPathParams;
1275
- body: TransitionBody;
1281
+ body: OptionalTransitionBody;
1276
1282
  }, params?: FetchParams) => Promise<ApiResult<ApplicationStateRecord>>;
1277
1283
  listApplicationSummaries: ({ query, }: {
1278
1284
  query?: ListApplicationSummariesQueryParams;
@@ -1569,4 +1575,4 @@ declare class Api extends HttpClient {
1569
1575
  ws: {};
1570
1576
  }
1571
1577
 
1572
- export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type TypedUuidForMagicLinkAttemptId as a$, type Application as a0, type DocumentKind as a1, type DocumentSource as a2, type Document as a3, type ApplicationBundle as a4, type TypedUuidForApplicationInterviewCodeId as a5, type ApplicationInterviewCode as a6, type TypedUuidForApplicationStateRecordId as a7, type ApplicationStateRecord as a8, type ReviewScore as a9, type RecipientId as aA, type NotificationStatus as aB, type Notification_for_RenderedEmail as aC, type CreatedAssignment as aD, type CreateReviewAssignmentsResponse as aE, type CreateRole as aF, type CreatedApplication as aG, type Department as aH, type DocumentUploadUrlResponse as aI, type EmailApplicantBody as aJ, type GetUserResponse_for_TurnstilePermission as aK, type InitialApiKeyResponse_for_TurnstilePermission as aL, type TypedUuidForMagicLinkSecretId as aM, type InitialMagicLinkSecretResponse as aN, type TypedUuidForOAuthSecretId as aO, type InitialOAuthClientSecretResponse as aP, type TypedUuidForInterviewAttendeeId as aQ, type InterviewAttendee as aR, type Interview as aS, type Interviewer as aT, type Jwk as aU, type Jwks as aV, type Listing as aW, type TypedUuidForMagicLinkRedirectUriId as aX, type MagicLinkRedirectUri as aY, type MagicLinkSecret as aZ, type MagicLink as a_, type Reviews as aa, type ExpandedApplicationSummary as ab, type Evaluator as ac, type ApplicationSummariesResponse as ad, type ApplicationSummaryResponse as ae, type AttachDocument as af, type EmailConfig as ag, type TransitionBody as ah, type BatchParameter_for_TransitionBody as ai, type ViewApplication as aj, type BatchParameter_for_ViewApplication as ak, type CreateApplication as al, type CreateDepartment as am, type CreateDocument as an, type RoleListingStatus as ao, type CreateListing as ap, type CreateMapper as aq, type CreateReview as ar, type CreateReviewAssignments as as, type ReviewAssignmentCreationError as at, type TypedUuidForReviewAssignmentId as au, type ReviewAssignmentState as av, type ReviewAssignment as aw, type TypedUuidForNotificationId as ax, type NotificationMedium as ay, type RenderedEmail as az, type ApiResult as b, type TransitionApplicationToNextStepsPathParams as b$, type MagicLinkExchangeRequest as b0, type MagicLinkExchangeResponse as b1, type MagicLinkMedium as b2, type MagicLinkSendRequest as b3, type MagicLinkSendResponse as b4, type Mapper as b5, type OAuthAuthzCodeExchangeBody as b6, type OAuthAuthzCodeExchangeResponse as b7, type TypedUuidForOAuthRedirectUriId as b8, type OAuthClientRedirectUri as b9, type UpdateReview as bA, type ScalarApplicationState as bB, type GetApiUserPathParams as bC, type UpdateApiUserPathParams as bD, type SetApiUserContactEmailPathParams as bE, type AddApiUserToGroupPathParams as bF, type RemoveApiUserFromGroupPathParams as bG, type LinkProviderPathParams as bH, type ListApiUserTokensPathParams as bI, type CreateApiUserTokenPathParams as bJ, type GetApiUserTokenPathParams as bK, type DeleteApiUserTokenPathParams as bL, type CreateLinkTokenPathParams as bM, type ListApplicantsQueryParams as bN, type ViewApplicantPathParams as bO, type UpdateApplicantContactPathParams as bP, type ViewApplicationPathParams as bQ, type ListApplicationReviewAssignmentsPathParams as bR, type CreateApplicationReviewAssignmentsPathParams as bS, type ViewApplicationBundlePathParams as bT, type AttachDocumentPathParams as bU, type CreateDocumentUploadUrlPathParams as bV, type GetApplicationInterviewCodePathParams as bW, type SubmitApplicationPathParams as bX, type TransitionApplicationToDeclinedPathParams as bY, type TransitionApplicationToDeferredPathParams as bZ, type TransitionApplicationToInterviewingPathParams as b_, type OAuthClientSecret as ba, type OAuthClient as bb, type OAuthProviderName as bc, type OAuthProviderInfo as bd, type OpenIdConfiguration as be, type OperationState as bf, type OperationTaskState as bg, type TypedUuidForOperationTaskId as bh, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bi, type Operation_for_TurnstilePermission_and_String as bj, type TransitionApplicationToDeclinedBatchEndpoint as bk, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bl, type TransitionApplicationToDeferredBatchEndpoint as bm, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bn, type RegisterApplicant as bo, type Review as bp, type Reviewer as bq, type ReviewerInfo as br, type ReviewInfo as bs, type Role as bt, type TransitionApplicationToDeclinedBatch as bu, type TransitionApplicationToDeferredBatch as bv, type UpdateApplicantContact as bw, type UpdateDocument as bx, type UpdateDocumentStatus as by, type UpdateListing as bz, type TypedUuidForUserId as c, type TransitionApplicationToOfferPathParams as c0, type TransitionApplicationToWithdrawnPathParams as c1, type ListApplicationSummariesQueryParams as c2, type ViewApplicationSummaryPathParams as c3, type ListOperationsQueryParams as c4, type GetOperationPathParams as c5, type ListOperationTasksQueryParams as c6, type ViewDepartmentPathParams as c7, type ListDocumentsQueryParams as c8, type ViewDocumentPathParams as c9, type DeleteMapperPathParams as cA, type ListNotificationsQueryParams as cB, type EmailApplicantPathParams as cC, type GetOauthClientPathParams as cD, type CreateOauthClientRedirectUriPathParams as cE, type DeleteOauthClientRedirectUriPathParams as cF, type CreateOauthClientSecretPathParams as cG, type DeleteOauthClientSecretPathParams as cH, type ListReviewsQueryParams as cI, type ViewReviewPathParams as cJ, type UpdateReviewPathParams as cK, type DeleteReviewPathParams as cL, type ListReviewersQueryParams as cM, type ViewRolePathParams as cN, type ErrorBody as cO, type ErrorResult as cP, type UpdateDocumentPathParams as ca, type DeleteDocumentPathParams as cb, type ViewDocumentDataPathParams as cc, type UpdateDocumentStatusPathParams as cd, type UpdateGroupPathParams as ce, type DeleteGroupPathParams as cf, type ListInterviewsQueryParams as cg, type ListInterviewersQueryParams as ch, type ViewListingPathParams as ci, type UpdateListingPathParams as cj, type UpdateListingStatePathParams as ck, type MagicLinkExchangePathParams as cl, type MagicLinkSendPathParams as cm, type AuthzCodeRedirectPathParams as cn, type AuthzCodeRedirectQueryParams as co, type AuthzCodeCallbackPathParams as cp, type AuthzCodeCallbackQueryParams as cq, type AuthzCodeExchangePathParams as cr, type GetDeviceProviderPathParams as cs, type ExchangeDeviceTokenPathParams as ct, type GetMagicLinkPathParams as cu, type CreateMagicLinkRedirectUriPathParams as cv, type DeleteMagicLinkRedirectUriPathParams as cw, type CreateMagicLinkSecretPathParams as cx, type DeleteMagicLinkSecretPathParams as cy, type GetMappersQueryParams as cz, type TypedUuidForApplicationId as d, type TypedUuidForDocumentId as e, type TypedUuidForEmployeeId as f, type TypedUuidForOnboardingId as g, type TypedUuidForDepartmentId as h, type TypedUuidForRoleId as i, type TypedUuidForListingId as j, type TypedUuidForReviewerId as k, type TypedUuidForReviewId as l, type TypedUuidForInterviewerId as m, type TypedUuidForInterviewId as n, type TypedUuidForBackgroundCheckId as o, type TypedUuidForOperationId as p, type TypedUuidForApiKeyId as q, type TypedUuidForAccessGroupId as r, type TypedUuidForMapperId as s, type TypedUuidForOAuthClientId as t, type TypedUuidForMagicLinkId as u, type TurnstilePermission as v, type AccessGroupUpdateParams_for_TurnstilePermission as w, type AccessGroup_for_TurnstilePermission as x, type AccessTokenExchangeRequest as y, type AddGroupBody as z };
1578
+ export { type ApplicationState as $, type ApiConfig as A, type AddMagicLinkRedirectBody as B, type AddOAuthClientRedirectBody as C, type DocumentParent as D, type ApiKeyCreateParams_for_TurnstilePermission as E, type FullParams as F, type ApiKeyResponse_for_TurnstilePermission as G, type TypedUuidForUserProviderId as H, type ApiUserContactEmail as I, type ApiUserEmailUpdateParams as J, type ApiUserProvider as K, type ApiUser_for_TurnstilePermission as L, type ApiUserInfo_for_TurnstilePermission as M, type ApiUserLinkRequestPayload as N, type ApiUserLinkRequestResponse as O, type Permissions_for_TurnstilePermission as P, type ApiUserProviderLinkPayload as Q, type ApiUserUpdateParams_for_TurnstilePermission as R, type SecretString as S, type TypedUuidForApplicantId as T, type Applicant as U, type TypedUuidForApplicantContactId as V, type ApplicantContactField as W, type ApplicantContact as X, type ApplicantInfo as Y, type InterviewingState as Z, type OfferState as _, Api as a, type MagicLink as a$, type Application as a0, type DocumentKind as a1, type DocumentSource as a2, type Document as a3, type ApplicationBundle as a4, type TypedUuidForApplicationInterviewCodeId as a5, type ApplicationInterviewCode as a6, type TypedUuidForApplicationStateRecordId as a7, type ApplicationStateRecord as a8, type ReviewScore as a9, type RenderedEmail as aA, type RecipientId as aB, type NotificationStatus as aC, type Notification_for_RenderedEmail as aD, type CreatedAssignment as aE, type CreateReviewAssignmentsResponse as aF, type CreateRole as aG, type CreatedApplication as aH, type Department as aI, type DocumentUploadUrlResponse as aJ, type EmailApplicantBody as aK, type GetUserResponse_for_TurnstilePermission as aL, type InitialApiKeyResponse_for_TurnstilePermission as aM, type TypedUuidForMagicLinkSecretId as aN, type InitialMagicLinkSecretResponse as aO, type TypedUuidForOAuthSecretId as aP, type InitialOAuthClientSecretResponse as aQ, type TypedUuidForInterviewAttendeeId as aR, type InterviewAttendee as aS, type Interview as aT, type Interviewer as aU, type Jwk as aV, type Jwks as aW, type Listing as aX, type TypedUuidForMagicLinkRedirectUriId as aY, type MagicLinkRedirectUri as aZ, type MagicLinkSecret as a_, type Reviews as aa, type ExpandedApplicationSummary as ab, type Evaluator as ac, type ApplicationSummariesResponse as ad, type ApplicationSummaryResponse as ae, type AttachDocument as af, type EmailConfig as ag, type TransitionMessage as ah, type TransitionBody as ai, type BatchParameter_for_TransitionBody as aj, type ViewApplication as ak, type BatchParameter_for_ViewApplication as al, type CreateApplication as am, type CreateDepartment as an, type CreateDocument as ao, type RoleListingStatus as ap, type CreateListing as aq, type CreateMapper as ar, type CreateReview as as, type CreateReviewAssignments as at, type ReviewAssignmentCreationError as au, type TypedUuidForReviewAssignmentId as av, type ReviewAssignmentState as aw, type ReviewAssignment as ax, type TypedUuidForNotificationId as ay, type NotificationMedium as az, type ApiResult as b, type TransitionApplicationToDeferredPathParams as b$, type TypedUuidForMagicLinkAttemptId as b0, type MagicLinkExchangeRequest as b1, type MagicLinkExchangeResponse as b2, type MagicLinkMedium as b3, type MagicLinkSendRequest as b4, type MagicLinkSendResponse as b5, type Mapper as b6, type OAuthAuthzCodeExchangeBody as b7, type OAuthAuthzCodeExchangeResponse as b8, type TypedUuidForOAuthRedirectUriId as b9, type UpdateDocumentStatus as bA, type UpdateListing as bB, type UpdateReview as bC, type ScalarApplicationState as bD, type GetApiUserPathParams as bE, type UpdateApiUserPathParams as bF, type SetApiUserContactEmailPathParams as bG, type AddApiUserToGroupPathParams as bH, type RemoveApiUserFromGroupPathParams as bI, type LinkProviderPathParams as bJ, type ListApiUserTokensPathParams as bK, type CreateApiUserTokenPathParams as bL, type GetApiUserTokenPathParams as bM, type DeleteApiUserTokenPathParams as bN, type CreateLinkTokenPathParams as bO, type ListApplicantsQueryParams as bP, type ViewApplicantPathParams as bQ, type UpdateApplicantContactPathParams as bR, type ViewApplicationPathParams as bS, type ListApplicationReviewAssignmentsPathParams as bT, type CreateApplicationReviewAssignmentsPathParams as bU, type ViewApplicationBundlePathParams as bV, type AttachDocumentPathParams as bW, type CreateDocumentUploadUrlPathParams as bX, type GetApplicationInterviewCodePathParams as bY, type SubmitApplicationPathParams as bZ, type TransitionApplicationToDeclinedPathParams as b_, type OAuthClientRedirectUri as ba, type OAuthClientSecret as bb, type OAuthClient as bc, type OAuthProviderName as bd, type OAuthProviderInfo as be, type OpenIdConfiguration as bf, type OperationState as bg, type OperationTaskState as bh, type TypedUuidForOperationTaskId as bi, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bj, type Operation_for_TurnstilePermission_and_String as bk, type TransitionApplicationToDeclinedBatchEndpoint as bl, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bm, type TransitionApplicationToDeferredBatchEndpoint as bn, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bo, type OptionalTransitionBody as bp, type RegisterApplicant as bq, type Review as br, type Reviewer as bs, type ReviewerInfo as bt, type ReviewInfo as bu, type Role as bv, type TransitionApplicationToDeclinedBatch as bw, type TransitionApplicationToDeferredBatch as bx, type UpdateApplicantContact as by, type UpdateDocument as bz, type TypedUuidForUserId as c, type TransitionApplicationToInterviewingPathParams as c0, type TransitionApplicationToNextStepsPathParams as c1, type TransitionApplicationToOfferPathParams as c2, type TransitionApplicationToWithdrawnPathParams as c3, type ListApplicationSummariesQueryParams as c4, type ViewApplicationSummaryPathParams as c5, type ListOperationsQueryParams as c6, type GetOperationPathParams as c7, type ListOperationTasksQueryParams as c8, type ViewDepartmentPathParams as c9, type DeleteMagicLinkSecretPathParams as cA, type GetMappersQueryParams as cB, type DeleteMapperPathParams as cC, type ListNotificationsQueryParams as cD, type EmailApplicantPathParams as cE, type GetOauthClientPathParams as cF, type CreateOauthClientRedirectUriPathParams as cG, type DeleteOauthClientRedirectUriPathParams as cH, type CreateOauthClientSecretPathParams as cI, type DeleteOauthClientSecretPathParams as cJ, type ListReviewsQueryParams as cK, type ViewReviewPathParams as cL, type UpdateReviewPathParams as cM, type DeleteReviewPathParams as cN, type ListReviewersQueryParams as cO, type ViewRolePathParams as cP, type ErrorBody as cQ, type ErrorResult as cR, type ListDocumentsQueryParams as ca, type ViewDocumentPathParams as cb, type UpdateDocumentPathParams as cc, type DeleteDocumentPathParams as cd, type ViewDocumentDataPathParams as ce, type UpdateDocumentStatusPathParams as cf, type UpdateGroupPathParams as cg, type DeleteGroupPathParams as ch, type ListInterviewsQueryParams as ci, type ListInterviewersQueryParams as cj, type ViewListingPathParams as ck, type UpdateListingPathParams as cl, type UpdateListingStatePathParams as cm, type MagicLinkExchangePathParams as cn, type MagicLinkSendPathParams as co, type AuthzCodeRedirectPathParams as cp, type AuthzCodeRedirectQueryParams as cq, type AuthzCodeCallbackPathParams as cr, type AuthzCodeCallbackQueryParams as cs, type AuthzCodeExchangePathParams as ct, type GetDeviceProviderPathParams as cu, type ExchangeDeviceTokenPathParams as cv, type GetMagicLinkPathParams as cw, type CreateMagicLinkRedirectUriPathParams as cx, type DeleteMagicLinkRedirectUriPathParams as cy, type CreateMagicLinkSecretPathParams as cz, type TypedUuidForApplicationId as d, type TypedUuidForDocumentId as e, type TypedUuidForEmployeeId as f, type TypedUuidForOnboardingId as g, type TypedUuidForDepartmentId as h, type TypedUuidForRoleId as i, type TypedUuidForListingId as j, type TypedUuidForReviewerId as k, type TypedUuidForReviewId as l, type TypedUuidForInterviewerId as m, type TypedUuidForInterviewId as n, type TypedUuidForBackgroundCheckId as o, type TypedUuidForOperationId as p, type TypedUuidForApiKeyId as q, type TypedUuidForAccessGroupId as r, type TypedUuidForMapperId as s, type TypedUuidForOAuthClientId as t, type TypedUuidForMagicLinkId as u, type TurnstilePermission as v, type AccessGroupUpdateParams_for_TurnstilePermission as w, type AccessGroup_for_TurnstilePermission as x, type AccessTokenExchangeRequest as y, type AddGroupBody as z };
package/dist/Api.d.cts CHANGED
@@ -1 +1 @@
1
- export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest, bF as AddApiUserToGroupPathParams, z as AddGroupBody, B as AddMagicLinkRedirectBody, C as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, E as ApiKeyCreateParams_for_TurnstilePermission, G as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, I as ApiUserContactEmail, J as ApiUserEmailUpdateParams, M as ApiUserInfo_for_TurnstilePermission, N as ApiUserLinkRequestPayload, O as ApiUserLinkRequestResponse, K as ApiUserProvider, Q as ApiUserProviderLinkPayload, R as ApiUserUpdateParams_for_TurnstilePermission, L as ApiUser_for_TurnstilePermission, U as Applicant, X as ApplicantContact, W as ApplicantContactField, Y as ApplicantInfo, a0 as Application, a4 as ApplicationBundle, a6 as ApplicationInterviewCode, $ as ApplicationState, a8 as ApplicationStateRecord, ad as ApplicationSummariesResponse, ae as ApplicationSummaryResponse, af as AttachDocument, bU as AttachDocumentPathParams, cp as AuthzCodeCallbackPathParams, cq as AuthzCodeCallbackQueryParams, cr as AuthzCodeExchangePathParams, cn as AuthzCodeRedirectPathParams, co as AuthzCodeRedirectQueryParams, ai as BatchParameter_for_TransitionBody, ak as BatchParameter_for_ViewApplication, bJ as CreateApiUserTokenPathParams, al as CreateApplication, bS as CreateApplicationReviewAssignmentsPathParams, am as CreateDepartment, an as CreateDocument, bV as CreateDocumentUploadUrlPathParams, bM as CreateLinkTokenPathParams, ap as CreateListing, cv as CreateMagicLinkRedirectUriPathParams, cx as CreateMagicLinkSecretPathParams, aq as CreateMapper, cE as CreateOauthClientRedirectUriPathParams, cG as CreateOauthClientSecretPathParams, ar as CreateReview, as as CreateReviewAssignments, aE as CreateReviewAssignmentsResponse, aF as CreateRole, aG as CreatedApplication, aD as CreatedAssignment, bL as DeleteApiUserTokenPathParams, cb as DeleteDocumentPathParams, cf as DeleteGroupPathParams, cw as DeleteMagicLinkRedirectUriPathParams, cy as DeleteMagicLinkSecretPathParams, cA as DeleteMapperPathParams, cF as DeleteOauthClientRedirectUriPathParams, cH as DeleteOauthClientSecretPathParams, cL as DeleteReviewPathParams, aH as Department, a3 as Document, a1 as DocumentKind, D as DocumentParent, a2 as DocumentSource, aI as DocumentUploadUrlResponse, aJ as EmailApplicantBody, cC as EmailApplicantPathParams, ag as EmailConfig, cO as ErrorBody, cP as ErrorResult, ac as Evaluator, ct as ExchangeDeviceTokenPathParams, ab as ExpandedApplicationSummary, bC as GetApiUserPathParams, bK as GetApiUserTokenPathParams, bW as GetApplicationInterviewCodePathParams, cs as GetDeviceProviderPathParams, cu as GetMagicLinkPathParams, cz as GetMappersQueryParams, cD as GetOauthClientPathParams, c5 as GetOperationPathParams, aK as GetUserResponse_for_TurnstilePermission, aL as InitialApiKeyResponse_for_TurnstilePermission, aN as InitialMagicLinkSecretResponse, aP as InitialOAuthClientSecretResponse, aS as Interview, aR as InterviewAttendee, aT as Interviewer, Z as InterviewingState, aU as Jwk, aV as Jwks, bH as LinkProviderPathParams, bI as ListApiUserTokensPathParams, bN as ListApplicantsQueryParams, bR as ListApplicationReviewAssignmentsPathParams, c2 as ListApplicationSummariesQueryParams, c8 as ListDocumentsQueryParams, ch as ListInterviewersQueryParams, cg as ListInterviewsQueryParams, cB as ListNotificationsQueryParams, c6 as ListOperationTasksQueryParams, c4 as ListOperationsQueryParams, cM as ListReviewersQueryParams, cI as ListReviewsQueryParams, aW as Listing, a_ as MagicLink, cl as MagicLinkExchangePathParams, b0 as MagicLinkExchangeRequest, b1 as MagicLinkExchangeResponse, b2 as MagicLinkMedium, aY as MagicLinkRedirectUri, aZ as MagicLinkSecret, cm as MagicLinkSendPathParams, b3 as MagicLinkSendRequest, b4 as MagicLinkSendResponse, b5 as Mapper, ay as NotificationMedium, aB as NotificationStatus, aC as Notification_for_RenderedEmail, b6 as OAuthAuthzCodeExchangeBody, b7 as OAuthAuthzCodeExchangeResponse, bb as OAuthClient, b9 as OAuthClientRedirectUri, ba as OAuthClientSecret, bd as OAuthProviderInfo, bc as OAuthProviderName, _ as OfferState, be as OpenIdConfiguration, bf as OperationState, bg as OperationTaskState, bi as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bj as Operation_for_TurnstilePermission_and_String, bl as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bn as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, P as Permissions_for_TurnstilePermission, aA as RecipientId, bo as RegisterApplicant, bG as RemoveApiUserFromGroupPathParams, az as RenderedEmail, bp as Review, aw as ReviewAssignment, at as ReviewAssignmentCreationError, av as ReviewAssignmentState, bs as ReviewInfo, a9 as ReviewScore, bq as Reviewer, br as ReviewerInfo, aa as Reviews, bt as Role, ao as RoleListingStatus, bB as ScalarApplicationState, S as SecretString, bE as SetApiUserContactEmailPathParams, bX as SubmitApplicationPathParams, bu as TransitionApplicationToDeclinedBatch, bk as TransitionApplicationToDeclinedBatchEndpoint, bY as TransitionApplicationToDeclinedPathParams, bv as TransitionApplicationToDeferredBatch, bm as TransitionApplicationToDeferredBatchEndpoint, bZ as TransitionApplicationToDeferredPathParams, b_ as TransitionApplicationToInterviewingPathParams, b$ as TransitionApplicationToNextStepsPathParams, c0 as TransitionApplicationToOfferPathParams, c1 as TransitionApplicationToWithdrawnPathParams, ah as TransitionBody, v as TurnstilePermission, r as TypedUuidForAccessGroupId, q as TypedUuidForApiKeyId, V as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a5 as TypedUuidForApplicationInterviewCodeId, a7 as TypedUuidForApplicationStateRecordId, o as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aQ as TypedUuidForInterviewAttendeeId, n as TypedUuidForInterviewId, m as TypedUuidForInterviewerId, j as TypedUuidForListingId, a$ as TypedUuidForMagicLinkAttemptId, u as TypedUuidForMagicLinkId, aX as TypedUuidForMagicLinkRedirectUriId, aM as TypedUuidForMagicLinkSecretId, s as TypedUuidForMapperId, ax as TypedUuidForNotificationId, t as TypedUuidForOAuthClientId, b8 as TypedUuidForOAuthRedirectUriId, aO as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, p as TypedUuidForOperationId, bh as TypedUuidForOperationTaskId, au as TypedUuidForReviewAssignmentId, l as TypedUuidForReviewId, k as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, H as TypedUuidForUserProviderId, bD as UpdateApiUserPathParams, bw as UpdateApplicantContact, bP as UpdateApplicantContactPathParams, bx as UpdateDocument, ca as UpdateDocumentPathParams, by as UpdateDocumentStatus, cd as UpdateDocumentStatusPathParams, ce as UpdateGroupPathParams, bz as UpdateListing, cj as UpdateListingPathParams, ck as UpdateListingStatePathParams, bA as UpdateReview, cK as UpdateReviewPathParams, bO as ViewApplicantPathParams, aj as ViewApplication, bT as ViewApplicationBundlePathParams, bQ as ViewApplicationPathParams, c3 as ViewApplicationSummaryPathParams, c7 as ViewDepartmentPathParams, cc as ViewDocumentDataPathParams, c9 as ViewDocumentPathParams, ci as ViewListingPathParams, cJ as ViewReviewPathParams, cN as ViewRolePathParams, a as default } from './Api-BKV5LC1y.cjs';
1
+ export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest, bH as AddApiUserToGroupPathParams, z as AddGroupBody, B as AddMagicLinkRedirectBody, C as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, E as ApiKeyCreateParams_for_TurnstilePermission, G as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, I as ApiUserContactEmail, J as ApiUserEmailUpdateParams, M as ApiUserInfo_for_TurnstilePermission, N as ApiUserLinkRequestPayload, O as ApiUserLinkRequestResponse, K as ApiUserProvider, Q as ApiUserProviderLinkPayload, R as ApiUserUpdateParams_for_TurnstilePermission, L as ApiUser_for_TurnstilePermission, U as Applicant, X as ApplicantContact, W as ApplicantContactField, Y as ApplicantInfo, a0 as Application, a4 as ApplicationBundle, a6 as ApplicationInterviewCode, $ as ApplicationState, a8 as ApplicationStateRecord, ad as ApplicationSummariesResponse, ae as ApplicationSummaryResponse, af as AttachDocument, bW as AttachDocumentPathParams, cr as AuthzCodeCallbackPathParams, cs as AuthzCodeCallbackQueryParams, ct as AuthzCodeExchangePathParams, cp as AuthzCodeRedirectPathParams, cq as AuthzCodeRedirectQueryParams, aj as BatchParameter_for_TransitionBody, al as BatchParameter_for_ViewApplication, bL as CreateApiUserTokenPathParams, am as CreateApplication, bU as CreateApplicationReviewAssignmentsPathParams, an as CreateDepartment, ao as CreateDocument, bX as CreateDocumentUploadUrlPathParams, bO as CreateLinkTokenPathParams, aq as CreateListing, cx as CreateMagicLinkRedirectUriPathParams, cz as CreateMagicLinkSecretPathParams, ar as CreateMapper, cG as CreateOauthClientRedirectUriPathParams, cI as CreateOauthClientSecretPathParams, as as CreateReview, at as CreateReviewAssignments, aF as CreateReviewAssignmentsResponse, aG as CreateRole, aH as CreatedApplication, aE as CreatedAssignment, bN as DeleteApiUserTokenPathParams, cd as DeleteDocumentPathParams, ch as DeleteGroupPathParams, cy as DeleteMagicLinkRedirectUriPathParams, cA as DeleteMagicLinkSecretPathParams, cC as DeleteMapperPathParams, cH as DeleteOauthClientRedirectUriPathParams, cJ as DeleteOauthClientSecretPathParams, cN as DeleteReviewPathParams, aI as Department, a3 as Document, a1 as DocumentKind, D as DocumentParent, a2 as DocumentSource, aJ as DocumentUploadUrlResponse, aK as EmailApplicantBody, cE as EmailApplicantPathParams, ag as EmailConfig, cQ as ErrorBody, cR as ErrorResult, ac as Evaluator, cv as ExchangeDeviceTokenPathParams, ab as ExpandedApplicationSummary, bE as GetApiUserPathParams, bM as GetApiUserTokenPathParams, bY as GetApplicationInterviewCodePathParams, cu as GetDeviceProviderPathParams, cw as GetMagicLinkPathParams, cB as GetMappersQueryParams, cF as GetOauthClientPathParams, c7 as GetOperationPathParams, aL as GetUserResponse_for_TurnstilePermission, aM as InitialApiKeyResponse_for_TurnstilePermission, aO as InitialMagicLinkSecretResponse, aQ as InitialOAuthClientSecretResponse, aT as Interview, aS as InterviewAttendee, aU as Interviewer, Z as InterviewingState, aV as Jwk, aW as Jwks, bJ as LinkProviderPathParams, bK as ListApiUserTokensPathParams, bP as ListApplicantsQueryParams, bT as ListApplicationReviewAssignmentsPathParams, c4 as ListApplicationSummariesQueryParams, ca as ListDocumentsQueryParams, cj as ListInterviewersQueryParams, ci as ListInterviewsQueryParams, cD as ListNotificationsQueryParams, c8 as ListOperationTasksQueryParams, c6 as ListOperationsQueryParams, cO as ListReviewersQueryParams, cK as ListReviewsQueryParams, aX as Listing, a$ as MagicLink, cn as MagicLinkExchangePathParams, b1 as MagicLinkExchangeRequest, b2 as MagicLinkExchangeResponse, b3 as MagicLinkMedium, aZ as MagicLinkRedirectUri, a_ as MagicLinkSecret, co as MagicLinkSendPathParams, b4 as MagicLinkSendRequest, b5 as MagicLinkSendResponse, b6 as Mapper, az as NotificationMedium, aC as NotificationStatus, aD as Notification_for_RenderedEmail, b7 as OAuthAuthzCodeExchangeBody, b8 as OAuthAuthzCodeExchangeResponse, bc as OAuthClient, ba as OAuthClientRedirectUri, bb as OAuthClientSecret, be as OAuthProviderInfo, bd as OAuthProviderName, _ as OfferState, bf as OpenIdConfiguration, bg as OperationState, bh as OperationTaskState, bj as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bk as Operation_for_TurnstilePermission_and_String, bm as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bo as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, bp as OptionalTransitionBody, P as Permissions_for_TurnstilePermission, aB as RecipientId, bq as RegisterApplicant, bI as RemoveApiUserFromGroupPathParams, aA as RenderedEmail, br as Review, ax as ReviewAssignment, au as ReviewAssignmentCreationError, aw as ReviewAssignmentState, bu as ReviewInfo, a9 as ReviewScore, bs as Reviewer, bt as ReviewerInfo, aa as Reviews, bv as Role, ap as RoleListingStatus, bD as ScalarApplicationState, S as SecretString, bG as SetApiUserContactEmailPathParams, bZ as SubmitApplicationPathParams, bw as TransitionApplicationToDeclinedBatch, bl as TransitionApplicationToDeclinedBatchEndpoint, b_ as TransitionApplicationToDeclinedPathParams, bx as TransitionApplicationToDeferredBatch, bn as TransitionApplicationToDeferredBatchEndpoint, b$ as TransitionApplicationToDeferredPathParams, c0 as TransitionApplicationToInterviewingPathParams, c1 as TransitionApplicationToNextStepsPathParams, c2 as TransitionApplicationToOfferPathParams, c3 as TransitionApplicationToWithdrawnPathParams, ai as TransitionBody, ah as TransitionMessage, v as TurnstilePermission, r as TypedUuidForAccessGroupId, q as TypedUuidForApiKeyId, V as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a5 as TypedUuidForApplicationInterviewCodeId, a7 as TypedUuidForApplicationStateRecordId, o as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aR as TypedUuidForInterviewAttendeeId, n as TypedUuidForInterviewId, m as TypedUuidForInterviewerId, j as TypedUuidForListingId, b0 as TypedUuidForMagicLinkAttemptId, u as TypedUuidForMagicLinkId, aY as TypedUuidForMagicLinkRedirectUriId, aN as TypedUuidForMagicLinkSecretId, s as TypedUuidForMapperId, ay as TypedUuidForNotificationId, t as TypedUuidForOAuthClientId, b9 as TypedUuidForOAuthRedirectUriId, aP as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, p as TypedUuidForOperationId, bi as TypedUuidForOperationTaskId, av as TypedUuidForReviewAssignmentId, l as TypedUuidForReviewId, k as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, H as TypedUuidForUserProviderId, bF as UpdateApiUserPathParams, by as UpdateApplicantContact, bR as UpdateApplicantContactPathParams, bz as UpdateDocument, cc as UpdateDocumentPathParams, bA as UpdateDocumentStatus, cf as UpdateDocumentStatusPathParams, cg as UpdateGroupPathParams, bB as UpdateListing, cl as UpdateListingPathParams, cm as UpdateListingStatePathParams, bC as UpdateReview, cM as UpdateReviewPathParams, bQ as ViewApplicantPathParams, ak as ViewApplication, bV as ViewApplicationBundlePathParams, bS as ViewApplicationPathParams, c5 as ViewApplicationSummaryPathParams, c9 as ViewDepartmentPathParams, ce as ViewDocumentDataPathParams, cb as ViewDocumentPathParams, ck as ViewListingPathParams, cL as ViewReviewPathParams, cP as ViewRolePathParams, a as default } from './Api-ifXKB4NH.cjs';
package/dist/Api.d.ts CHANGED
@@ -1 +1 @@
1
- export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest, bF as AddApiUserToGroupPathParams, z as AddGroupBody, B as AddMagicLinkRedirectBody, C as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, E as ApiKeyCreateParams_for_TurnstilePermission, G as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, I as ApiUserContactEmail, J as ApiUserEmailUpdateParams, M as ApiUserInfo_for_TurnstilePermission, N as ApiUserLinkRequestPayload, O as ApiUserLinkRequestResponse, K as ApiUserProvider, Q as ApiUserProviderLinkPayload, R as ApiUserUpdateParams_for_TurnstilePermission, L as ApiUser_for_TurnstilePermission, U as Applicant, X as ApplicantContact, W as ApplicantContactField, Y as ApplicantInfo, a0 as Application, a4 as ApplicationBundle, a6 as ApplicationInterviewCode, $ as ApplicationState, a8 as ApplicationStateRecord, ad as ApplicationSummariesResponse, ae as ApplicationSummaryResponse, af as AttachDocument, bU as AttachDocumentPathParams, cp as AuthzCodeCallbackPathParams, cq as AuthzCodeCallbackQueryParams, cr as AuthzCodeExchangePathParams, cn as AuthzCodeRedirectPathParams, co as AuthzCodeRedirectQueryParams, ai as BatchParameter_for_TransitionBody, ak as BatchParameter_for_ViewApplication, bJ as CreateApiUserTokenPathParams, al as CreateApplication, bS as CreateApplicationReviewAssignmentsPathParams, am as CreateDepartment, an as CreateDocument, bV as CreateDocumentUploadUrlPathParams, bM as CreateLinkTokenPathParams, ap as CreateListing, cv as CreateMagicLinkRedirectUriPathParams, cx as CreateMagicLinkSecretPathParams, aq as CreateMapper, cE as CreateOauthClientRedirectUriPathParams, cG as CreateOauthClientSecretPathParams, ar as CreateReview, as as CreateReviewAssignments, aE as CreateReviewAssignmentsResponse, aF as CreateRole, aG as CreatedApplication, aD as CreatedAssignment, bL as DeleteApiUserTokenPathParams, cb as DeleteDocumentPathParams, cf as DeleteGroupPathParams, cw as DeleteMagicLinkRedirectUriPathParams, cy as DeleteMagicLinkSecretPathParams, cA as DeleteMapperPathParams, cF as DeleteOauthClientRedirectUriPathParams, cH as DeleteOauthClientSecretPathParams, cL as DeleteReviewPathParams, aH as Department, a3 as Document, a1 as DocumentKind, D as DocumentParent, a2 as DocumentSource, aI as DocumentUploadUrlResponse, aJ as EmailApplicantBody, cC as EmailApplicantPathParams, ag as EmailConfig, cO as ErrorBody, cP as ErrorResult, ac as Evaluator, ct as ExchangeDeviceTokenPathParams, ab as ExpandedApplicationSummary, bC as GetApiUserPathParams, bK as GetApiUserTokenPathParams, bW as GetApplicationInterviewCodePathParams, cs as GetDeviceProviderPathParams, cu as GetMagicLinkPathParams, cz as GetMappersQueryParams, cD as GetOauthClientPathParams, c5 as GetOperationPathParams, aK as GetUserResponse_for_TurnstilePermission, aL as InitialApiKeyResponse_for_TurnstilePermission, aN as InitialMagicLinkSecretResponse, aP as InitialOAuthClientSecretResponse, aS as Interview, aR as InterviewAttendee, aT as Interviewer, Z as InterviewingState, aU as Jwk, aV as Jwks, bH as LinkProviderPathParams, bI as ListApiUserTokensPathParams, bN as ListApplicantsQueryParams, bR as ListApplicationReviewAssignmentsPathParams, c2 as ListApplicationSummariesQueryParams, c8 as ListDocumentsQueryParams, ch as ListInterviewersQueryParams, cg as ListInterviewsQueryParams, cB as ListNotificationsQueryParams, c6 as ListOperationTasksQueryParams, c4 as ListOperationsQueryParams, cM as ListReviewersQueryParams, cI as ListReviewsQueryParams, aW as Listing, a_ as MagicLink, cl as MagicLinkExchangePathParams, b0 as MagicLinkExchangeRequest, b1 as MagicLinkExchangeResponse, b2 as MagicLinkMedium, aY as MagicLinkRedirectUri, aZ as MagicLinkSecret, cm as MagicLinkSendPathParams, b3 as MagicLinkSendRequest, b4 as MagicLinkSendResponse, b5 as Mapper, ay as NotificationMedium, aB as NotificationStatus, aC as Notification_for_RenderedEmail, b6 as OAuthAuthzCodeExchangeBody, b7 as OAuthAuthzCodeExchangeResponse, bb as OAuthClient, b9 as OAuthClientRedirectUri, ba as OAuthClientSecret, bd as OAuthProviderInfo, bc as OAuthProviderName, _ as OfferState, be as OpenIdConfiguration, bf as OperationState, bg as OperationTaskState, bi as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bj as Operation_for_TurnstilePermission_and_String, bl as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bn as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, P as Permissions_for_TurnstilePermission, aA as RecipientId, bo as RegisterApplicant, bG as RemoveApiUserFromGroupPathParams, az as RenderedEmail, bp as Review, aw as ReviewAssignment, at as ReviewAssignmentCreationError, av as ReviewAssignmentState, bs as ReviewInfo, a9 as ReviewScore, bq as Reviewer, br as ReviewerInfo, aa as Reviews, bt as Role, ao as RoleListingStatus, bB as ScalarApplicationState, S as SecretString, bE as SetApiUserContactEmailPathParams, bX as SubmitApplicationPathParams, bu as TransitionApplicationToDeclinedBatch, bk as TransitionApplicationToDeclinedBatchEndpoint, bY as TransitionApplicationToDeclinedPathParams, bv as TransitionApplicationToDeferredBatch, bm as TransitionApplicationToDeferredBatchEndpoint, bZ as TransitionApplicationToDeferredPathParams, b_ as TransitionApplicationToInterviewingPathParams, b$ as TransitionApplicationToNextStepsPathParams, c0 as TransitionApplicationToOfferPathParams, c1 as TransitionApplicationToWithdrawnPathParams, ah as TransitionBody, v as TurnstilePermission, r as TypedUuidForAccessGroupId, q as TypedUuidForApiKeyId, V as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a5 as TypedUuidForApplicationInterviewCodeId, a7 as TypedUuidForApplicationStateRecordId, o as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aQ as TypedUuidForInterviewAttendeeId, n as TypedUuidForInterviewId, m as TypedUuidForInterviewerId, j as TypedUuidForListingId, a$ as TypedUuidForMagicLinkAttemptId, u as TypedUuidForMagicLinkId, aX as TypedUuidForMagicLinkRedirectUriId, aM as TypedUuidForMagicLinkSecretId, s as TypedUuidForMapperId, ax as TypedUuidForNotificationId, t as TypedUuidForOAuthClientId, b8 as TypedUuidForOAuthRedirectUriId, aO as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, p as TypedUuidForOperationId, bh as TypedUuidForOperationTaskId, au as TypedUuidForReviewAssignmentId, l as TypedUuidForReviewId, k as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, H as TypedUuidForUserProviderId, bD as UpdateApiUserPathParams, bw as UpdateApplicantContact, bP as UpdateApplicantContactPathParams, bx as UpdateDocument, ca as UpdateDocumentPathParams, by as UpdateDocumentStatus, cd as UpdateDocumentStatusPathParams, ce as UpdateGroupPathParams, bz as UpdateListing, cj as UpdateListingPathParams, ck as UpdateListingStatePathParams, bA as UpdateReview, cK as UpdateReviewPathParams, bO as ViewApplicantPathParams, aj as ViewApplication, bT as ViewApplicationBundlePathParams, bQ as ViewApplicationPathParams, c3 as ViewApplicationSummaryPathParams, c7 as ViewDepartmentPathParams, cc as ViewDocumentDataPathParams, c9 as ViewDocumentPathParams, ci as ViewListingPathParams, cJ as ViewReviewPathParams, cN as ViewRolePathParams, a as default } from './Api-BKV5LC1y.js';
1
+ export { w as AccessGroupUpdateParams_for_TurnstilePermission, x as AccessGroup_for_TurnstilePermission, y as AccessTokenExchangeRequest, bH as AddApiUserToGroupPathParams, z as AddGroupBody, B as AddMagicLinkRedirectBody, C as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, E as ApiKeyCreateParams_for_TurnstilePermission, G as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, I as ApiUserContactEmail, J as ApiUserEmailUpdateParams, M as ApiUserInfo_for_TurnstilePermission, N as ApiUserLinkRequestPayload, O as ApiUserLinkRequestResponse, K as ApiUserProvider, Q as ApiUserProviderLinkPayload, R as ApiUserUpdateParams_for_TurnstilePermission, L as ApiUser_for_TurnstilePermission, U as Applicant, X as ApplicantContact, W as ApplicantContactField, Y as ApplicantInfo, a0 as Application, a4 as ApplicationBundle, a6 as ApplicationInterviewCode, $ as ApplicationState, a8 as ApplicationStateRecord, ad as ApplicationSummariesResponse, ae as ApplicationSummaryResponse, af as AttachDocument, bW as AttachDocumentPathParams, cr as AuthzCodeCallbackPathParams, cs as AuthzCodeCallbackQueryParams, ct as AuthzCodeExchangePathParams, cp as AuthzCodeRedirectPathParams, cq as AuthzCodeRedirectQueryParams, aj as BatchParameter_for_TransitionBody, al as BatchParameter_for_ViewApplication, bL as CreateApiUserTokenPathParams, am as CreateApplication, bU as CreateApplicationReviewAssignmentsPathParams, an as CreateDepartment, ao as CreateDocument, bX as CreateDocumentUploadUrlPathParams, bO as CreateLinkTokenPathParams, aq as CreateListing, cx as CreateMagicLinkRedirectUriPathParams, cz as CreateMagicLinkSecretPathParams, ar as CreateMapper, cG as CreateOauthClientRedirectUriPathParams, cI as CreateOauthClientSecretPathParams, as as CreateReview, at as CreateReviewAssignments, aF as CreateReviewAssignmentsResponse, aG as CreateRole, aH as CreatedApplication, aE as CreatedAssignment, bN as DeleteApiUserTokenPathParams, cd as DeleteDocumentPathParams, ch as DeleteGroupPathParams, cy as DeleteMagicLinkRedirectUriPathParams, cA as DeleteMagicLinkSecretPathParams, cC as DeleteMapperPathParams, cH as DeleteOauthClientRedirectUriPathParams, cJ as DeleteOauthClientSecretPathParams, cN as DeleteReviewPathParams, aI as Department, a3 as Document, a1 as DocumentKind, D as DocumentParent, a2 as DocumentSource, aJ as DocumentUploadUrlResponse, aK as EmailApplicantBody, cE as EmailApplicantPathParams, ag as EmailConfig, cQ as ErrorBody, cR as ErrorResult, ac as Evaluator, cv as ExchangeDeviceTokenPathParams, ab as ExpandedApplicationSummary, bE as GetApiUserPathParams, bM as GetApiUserTokenPathParams, bY as GetApplicationInterviewCodePathParams, cu as GetDeviceProviderPathParams, cw as GetMagicLinkPathParams, cB as GetMappersQueryParams, cF as GetOauthClientPathParams, c7 as GetOperationPathParams, aL as GetUserResponse_for_TurnstilePermission, aM as InitialApiKeyResponse_for_TurnstilePermission, aO as InitialMagicLinkSecretResponse, aQ as InitialOAuthClientSecretResponse, aT as Interview, aS as InterviewAttendee, aU as Interviewer, Z as InterviewingState, aV as Jwk, aW as Jwks, bJ as LinkProviderPathParams, bK as ListApiUserTokensPathParams, bP as ListApplicantsQueryParams, bT as ListApplicationReviewAssignmentsPathParams, c4 as ListApplicationSummariesQueryParams, ca as ListDocumentsQueryParams, cj as ListInterviewersQueryParams, ci as ListInterviewsQueryParams, cD as ListNotificationsQueryParams, c8 as ListOperationTasksQueryParams, c6 as ListOperationsQueryParams, cO as ListReviewersQueryParams, cK as ListReviewsQueryParams, aX as Listing, a$ as MagicLink, cn as MagicLinkExchangePathParams, b1 as MagicLinkExchangeRequest, b2 as MagicLinkExchangeResponse, b3 as MagicLinkMedium, aZ as MagicLinkRedirectUri, a_ as MagicLinkSecret, co as MagicLinkSendPathParams, b4 as MagicLinkSendRequest, b5 as MagicLinkSendResponse, b6 as Mapper, az as NotificationMedium, aC as NotificationStatus, aD as Notification_for_RenderedEmail, b7 as OAuthAuthzCodeExchangeBody, b8 as OAuthAuthzCodeExchangeResponse, bc as OAuthClient, ba as OAuthClientRedirectUri, bb as OAuthClientSecret, be as OAuthProviderInfo, bd as OAuthProviderName, _ as OfferState, bf as OpenIdConfiguration, bg as OperationState, bh as OperationTaskState, bj as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bk as Operation_for_TurnstilePermission_and_String, bm as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bo as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, bp as OptionalTransitionBody, P as Permissions_for_TurnstilePermission, aB as RecipientId, bq as RegisterApplicant, bI as RemoveApiUserFromGroupPathParams, aA as RenderedEmail, br as Review, ax as ReviewAssignment, au as ReviewAssignmentCreationError, aw as ReviewAssignmentState, bu as ReviewInfo, a9 as ReviewScore, bs as Reviewer, bt as ReviewerInfo, aa as Reviews, bv as Role, ap as RoleListingStatus, bD as ScalarApplicationState, S as SecretString, bG as SetApiUserContactEmailPathParams, bZ as SubmitApplicationPathParams, bw as TransitionApplicationToDeclinedBatch, bl as TransitionApplicationToDeclinedBatchEndpoint, b_ as TransitionApplicationToDeclinedPathParams, bx as TransitionApplicationToDeferredBatch, bn as TransitionApplicationToDeferredBatchEndpoint, b$ as TransitionApplicationToDeferredPathParams, c0 as TransitionApplicationToInterviewingPathParams, c1 as TransitionApplicationToNextStepsPathParams, c2 as TransitionApplicationToOfferPathParams, c3 as TransitionApplicationToWithdrawnPathParams, ai as TransitionBody, ah as TransitionMessage, v as TurnstilePermission, r as TypedUuidForAccessGroupId, q as TypedUuidForApiKeyId, V as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a5 as TypedUuidForApplicationInterviewCodeId, a7 as TypedUuidForApplicationStateRecordId, o as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aR as TypedUuidForInterviewAttendeeId, n as TypedUuidForInterviewId, m as TypedUuidForInterviewerId, j as TypedUuidForListingId, b0 as TypedUuidForMagicLinkAttemptId, u as TypedUuidForMagicLinkId, aY as TypedUuidForMagicLinkRedirectUriId, aN as TypedUuidForMagicLinkSecretId, s as TypedUuidForMapperId, ay as TypedUuidForNotificationId, t as TypedUuidForOAuthClientId, b9 as TypedUuidForOAuthRedirectUriId, aP as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, p as TypedUuidForOperationId, bi as TypedUuidForOperationTaskId, av as TypedUuidForReviewAssignmentId, l as TypedUuidForReviewId, k as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, H as TypedUuidForUserProviderId, bF as UpdateApiUserPathParams, by as UpdateApplicantContact, bR as UpdateApplicantContactPathParams, bz as UpdateDocument, cc as UpdateDocumentPathParams, bA as UpdateDocumentStatus, cf as UpdateDocumentStatusPathParams, cg as UpdateGroupPathParams, bB as UpdateListing, cl as UpdateListingPathParams, cm as UpdateListingStatePathParams, bC as UpdateReview, cM as UpdateReviewPathParams, bQ as ViewApplicantPathParams, ak as ViewApplication, bV as ViewApplicationBundlePathParams, bS as ViewApplicationPathParams, c5 as ViewApplicationSummaryPathParams, c9 as ViewDepartmentPathParams, ce as ViewDocumentDataPathParams, cb as ViewDocumentPathParams, ck as ViewListingPathParams, cL as ViewReviewPathParams, cP as ViewRolePathParams, a as default } from './Api-ifXKB4NH.js';
package/dist/retry.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-BKV5LC1y.cjs';
1
+ import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-ifXKB4NH.cjs';
2
2
 
3
3
  type RetryHandler = (err: any) => boolean;
4
4
  type RetryHandlerFactory = (url: RequestInfo | URL, init: RequestInit) => RetryHandler;
package/dist/retry.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-BKV5LC1y.js';
1
+ import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-ifXKB4NH.js';
2
2
 
3
3
  type RetryHandler = (err: any) => boolean;
4
4
  type RetryHandlerFactory = (url: RequestInfo | URL, init: RequestInit) => RetryHandler;
package/dist/validate.cjs CHANGED
@@ -182,6 +182,7 @@ __export(validate_exports, {
182
182
  Operation_for_TurnstilePermission_and_String: () => Operation_for_TurnstilePermission_and_String,
183
183
  Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint: () => Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint,
184
184
  Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint: () => Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint,
185
+ OptionalTransitionBody: () => OptionalTransitionBody,
185
186
  Permissions_for_TurnstilePermission: () => Permissions_for_TurnstilePermission,
186
187
  RecipientId: () => RecipientId,
187
188
  RegisterApplicant: () => RegisterApplicant,
@@ -216,6 +217,7 @@ __export(validate_exports, {
216
217
  TransitionApplicationToOfferParams: () => TransitionApplicationToOfferParams,
217
218
  TransitionApplicationToWithdrawnParams: () => TransitionApplicationToWithdrawnParams,
218
219
  TransitionBody: () => TransitionBody,
220
+ TransitionMessage: () => TransitionMessage,
219
221
  TurnstilePermission: () => TurnstilePermission,
220
222
  TypedUuidForAccessGroupId: () => TypedUuidForAccessGroupId,
221
223
  TypedUuidForApiKeyId: () => TypedUuidForApiKeyId,
@@ -833,7 +835,14 @@ var EmailConfig = import_zod.z.preprocess(
833
835
  "textTemplate": import_zod.z.string()
834
836
  })
835
837
  );
836
- var TransitionBody = import_zod.z.preprocess(processResponseBody, import_zod.z.object({ "message": EmailConfig.optional() }));
838
+ var TransitionMessage = import_zod.z.preprocess(
839
+ processResponseBody,
840
+ import_zod.z.union([
841
+ import_zod.z.enum(["Default", "Omit"]),
842
+ import_zod.z.object({ "Custom": EmailConfig })
843
+ ])
844
+ );
845
+ var TransitionBody = import_zod.z.preprocess(processResponseBody, import_zod.z.object({ "message": TransitionMessage }));
837
846
  var BatchParameter_for_TransitionBody = import_zod.z.preprocess(
838
847
  processResponseBody,
839
848
  import_zod.z.union([
@@ -1250,6 +1259,7 @@ var Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEn
1250
1259
  "updatedAt": import_zod.z.coerce.date()
1251
1260
  })
1252
1261
  );
1262
+ var OptionalTransitionBody = import_zod.z.preprocess(processResponseBody, import_zod.z.object({ "message": EmailConfig.optional() }));
1253
1263
  var RegisterApplicant = import_zod.z.preprocess(processResponseBody, import_zod.z.object({ "email": import_zod.z.string() }));
1254
1264
  var Review = import_zod.z.preprocess(
1255
1265
  processResponseBody,
@@ -2393,6 +2403,7 @@ var GetSelfParams = import_zod.z.preprocess(
2393
2403
  Operation_for_TurnstilePermission_and_String,
2394
2404
  Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint,
2395
2405
  Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint,
2406
+ OptionalTransitionBody,
2396
2407
  Permissions_for_TurnstilePermission,
2397
2408
  RecipientId,
2398
2409
  RegisterApplicant,
@@ -2427,6 +2438,7 @@ var GetSelfParams = import_zod.z.preprocess(
2427
2438
  TransitionApplicationToOfferParams,
2428
2439
  TransitionApplicationToWithdrawnParams,
2429
2440
  TransitionBody,
2441
+ TransitionMessage,
2430
2442
  TurnstilePermission,
2431
2443
  TypedUuidForAccessGroupId,
2432
2444
  TypedUuidForApiKeyId,