@oxide/turnstile.ts 0.8.0 → 0.8.1

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.
@@ -60,11 +60,18 @@ declare class HttpClient {
60
60
  request<Data>({ body, path, query, host, ...fetchParams }: FullParams): Promise<ApiResult<Data>>;
61
61
  }
62
62
 
63
+ type AccessGroupId = Record<string, unknown>;
64
+ type ApplicantId = Record<string, unknown>;
63
65
  type TypedUuidForApplicantId = string;
66
+ type UserId = Record<string, unknown>;
64
67
  type TypedUuidForUserId = string;
68
+ type ApplicationId = Record<string, unknown>;
65
69
  type TypedUuidForApplicationId = string;
70
+ type DocumentId = Record<string, unknown>;
66
71
  type TypedUuidForDocumentId = string;
72
+ type EmployeeId = Record<string, unknown>;
67
73
  type TypedUuidForEmployeeId = string;
74
+ type OnboardingId = Record<string, unknown>;
68
75
  type TypedUuidForOnboardingId = string;
69
76
  type DocumentParent = {
70
77
  'Application': TypedUuidForApplicationId;
@@ -73,20 +80,34 @@ type DocumentParent = {
73
80
  } | {
74
81
  'Onboarding': TypedUuidForOnboardingId;
75
82
  };
83
+ type DepartmentId = Record<string, unknown>;
76
84
  type TypedUuidForDepartmentId = string;
85
+ type RoleId = Record<string, unknown>;
77
86
  type TypedUuidForRoleId = string;
87
+ type ListingId = Record<string, unknown>;
78
88
  type TypedUuidForListingId = string;
89
+ type PoolId = Record<string, unknown>;
79
90
  type TypedUuidForPoolId = string;
91
+ type ReviewerId = Record<string, unknown>;
80
92
  type TypedUuidForReviewerId = string;
93
+ type ReviewId = Record<string, unknown>;
81
94
  type TypedUuidForReviewId = string;
95
+ type InterviewerId = Record<string, unknown>;
82
96
  type TypedUuidForInterviewerId = string;
97
+ type InterviewId = Record<string, unknown>;
83
98
  type TypedUuidForInterviewId = string;
99
+ type BackgroundCheckId = Record<string, unknown>;
84
100
  type TypedUuidForBackgroundCheckId = string;
101
+ type OperationId = Record<string, unknown>;
85
102
  type TypedUuidForOperationId = string;
103
+ type ApiKeyId = Record<string, unknown>;
86
104
  type TypedUuidForApiKeyId = string;
87
105
  type TypedUuidForAccessGroupId = string;
106
+ type MapperId = Record<string, unknown>;
88
107
  type TypedUuidForMapperId = string;
108
+ type OAuthClientId = Record<string, unknown>;
89
109
  type TypedUuidForOAuthClientId = string;
110
+ type MagicLinkId = Record<string, unknown>;
90
111
  type TypedUuidForMagicLinkId = string;
91
112
  type TurnstilePermission = 'CreateNotificationsAll' | 'GetNotificationsAll' | 'ScheduleNotification' | 'SendNotification' | 'GetApplicantsAssigned' | 'GetApplicantsAll' | 'GetApplicantSelf' | 'CreateApplicantsAssigned' | 'CreateApplicantsAll' | 'CreateApplicantSelf' | 'ManageApplicantsAssigned' | 'ManageApplicantsAll' | 'ManageApplicantSelf' | 'GetApplicationsAssigned' | 'GetApplicationsAll' | 'CreateApplicationAssigned' | 'CreateApplicationSelf' | 'SubmitApplicationsAssigned' | 'WithdrawApplicationsAssigned' | 'ManageApplicationsAssigned' | 'ManageApplicationsAll' | 'GetApplicationSummariesAll' | 'GetDocumentsAssigned' | 'GetDocumentsAll' | 'CreateDocument' | 'ManageDocumentsAssigned' | 'ManageDocumentsAll' | 'AttachDocumentsAssigned' | 'AttachDocumentsAll' | 'GetDepartmentsAssigned' | 'GetDepartmentsAll' | 'CreateDepartment' | 'GetRolesAssigned' | 'GetRolesAll' | 'CreateRole' | 'GetListingsAssigned' | 'GetListingsAll' | 'CreateListing' | 'ManageListingsAll' | 'GetPoolsAssigned' | 'GetPoolsAll' | 'CreatePool' | 'ManagePoolsAll' | 'GetReviewersAssigned' | 'GetReviewersAll' | 'GetReviewerSelf' | 'CreateReviewersAssigned' | 'CreateReviewersAll' | 'CreateReviewerSelf' | 'GetReviewsAssigned' | 'GetReviewsAll' | 'CreateReview' | 'ManageReviewsAssigned' | 'ManageReviewsAll' | 'GetReviewAssignmentsAll' | 'CompleteReviewAssignmentSelf' | 'CompleteReviewAssignmentsAll' | 'ManageReviewAssignmentsAll' | 'GetReviewSummariesAll' | 'GetInterviewersAssigned' | 'GetInterviewersAll' | 'CreateInterviewersAssigned' | 'CreateInterviewersAll' | 'CreateInterviewerSelf' | 'ManageInterviewersAssigned' | 'ManageInterviewersAll' | 'GetInterviewsAssigned' | 'GetInterviewsAll' | 'CreateInterview' | 'ManageInterviewsAssigned' | 'ManageInterviewsAll' | 'GetBackgroundChecksAssigned' | 'GetBackgroundChecksAll' | 'CreateBackgroundChecksAll' | 'ManageBackgroundChecksAssigned' | 'ManageBackgroundChecksAll' | 'GetEnvelope' | 'SendEnvelope' | 'GetEmployeesAssigned' | 'GetEmployeesAll' | 'CreateEmployee' | 'ManageEmployeesAssigned' | 'ManageEmployeesAll' | 'GetOnboardingsAll' | 'CreateOnboarding' | 'GetBatchOperationsAssigned' | 'GetBatchOperationsAll' | 'CreateBatchOperation' | 'ManageBatchOperationsAll' | 'CreateApiUser' | 'GetApiUserSelf' | 'GetApiUsersAssigned' | 'GetApiUsersAll' | 'ManageApiUsersAssigned' | 'ManageApiUsersAll' | 'CreateApiKeySelf' | 'CreateApiKeyAssigned' | 'CreateApiKeyAll' | 'GetApiKeysAssigned' | 'GetApiKeysAll' | 'ManageApiKeysAssigned' | 'ManageApiKeysAll' | 'CreateUserApiProviderLinkToken' | 'CreateGroup' | 'GetGroupsJoined' | 'GetGroupsAll' | 'ManageGroupsAssigned' | 'ManageGroupsAll' | 'ManageGroupMembershipsAssigned' | 'ManageGroupMembershipsAll' | 'CreateMapper' | 'GetMappersAll' | 'ManageMappersAssigned' | 'ManageMappersAll' | 'CreateOAuthClient' | 'GetOAuthClientsAssigned' | 'GetOAuthClientsAll' | 'ManageOAuthClientsAssigned' | 'ManageOAuthClientsAll' | 'CreateMagicLinkClient' | 'GetMagicLinkClientsAssigned' | 'GetMagicLinkClientsAll' | 'ManageMagicLinkClientsAssigned' | 'ManageMagicLinkClientsAll' | 'CreateAccessToken' | {
92
113
  'GetApplicant': TypedUuidForApplicantId;
@@ -291,6 +312,7 @@ type ApiKeyResponse_for_TurnstilePermission = {
291
312
  'id': TypedUuidForApiKeyId;
292
313
  'permissions'?: Permissions_for_TurnstilePermission | null;
293
314
  };
315
+ type UserProviderId = Record<string, unknown>;
294
316
  type TypedUuidForUserProviderId = string;
295
317
  type ApiUserContactEmail = {
296
318
  'createdAt': Date;
@@ -348,6 +370,7 @@ type Applicant = {
348
370
  'id': TypedUuidForApplicantId;
349
371
  'updatedAt': Date;
350
372
  };
373
+ type ApplicantContactId = Record<string, unknown>;
351
374
  type TypedUuidForApplicantContactId = string;
352
375
  type ApplicantContactField = 'country' | 'email' | 'github' | 'gitlab' | 'linkedin' | 'location' | 'name' | 'phone' | 'portfolio' | 'website';
353
376
  type ApplicantContact = {
@@ -402,6 +425,7 @@ type ApplicationBundle = {
402
425
  'application': Application;
403
426
  'documents': (Document)[];
404
427
  };
428
+ type ApplicationInterviewCodeId = Record<string, unknown>;
405
429
  type TypedUuidForApplicationInterviewCodeId = string;
406
430
  type ApplicationInterviewCode = {
407
431
  'applicationId': TypedUuidForApplicationId;
@@ -409,6 +433,10 @@ type ApplicationInterviewCode = {
409
433
  'createdAt': Date;
410
434
  'id': TypedUuidForApplicationInterviewCodeId;
411
435
  };
436
+ type ApplicationStartDate = {
437
+ 'startDate': string;
438
+ };
439
+ type ApplicationStateRecordId = Record<string, unknown>;
412
440
  type TypedUuidForApplicationStateRecordId = string;
413
441
  type ApplicationStateRecord = {
414
442
  'applicationId': TypedUuidForApplicationId;
@@ -563,6 +591,7 @@ type ReviewAssignmentCreationError = (
563
591
  | 'Forbidden'
564
592
  /** Internal server error */
565
593
  | 'Internal');
594
+ type ReviewAssignmentId = Record<string, unknown>;
566
595
  type TypedUuidForReviewAssignmentId = string;
567
596
  type ReviewAssignmentState = 'pending' | 'complete';
568
597
  type ReviewAssignment = {
@@ -632,18 +661,21 @@ type InitialApiKeyResponse_for_TurnstilePermission = {
632
661
  'key': SecretString;
633
662
  'permissions'?: Permissions_for_TurnstilePermission | null;
634
663
  };
664
+ type MagicLinkSecretId = Record<string, unknown>;
635
665
  type TypedUuidForMagicLinkSecretId = string;
636
666
  type InitialMagicLinkSecretResponse = {
637
667
  'createdAt': Date;
638
668
  'id': TypedUuidForMagicLinkSecretId;
639
669
  'key': SecretString;
640
670
  };
671
+ type OAuthSecretId = Record<string, unknown>;
641
672
  type TypedUuidForOAuthSecretId = string;
642
673
  type InitialOAuthClientSecretResponse = {
643
674
  'createdAt': Date;
644
675
  'id': TypedUuidForOAuthSecretId;
645
676
  'key': SecretString;
646
677
  };
678
+ type InterviewAttendeeId = Record<string, unknown>;
647
679
  type TypedUuidForInterviewAttendeeId = string;
648
680
  type InterviewAttendee = {
649
681
  'createdAt': Date;
@@ -694,6 +726,7 @@ type Listing = {
694
726
  'state': RoleListingStatus;
695
727
  'updatedAt': Date;
696
728
  };
729
+ type ListingPoolId = Record<string, unknown>;
697
730
  type TypedUuidForListingPoolId = string;
698
731
  type ListingPool = {
699
732
  'association': ListingPoolAssociation;
@@ -704,6 +737,7 @@ type ListingPool = {
704
737
  'poolId': TypedUuidForPoolId;
705
738
  'updatedAt': Date;
706
739
  };
740
+ type MagicLinkRedirectUriId = Record<string, unknown>;
707
741
  type TypedUuidForMagicLinkRedirectUriId = string;
708
742
  type MagicLinkRedirectUri = {
709
743
  'createdAt': Date;
@@ -726,6 +760,7 @@ type MagicLink = {
726
760
  'redirectUris': (MagicLinkRedirectUri)[];
727
761
  'secrets': (MagicLinkSecret)[];
728
762
  };
763
+ type MagicLinkAttemptId = Record<string, unknown>;
729
764
  type TypedUuidForMagicLinkAttemptId = string;
730
765
  type MagicLinkExchangeRequest = {
731
766
  'attemptId': TypedUuidForMagicLinkAttemptId;
@@ -766,6 +801,7 @@ type NewHireBody = {
766
801
  'provider': Provider;
767
802
  'providerId': string;
768
803
  };
804
+ type NotificationId = Record<string, unknown>;
769
805
  type NotificationMedium = 'Email';
770
806
  type NotificationStatus = 'Failed' | 'Pending' | 'Scheduled' | 'Sent';
771
807
  type TypedUuidForNotificationId = string;
@@ -807,6 +843,7 @@ type OAuthAuthzCodeExchangeResponse = {
807
843
  'expiresIn': number;
808
844
  'tokenType': string;
809
845
  };
846
+ type OAuthRedirectUriId = Record<string, unknown>;
810
847
  type TypedUuidForOAuthRedirectUriId = string;
811
848
  type OAuthClientRedirectUri = {
812
849
  'createdAt': Date;
@@ -847,6 +884,7 @@ type OpenIdConfiguration = {
847
884
  'jwksUri': string;
848
885
  };
849
886
  type OperationState = 'complete' | 'pending' | 'started';
887
+ type OperationTaskId = Record<string, unknown>;
850
888
  type OperationTaskState = 'complete' | 'failed' | 'pending';
851
889
  type TypedUuidForOperationTaskId = string;
852
890
  type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue = {
@@ -1055,6 +1093,9 @@ interface NotifyApplicationReviewAssignmentsPathParams {
1055
1093
  interface SimulateReviewActionPathParams {
1056
1094
  application: TypedUuidForApplicationId;
1057
1095
  }
1096
+ interface ViewApplicationStartDatePathParams {
1097
+ application: TypedUuidForApplicationId;
1098
+ }
1058
1099
  interface SubmitApplicationPathParams {
1059
1100
  application: TypedUuidForApplicationId;
1060
1101
  }
@@ -1420,6 +1461,9 @@ declare class Api extends HttpClient {
1420
1461
  simulateReviewAction: ({ path, }: {
1421
1462
  path: SimulateReviewActionPathParams;
1422
1463
  }, params?: FetchParams) => Promise<ApiResult<PoolAction>>;
1464
+ viewApplicationStartDate: ({ path, }: {
1465
+ path: ViewApplicationStartDatePathParams;
1466
+ }, params?: FetchParams) => Promise<ApiResult<ApplicationStartDate>>;
1423
1467
  /**
1424
1468
  * Submit an application that has all required documents attached
1425
1469
  */
@@ -1811,4 +1855,4 @@ declare class Api extends HttpClient {
1811
1855
  ws: {};
1812
1856
  }
1813
1857
 
1814
- export { type OfferState as $, type ApiConfig as A, type AddGroupBody as B, type AddMagicLinkRedirectBody as C, type DocumentParent as D, type AddOAuthClientRedirectBody as E, type FullParams as F, type ApiKeyCreateParams_for_TurnstilePermission as G, type ApiKeyResponse_for_TurnstilePermission as H, type TypedUuidForUserProviderId as I, type ApiUserContactEmail as J, type ApiUserEmailUpdateParams as K, type ApiUserProvider as L, type ApiUser_for_TurnstilePermission as M, type ApiUserInfo_for_TurnstilePermission as N, type ApiUserLinkRequestPayload as O, type Permissions_for_TurnstilePermission as P, type ApiUserLinkRequestResponse as Q, type ApiUserProviderLinkPayload as R, type SecretString as S, type TypedUuidForApplicantId as T, type ApiUserUpdateParams_for_TurnstilePermission as U, type Applicant as V, type TypedUuidForApplicantContactId as W, type ApplicantContactField as X, type ApplicantContact as Y, type ApplicantInfo as Z, type InterviewingState as _, Api as a, type ListingPool as a$, type ApplicationState as a0, type Application as a1, type DocumentKind as a2, type DocumentSource as a3, type Document as a4, type ApplicationBundle as a5, type TypedUuidForApplicationInterviewCodeId as a6, type ApplicationInterviewCode as a7, type TypedUuidForApplicationStateRecordId as a8, type ApplicationStateRecord as a9, type ReviewAssignmentCreationError as aA, type TypedUuidForReviewAssignmentId as aB, type ReviewAssignmentState as aC, type ReviewAssignment 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 EmployeeState as aL, type Employee as aM, type GetUserResponse_for_TurnstilePermission as aN, type InitialApiKeyResponse_for_TurnstilePermission as aO, type TypedUuidForMagicLinkSecretId as aP, type InitialMagicLinkSecretResponse as aQ, type TypedUuidForOAuthSecretId as aR, type InitialOAuthClientSecretResponse as aS, type TypedUuidForInterviewAttendeeId as aT, type InterviewAttendee as aU, type Interview as aV, type Interviewer as aW, type Jwk as aX, type Jwks as aY, type Listing as aZ, type TypedUuidForListingPoolId as a_, type ListingPoolAssociation as aa, type TriageReason as ab, type PoolAction as ac, type ReviewScore as ad, type Reviews as ae, type ExpandedApplicationSummary as af, type Evaluator as ag, type ApplicationSummariesResponse as ah, type ApplicationSummaryResponse as ai, type AssignPool as aj, type AttachDocument as ak, type EmailConfig as al, type TransitionMessage as am, type TransitionBody as an, type BatchParameter_for_TransitionBody as ao, type ViewApplication as ap, type BatchParameter_for_ViewApplication as aq, type CreateApplication as ar, type CreateDepartment as as, type CreateDocument as at, type RoleListingStatus as au, type CreateListing as av, type CreateMapper as aw, type CreatePool as ax, type CreateReview as ay, type CreateReviewAssignments as az, type ApiResult as b, type DeleteApiUserTokenPathParams as b$, type TypedUuidForMagicLinkRedirectUriId as b0, type MagicLinkRedirectUri as b1, type MagicLinkSecret as b2, type MagicLink as b3, type TypedUuidForMagicLinkAttemptId as b4, type MagicLinkExchangeRequest as b5, type MagicLinkExchangeResponse as b6, type MagicLinkMedium as b7, type MagicLinkSendRequest as b8, type MagicLinkSendResponse as b9, type TransitionApplicationToDeferredBatchEndpoint as bA, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bB, type OptionalTransitionBody as bC, type Pool as bD, type RegisterApplicant as bE, type Review as bF, type Reviewer as bG, type ReviewerInfo as bH, type ReviewInfo as bI, type Role as bJ, type TransitionApplicationToDeclinedBatch as bK, type TransitionApplicationToDeferredBatch as bL, type UpdateApplicantContact as bM, type UpdateDocument as bN, type UpdateDocumentStatus as bO, type UpdateListing as bP, type UpdateReview as bQ, type ScalarApplicationState as bR, type GetApiUserPathParams as bS, type UpdateApiUserPathParams as bT, type SetApiUserContactEmailPathParams as bU, type AddApiUserToGroupPathParams as bV, type RemoveApiUserFromGroupPathParams as bW, type LinkProviderPathParams as bX, type ListApiUserTokensPathParams as bY, type CreateApiUserTokenPathParams as bZ, type GetApiUserTokenPathParams as b_, type Mapper as ba, type Provider as bb, type NewHireBody as bc, type NotificationMedium as bd, type NotificationStatus as be, type TypedUuidForNotificationId as bf, type RenderedEmail as bg, type RecipientId as bh, type Notification_for_RenderedEmail as bi, type OAuthAuthzCodeExchangeBody as bj, type OAuthAuthzCodeExchangeResponse as bk, type TypedUuidForOAuthRedirectUriId as bl, type OAuthClientRedirectUri as bm, type OAuthClientSecret as bn, type OAuthClient as bo, type OAuthProviderName as bp, type OAuthProviderInfo as bq, type OfferTransitionBody as br, type OpenIdConfiguration as bs, type OperationState as bt, type OperationTaskState as bu, type TypedUuidForOperationTaskId as bv, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bw, type Operation_for_TurnstilePermission_and_String as bx, type TransitionApplicationToDeclinedBatchEndpoint as by, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bz, type TypedUuidForUserId as c, type ViewPoolPathParams as c$, type CreateLinkTokenPathParams as c0, type ListApplicantsQueryParams as c1, type ViewApplicantPathParams as c2, type UpdateApplicantContactPathParams as c3, type ViewApplicationPathParams as c4, type ApplyReviewActionPathParams as c5, type ListApplicationReviewAssignmentsPathParams as c6, type CreateApplicationReviewAssignmentsPathParams as c7, type ViewApplicationBundlePathParams as c8, type AttachDocumentPathParams as c9, type ListInterviewersQueryParams as cA, type ViewListingPathParams as cB, type UpdateListingPathParams as cC, type UpdateListingStatePathParams as cD, type MagicLinkExchangePathParams as cE, type MagicLinkSendPathParams as cF, type AuthzCodeRedirectPathParams as cG, type AuthzCodeRedirectQueryParams as cH, type AuthzCodeCallbackPathParams as cI, type AuthzCodeCallbackQueryParams as cJ, type AuthzCodeExchangePathParams as cK, type GetDeviceProviderPathParams as cL, type ExchangeDeviceTokenPathParams as cM, type GetMagicLinkPathParams as cN, type CreateMagicLinkRedirectUriPathParams as cO, type DeleteMagicLinkRedirectUriPathParams as cP, type CreateMagicLinkSecretPathParams as cQ, type DeleteMagicLinkSecretPathParams as cR, type GetMappersQueryParams as cS, type DeleteMapperPathParams as cT, type ListNotificationsQueryParams as cU, type EmailApplicantPathParams as cV, type GetOauthClientPathParams as cW, type CreateOauthClientRedirectUriPathParams as cX, type DeleteOauthClientRedirectUriPathParams as cY, type CreateOauthClientSecretPathParams as cZ, type DeleteOauthClientSecretPathParams as c_, type CreateDocumentUploadUrlPathParams as ca, type GetApplicationInterviewCodePathParams as cb, type NotifyApplicationReviewAssignmentsPathParams as cc, type SimulateReviewActionPathParams as cd, type SubmitApplicationPathParams as ce, type TransitionApplicationToDeclinedPathParams as cf, type TransitionApplicationToDeferredPathParams as cg, type TransitionApplicationToInterviewingPathParams as ch, type TransitionApplicationToNextStepsPathParams as ci, type TransitionApplicationToOfferPathParams as cj, type TransitionApplicationToWithdrawnPathParams as ck, type ListApplicationSummariesQueryParams as cl, type ViewApplicationSummaryPathParams as cm, type ListOperationsQueryParams as cn, type GetOperationPathParams as co, type ListOperationTasksQueryParams as cp, type ViewDepartmentPathParams as cq, type ListDocumentsQueryParams as cr, type ViewDocumentPathParams as cs, type UpdateDocumentPathParams as ct, type DeleteDocumentPathParams as cu, type ViewDocumentDataPathParams as cv, type UpdateDocumentStatusPathParams as cw, type UpdateGroupPathParams as cx, type DeleteGroupPathParams as cy, type ListInterviewsQueryParams as cz, type TypedUuidForApplicationId as d, type UpdatePoolPathParams as d0, type AssignPoolPathParams as d1, type UnassignPoolPathParams as d2, type ListReviewsQueryParams as d3, type ViewReviewPathParams as d4, type UpdateReviewPathParams as d5, type DeleteReviewPathParams as d6, type ListReviewersQueryParams as d7, type ViewRolePathParams as d8, type ErrorBody as d9, type ErrorResult as da, 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 TypedUuidForPoolId as k, type TypedUuidForReviewerId as l, type TypedUuidForReviewId as m, type TypedUuidForInterviewerId as n, type TypedUuidForInterviewId as o, type TypedUuidForBackgroundCheckId as p, type TypedUuidForOperationId as q, type TypedUuidForApiKeyId as r, type TypedUuidForAccessGroupId as s, type TypedUuidForMapperId as t, type TypedUuidForOAuthClientId as u, type TypedUuidForMagicLinkId as v, type TurnstilePermission as w, type AccessGroupUpdateParams_for_TurnstilePermission as x, type AccessGroup_for_TurnstilePermission as y, type AccessTokenExchangeRequest as z };
1858
+ export { type AddMagicLinkRedirectBody as $, type ApiConfig as A, type BackgroundCheckId as B, type ApiKeyId as C, type DocumentId as D, type EmployeeId as E, type FullParams as F, type TypedUuidForApiKeyId as G, type TypedUuidForAccessGroupId as H, type InterviewerId as I, type TypedUuidForMapperId as J, type OAuthClientId as K, type ListingId as L, type MapperId as M, type TypedUuidForOAuthClientId as N, type OnboardingId as O, type PoolId as P, type MagicLinkId as Q, type RoleId as R, type TypedUuidForMagicLinkId as S, type TypedUuidForApplicantId as T, type UserId as U, type TurnstilePermission as V, type Permissions_for_TurnstilePermission as W, type AccessGroupUpdateParams_for_TurnstilePermission as X, type AccessGroup_for_TurnstilePermission as Y, type AccessTokenExchangeRequest as Z, type AddGroupBody as _, Api as a, type ReviewAssignmentId as a$, type AddOAuthClientRedirectBody as a0, type ApiKeyCreateParams_for_TurnstilePermission as a1, type ApiKeyResponse_for_TurnstilePermission as a2, type UserProviderId as a3, type TypedUuidForUserProviderId as a4, type ApiUserContactEmail as a5, type ApiUserEmailUpdateParams as a6, type ApiUserProvider as a7, type ApiUser_for_TurnstilePermission as a8, type ApiUserInfo_for_TurnstilePermission as a9, type ListingPoolAssociation as aA, type TriageReason as aB, type PoolAction as aC, type ReviewScore as aD, type Reviews as aE, type ExpandedApplicationSummary as aF, type Evaluator as aG, type ApplicationSummariesResponse as aH, type ApplicationSummaryResponse as aI, type AssignPool as aJ, type AttachDocument as aK, type EmailConfig as aL, type TransitionMessage as aM, type TransitionBody as aN, type BatchParameter_for_TransitionBody as aO, type ViewApplication as aP, type BatchParameter_for_ViewApplication as aQ, type CreateApplication as aR, type CreateDepartment as aS, type CreateDocument as aT, type RoleListingStatus as aU, type CreateListing as aV, type CreateMapper as aW, type CreatePool as aX, type CreateReview as aY, type CreateReviewAssignments as aZ, type ReviewAssignmentCreationError as a_, type ApiUserLinkRequestPayload as aa, type SecretString as ab, type ApiUserLinkRequestResponse as ac, type ApiUserProviderLinkPayload as ad, type ApiUserUpdateParams_for_TurnstilePermission as ae, type Applicant as af, type ApplicantContactId as ag, type TypedUuidForApplicantContactId as ah, type ApplicantContactField as ai, type ApplicantContact as aj, type ApplicantInfo as ak, type InterviewingState as al, type OfferState as am, type ApplicationState as an, type Application as ao, type DocumentKind as ap, type DocumentSource as aq, type Document as ar, type ApplicationBundle as as, type ApplicationInterviewCodeId as at, type TypedUuidForApplicationInterviewCodeId as au, type ApplicationInterviewCode as av, type ApplicationStartDate as aw, type ApplicationStateRecordId as ax, type TypedUuidForApplicationStateRecordId as ay, type ApplicationStateRecord as az, type ApiResult as b, type OpenIdConfiguration as b$, type TypedUuidForReviewAssignmentId as b0, type ReviewAssignmentState as b1, type ReviewAssignment as b2, type CreatedAssignment as b3, type CreateReviewAssignmentsResponse as b4, type CreateRole as b5, type CreatedApplication as b6, type Department as b7, type DocumentUploadUrlResponse as b8, type EmailApplicantBody as b9, type MagicLinkAttemptId as bA, type TypedUuidForMagicLinkAttemptId as bB, type MagicLinkExchangeRequest as bC, type MagicLinkExchangeResponse as bD, type MagicLinkMedium as bE, type MagicLinkSendRequest as bF, type MagicLinkSendResponse as bG, type Mapper as bH, type Provider as bI, type NewHireBody as bJ, type NotificationId as bK, type NotificationMedium as bL, type NotificationStatus as bM, type TypedUuidForNotificationId as bN, type RenderedEmail as bO, type RecipientId as bP, type Notification_for_RenderedEmail as bQ, type OAuthAuthzCodeExchangeBody as bR, type OAuthAuthzCodeExchangeResponse as bS, type OAuthRedirectUriId as bT, type TypedUuidForOAuthRedirectUriId as bU, type OAuthClientRedirectUri as bV, type OAuthClientSecret as bW, type OAuthClient as bX, type OAuthProviderName as bY, type OAuthProviderInfo as bZ, type OfferTransitionBody as b_, type EmployeeState as ba, type Employee as bb, type GetUserResponse_for_TurnstilePermission as bc, type InitialApiKeyResponse_for_TurnstilePermission as bd, type MagicLinkSecretId as be, type TypedUuidForMagicLinkSecretId as bf, type InitialMagicLinkSecretResponse as bg, type OAuthSecretId as bh, type TypedUuidForOAuthSecretId as bi, type InitialOAuthClientSecretResponse as bj, type InterviewAttendeeId as bk, type TypedUuidForInterviewAttendeeId as bl, type InterviewAttendee as bm, type Interview as bn, type Interviewer as bo, type Jwk as bp, type Jwks as bq, type Listing as br, type ListingPoolId as bs, type TypedUuidForListingPoolId as bt, type ListingPool as bu, type MagicLinkRedirectUriId as bv, type TypedUuidForMagicLinkRedirectUriId as bw, type MagicLinkRedirectUri as bx, type MagicLinkSecret as by, type MagicLink as bz, type AccessGroupId as c, type ViewDepartmentPathParams as c$, type OperationState as c0, type OperationTaskId as c1, type OperationTaskState as c2, type TypedUuidForOperationTaskId as c3, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as c4, type Operation_for_TurnstilePermission_and_String as c5, type TransitionApplicationToDeclinedBatchEndpoint as c6, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as c7, type TransitionApplicationToDeferredBatchEndpoint as c8, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as c9, type CreateLinkTokenPathParams as cA, type ListApplicantsQueryParams as cB, type ViewApplicantPathParams as cC, type UpdateApplicantContactPathParams as cD, type ViewApplicationPathParams as cE, type ApplyReviewActionPathParams as cF, type ListApplicationReviewAssignmentsPathParams as cG, type CreateApplicationReviewAssignmentsPathParams as cH, type ViewApplicationBundlePathParams as cI, type AttachDocumentPathParams as cJ, type CreateDocumentUploadUrlPathParams as cK, type GetApplicationInterviewCodePathParams as cL, type NotifyApplicationReviewAssignmentsPathParams as cM, type SimulateReviewActionPathParams as cN, type ViewApplicationStartDatePathParams as cO, type SubmitApplicationPathParams as cP, type TransitionApplicationToDeclinedPathParams as cQ, type TransitionApplicationToDeferredPathParams as cR, type TransitionApplicationToInterviewingPathParams as cS, type TransitionApplicationToNextStepsPathParams as cT, type TransitionApplicationToOfferPathParams as cU, type TransitionApplicationToWithdrawnPathParams as cV, type ListApplicationSummariesQueryParams as cW, type ViewApplicationSummaryPathParams as cX, type ListOperationsQueryParams as cY, type GetOperationPathParams as cZ, type ListOperationTasksQueryParams as c_, type OptionalTransitionBody as ca, type Pool as cb, type RegisterApplicant as cc, type Review as cd, type Reviewer as ce, type ReviewerInfo as cf, type ReviewInfo as cg, type Role as ch, type TransitionApplicationToDeclinedBatch as ci, type TransitionApplicationToDeferredBatch as cj, type UpdateApplicantContact as ck, type UpdateDocument as cl, type UpdateDocumentStatus as cm, type UpdateListing as cn, type UpdateReview as co, type ScalarApplicationState as cp, type GetApiUserPathParams as cq, type UpdateApiUserPathParams as cr, type SetApiUserContactEmailPathParams as cs, type AddApiUserToGroupPathParams as ct, type RemoveApiUserFromGroupPathParams as cu, type LinkProviderPathParams as cv, type ListApiUserTokensPathParams as cw, type CreateApiUserTokenPathParams as cx, type GetApiUserTokenPathParams as cy, type DeleteApiUserTokenPathParams as cz, type ApplicantId as d, type ListDocumentsQueryParams as d0, type ViewDocumentPathParams as d1, type UpdateDocumentPathParams as d2, type DeleteDocumentPathParams as d3, type ViewDocumentDataPathParams as d4, type UpdateDocumentStatusPathParams as d5, type UpdateGroupPathParams as d6, type DeleteGroupPathParams as d7, type ListInterviewsQueryParams as d8, type ListInterviewersQueryParams as d9, type DeleteOauthClientSecretPathParams as dA, type ViewPoolPathParams as dB, type UpdatePoolPathParams as dC, type AssignPoolPathParams as dD, type UnassignPoolPathParams as dE, type ListReviewsQueryParams as dF, type ViewReviewPathParams as dG, type UpdateReviewPathParams as dH, type DeleteReviewPathParams as dI, type ListReviewersQueryParams as dJ, type ViewRolePathParams as dK, type ErrorBody as dL, type ErrorResult as dM, type ViewListingPathParams as da, type UpdateListingPathParams as db, type UpdateListingStatePathParams as dc, type MagicLinkExchangePathParams as dd, type MagicLinkSendPathParams as de, type AuthzCodeRedirectPathParams as df, type AuthzCodeRedirectQueryParams as dg, type AuthzCodeCallbackPathParams as dh, type AuthzCodeCallbackQueryParams as di, type AuthzCodeExchangePathParams as dj, type GetDeviceProviderPathParams as dk, type ExchangeDeviceTokenPathParams as dl, type GetMagicLinkPathParams as dm, type CreateMagicLinkRedirectUriPathParams as dn, type DeleteMagicLinkRedirectUriPathParams as dp, type CreateMagicLinkSecretPathParams as dq, type DeleteMagicLinkSecretPathParams as dr, type GetMappersQueryParams as ds, type DeleteMapperPathParams as dt, type ListNotificationsQueryParams as du, type EmailApplicantPathParams as dv, type GetOauthClientPathParams as dw, type CreateOauthClientRedirectUriPathParams as dx, type DeleteOauthClientRedirectUriPathParams as dy, type CreateOauthClientSecretPathParams as dz, type TypedUuidForUserId as e, type ApplicationId as f, type TypedUuidForApplicationId as g, type TypedUuidForDocumentId as h, type TypedUuidForEmployeeId as i, type TypedUuidForOnboardingId as j, type DocumentParent as k, type DepartmentId as l, type TypedUuidForDepartmentId as m, type TypedUuidForRoleId as n, type TypedUuidForListingId as o, type TypedUuidForPoolId as p, type ReviewerId as q, type TypedUuidForReviewerId as r, type ReviewId as s, type TypedUuidForReviewId as t, type TypedUuidForInterviewerId as u, type InterviewId as v, type TypedUuidForInterviewId as w, type TypedUuidForBackgroundCheckId as x, type OperationId as y, type TypedUuidForOperationId as z };
@@ -60,11 +60,18 @@ declare class HttpClient {
60
60
  request<Data>({ body, path, query, host, ...fetchParams }: FullParams): Promise<ApiResult<Data>>;
61
61
  }
62
62
 
63
+ type AccessGroupId = Record<string, unknown>;
64
+ type ApplicantId = Record<string, unknown>;
63
65
  type TypedUuidForApplicantId = string;
66
+ type UserId = Record<string, unknown>;
64
67
  type TypedUuidForUserId = string;
68
+ type ApplicationId = Record<string, unknown>;
65
69
  type TypedUuidForApplicationId = string;
70
+ type DocumentId = Record<string, unknown>;
66
71
  type TypedUuidForDocumentId = string;
72
+ type EmployeeId = Record<string, unknown>;
67
73
  type TypedUuidForEmployeeId = string;
74
+ type OnboardingId = Record<string, unknown>;
68
75
  type TypedUuidForOnboardingId = string;
69
76
  type DocumentParent = {
70
77
  'Application': TypedUuidForApplicationId;
@@ -73,20 +80,34 @@ type DocumentParent = {
73
80
  } | {
74
81
  'Onboarding': TypedUuidForOnboardingId;
75
82
  };
83
+ type DepartmentId = Record<string, unknown>;
76
84
  type TypedUuidForDepartmentId = string;
85
+ type RoleId = Record<string, unknown>;
77
86
  type TypedUuidForRoleId = string;
87
+ type ListingId = Record<string, unknown>;
78
88
  type TypedUuidForListingId = string;
89
+ type PoolId = Record<string, unknown>;
79
90
  type TypedUuidForPoolId = string;
91
+ type ReviewerId = Record<string, unknown>;
80
92
  type TypedUuidForReviewerId = string;
93
+ type ReviewId = Record<string, unknown>;
81
94
  type TypedUuidForReviewId = string;
95
+ type InterviewerId = Record<string, unknown>;
82
96
  type TypedUuidForInterviewerId = string;
97
+ type InterviewId = Record<string, unknown>;
83
98
  type TypedUuidForInterviewId = string;
99
+ type BackgroundCheckId = Record<string, unknown>;
84
100
  type TypedUuidForBackgroundCheckId = string;
101
+ type OperationId = Record<string, unknown>;
85
102
  type TypedUuidForOperationId = string;
103
+ type ApiKeyId = Record<string, unknown>;
86
104
  type TypedUuidForApiKeyId = string;
87
105
  type TypedUuidForAccessGroupId = string;
106
+ type MapperId = Record<string, unknown>;
88
107
  type TypedUuidForMapperId = string;
108
+ type OAuthClientId = Record<string, unknown>;
89
109
  type TypedUuidForOAuthClientId = string;
110
+ type MagicLinkId = Record<string, unknown>;
90
111
  type TypedUuidForMagicLinkId = string;
91
112
  type TurnstilePermission = 'CreateNotificationsAll' | 'GetNotificationsAll' | 'ScheduleNotification' | 'SendNotification' | 'GetApplicantsAssigned' | 'GetApplicantsAll' | 'GetApplicantSelf' | 'CreateApplicantsAssigned' | 'CreateApplicantsAll' | 'CreateApplicantSelf' | 'ManageApplicantsAssigned' | 'ManageApplicantsAll' | 'ManageApplicantSelf' | 'GetApplicationsAssigned' | 'GetApplicationsAll' | 'CreateApplicationAssigned' | 'CreateApplicationSelf' | 'SubmitApplicationsAssigned' | 'WithdrawApplicationsAssigned' | 'ManageApplicationsAssigned' | 'ManageApplicationsAll' | 'GetApplicationSummariesAll' | 'GetDocumentsAssigned' | 'GetDocumentsAll' | 'CreateDocument' | 'ManageDocumentsAssigned' | 'ManageDocumentsAll' | 'AttachDocumentsAssigned' | 'AttachDocumentsAll' | 'GetDepartmentsAssigned' | 'GetDepartmentsAll' | 'CreateDepartment' | 'GetRolesAssigned' | 'GetRolesAll' | 'CreateRole' | 'GetListingsAssigned' | 'GetListingsAll' | 'CreateListing' | 'ManageListingsAll' | 'GetPoolsAssigned' | 'GetPoolsAll' | 'CreatePool' | 'ManagePoolsAll' | 'GetReviewersAssigned' | 'GetReviewersAll' | 'GetReviewerSelf' | 'CreateReviewersAssigned' | 'CreateReviewersAll' | 'CreateReviewerSelf' | 'GetReviewsAssigned' | 'GetReviewsAll' | 'CreateReview' | 'ManageReviewsAssigned' | 'ManageReviewsAll' | 'GetReviewAssignmentsAll' | 'CompleteReviewAssignmentSelf' | 'CompleteReviewAssignmentsAll' | 'ManageReviewAssignmentsAll' | 'GetReviewSummariesAll' | 'GetInterviewersAssigned' | 'GetInterviewersAll' | 'CreateInterviewersAssigned' | 'CreateInterviewersAll' | 'CreateInterviewerSelf' | 'ManageInterviewersAssigned' | 'ManageInterviewersAll' | 'GetInterviewsAssigned' | 'GetInterviewsAll' | 'CreateInterview' | 'ManageInterviewsAssigned' | 'ManageInterviewsAll' | 'GetBackgroundChecksAssigned' | 'GetBackgroundChecksAll' | 'CreateBackgroundChecksAll' | 'ManageBackgroundChecksAssigned' | 'ManageBackgroundChecksAll' | 'GetEnvelope' | 'SendEnvelope' | 'GetEmployeesAssigned' | 'GetEmployeesAll' | 'CreateEmployee' | 'ManageEmployeesAssigned' | 'ManageEmployeesAll' | 'GetOnboardingsAll' | 'CreateOnboarding' | 'GetBatchOperationsAssigned' | 'GetBatchOperationsAll' | 'CreateBatchOperation' | 'ManageBatchOperationsAll' | 'CreateApiUser' | 'GetApiUserSelf' | 'GetApiUsersAssigned' | 'GetApiUsersAll' | 'ManageApiUsersAssigned' | 'ManageApiUsersAll' | 'CreateApiKeySelf' | 'CreateApiKeyAssigned' | 'CreateApiKeyAll' | 'GetApiKeysAssigned' | 'GetApiKeysAll' | 'ManageApiKeysAssigned' | 'ManageApiKeysAll' | 'CreateUserApiProviderLinkToken' | 'CreateGroup' | 'GetGroupsJoined' | 'GetGroupsAll' | 'ManageGroupsAssigned' | 'ManageGroupsAll' | 'ManageGroupMembershipsAssigned' | 'ManageGroupMembershipsAll' | 'CreateMapper' | 'GetMappersAll' | 'ManageMappersAssigned' | 'ManageMappersAll' | 'CreateOAuthClient' | 'GetOAuthClientsAssigned' | 'GetOAuthClientsAll' | 'ManageOAuthClientsAssigned' | 'ManageOAuthClientsAll' | 'CreateMagicLinkClient' | 'GetMagicLinkClientsAssigned' | 'GetMagicLinkClientsAll' | 'ManageMagicLinkClientsAssigned' | 'ManageMagicLinkClientsAll' | 'CreateAccessToken' | {
92
113
  'GetApplicant': TypedUuidForApplicantId;
@@ -291,6 +312,7 @@ type ApiKeyResponse_for_TurnstilePermission = {
291
312
  'id': TypedUuidForApiKeyId;
292
313
  'permissions'?: Permissions_for_TurnstilePermission | null;
293
314
  };
315
+ type UserProviderId = Record<string, unknown>;
294
316
  type TypedUuidForUserProviderId = string;
295
317
  type ApiUserContactEmail = {
296
318
  'createdAt': Date;
@@ -348,6 +370,7 @@ type Applicant = {
348
370
  'id': TypedUuidForApplicantId;
349
371
  'updatedAt': Date;
350
372
  };
373
+ type ApplicantContactId = Record<string, unknown>;
351
374
  type TypedUuidForApplicantContactId = string;
352
375
  type ApplicantContactField = 'country' | 'email' | 'github' | 'gitlab' | 'linkedin' | 'location' | 'name' | 'phone' | 'portfolio' | 'website';
353
376
  type ApplicantContact = {
@@ -402,6 +425,7 @@ type ApplicationBundle = {
402
425
  'application': Application;
403
426
  'documents': (Document)[];
404
427
  };
428
+ type ApplicationInterviewCodeId = Record<string, unknown>;
405
429
  type TypedUuidForApplicationInterviewCodeId = string;
406
430
  type ApplicationInterviewCode = {
407
431
  'applicationId': TypedUuidForApplicationId;
@@ -409,6 +433,10 @@ type ApplicationInterviewCode = {
409
433
  'createdAt': Date;
410
434
  'id': TypedUuidForApplicationInterviewCodeId;
411
435
  };
436
+ type ApplicationStartDate = {
437
+ 'startDate': string;
438
+ };
439
+ type ApplicationStateRecordId = Record<string, unknown>;
412
440
  type TypedUuidForApplicationStateRecordId = string;
413
441
  type ApplicationStateRecord = {
414
442
  'applicationId': TypedUuidForApplicationId;
@@ -563,6 +591,7 @@ type ReviewAssignmentCreationError = (
563
591
  | 'Forbidden'
564
592
  /** Internal server error */
565
593
  | 'Internal');
594
+ type ReviewAssignmentId = Record<string, unknown>;
566
595
  type TypedUuidForReviewAssignmentId = string;
567
596
  type ReviewAssignmentState = 'pending' | 'complete';
568
597
  type ReviewAssignment = {
@@ -632,18 +661,21 @@ type InitialApiKeyResponse_for_TurnstilePermission = {
632
661
  'key': SecretString;
633
662
  'permissions'?: Permissions_for_TurnstilePermission | null;
634
663
  };
664
+ type MagicLinkSecretId = Record<string, unknown>;
635
665
  type TypedUuidForMagicLinkSecretId = string;
636
666
  type InitialMagicLinkSecretResponse = {
637
667
  'createdAt': Date;
638
668
  'id': TypedUuidForMagicLinkSecretId;
639
669
  'key': SecretString;
640
670
  };
671
+ type OAuthSecretId = Record<string, unknown>;
641
672
  type TypedUuidForOAuthSecretId = string;
642
673
  type InitialOAuthClientSecretResponse = {
643
674
  'createdAt': Date;
644
675
  'id': TypedUuidForOAuthSecretId;
645
676
  'key': SecretString;
646
677
  };
678
+ type InterviewAttendeeId = Record<string, unknown>;
647
679
  type TypedUuidForInterviewAttendeeId = string;
648
680
  type InterviewAttendee = {
649
681
  'createdAt': Date;
@@ -694,6 +726,7 @@ type Listing = {
694
726
  'state': RoleListingStatus;
695
727
  'updatedAt': Date;
696
728
  };
729
+ type ListingPoolId = Record<string, unknown>;
697
730
  type TypedUuidForListingPoolId = string;
698
731
  type ListingPool = {
699
732
  'association': ListingPoolAssociation;
@@ -704,6 +737,7 @@ type ListingPool = {
704
737
  'poolId': TypedUuidForPoolId;
705
738
  'updatedAt': Date;
706
739
  };
740
+ type MagicLinkRedirectUriId = Record<string, unknown>;
707
741
  type TypedUuidForMagicLinkRedirectUriId = string;
708
742
  type MagicLinkRedirectUri = {
709
743
  'createdAt': Date;
@@ -726,6 +760,7 @@ type MagicLink = {
726
760
  'redirectUris': (MagicLinkRedirectUri)[];
727
761
  'secrets': (MagicLinkSecret)[];
728
762
  };
763
+ type MagicLinkAttemptId = Record<string, unknown>;
729
764
  type TypedUuidForMagicLinkAttemptId = string;
730
765
  type MagicLinkExchangeRequest = {
731
766
  'attemptId': TypedUuidForMagicLinkAttemptId;
@@ -766,6 +801,7 @@ type NewHireBody = {
766
801
  'provider': Provider;
767
802
  'providerId': string;
768
803
  };
804
+ type NotificationId = Record<string, unknown>;
769
805
  type NotificationMedium = 'Email';
770
806
  type NotificationStatus = 'Failed' | 'Pending' | 'Scheduled' | 'Sent';
771
807
  type TypedUuidForNotificationId = string;
@@ -807,6 +843,7 @@ type OAuthAuthzCodeExchangeResponse = {
807
843
  'expiresIn': number;
808
844
  'tokenType': string;
809
845
  };
846
+ type OAuthRedirectUriId = Record<string, unknown>;
810
847
  type TypedUuidForOAuthRedirectUriId = string;
811
848
  type OAuthClientRedirectUri = {
812
849
  'createdAt': Date;
@@ -847,6 +884,7 @@ type OpenIdConfiguration = {
847
884
  'jwksUri': string;
848
885
  };
849
886
  type OperationState = 'complete' | 'pending' | 'started';
887
+ type OperationTaskId = Record<string, unknown>;
850
888
  type OperationTaskState = 'complete' | 'failed' | 'pending';
851
889
  type TypedUuidForOperationTaskId = string;
852
890
  type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue = {
@@ -1055,6 +1093,9 @@ interface NotifyApplicationReviewAssignmentsPathParams {
1055
1093
  interface SimulateReviewActionPathParams {
1056
1094
  application: TypedUuidForApplicationId;
1057
1095
  }
1096
+ interface ViewApplicationStartDatePathParams {
1097
+ application: TypedUuidForApplicationId;
1098
+ }
1058
1099
  interface SubmitApplicationPathParams {
1059
1100
  application: TypedUuidForApplicationId;
1060
1101
  }
@@ -1420,6 +1461,9 @@ declare class Api extends HttpClient {
1420
1461
  simulateReviewAction: ({ path, }: {
1421
1462
  path: SimulateReviewActionPathParams;
1422
1463
  }, params?: FetchParams) => Promise<ApiResult<PoolAction>>;
1464
+ viewApplicationStartDate: ({ path, }: {
1465
+ path: ViewApplicationStartDatePathParams;
1466
+ }, params?: FetchParams) => Promise<ApiResult<ApplicationStartDate>>;
1423
1467
  /**
1424
1468
  * Submit an application that has all required documents attached
1425
1469
  */
@@ -1811,4 +1855,4 @@ declare class Api extends HttpClient {
1811
1855
  ws: {};
1812
1856
  }
1813
1857
 
1814
- export { type OfferState as $, type ApiConfig as A, type AddGroupBody as B, type AddMagicLinkRedirectBody as C, type DocumentParent as D, type AddOAuthClientRedirectBody as E, type FullParams as F, type ApiKeyCreateParams_for_TurnstilePermission as G, type ApiKeyResponse_for_TurnstilePermission as H, type TypedUuidForUserProviderId as I, type ApiUserContactEmail as J, type ApiUserEmailUpdateParams as K, type ApiUserProvider as L, type ApiUser_for_TurnstilePermission as M, type ApiUserInfo_for_TurnstilePermission as N, type ApiUserLinkRequestPayload as O, type Permissions_for_TurnstilePermission as P, type ApiUserLinkRequestResponse as Q, type ApiUserProviderLinkPayload as R, type SecretString as S, type TypedUuidForApplicantId as T, type ApiUserUpdateParams_for_TurnstilePermission as U, type Applicant as V, type TypedUuidForApplicantContactId as W, type ApplicantContactField as X, type ApplicantContact as Y, type ApplicantInfo as Z, type InterviewingState as _, Api as a, type ListingPool as a$, type ApplicationState as a0, type Application as a1, type DocumentKind as a2, type DocumentSource as a3, type Document as a4, type ApplicationBundle as a5, type TypedUuidForApplicationInterviewCodeId as a6, type ApplicationInterviewCode as a7, type TypedUuidForApplicationStateRecordId as a8, type ApplicationStateRecord as a9, type ReviewAssignmentCreationError as aA, type TypedUuidForReviewAssignmentId as aB, type ReviewAssignmentState as aC, type ReviewAssignment 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 EmployeeState as aL, type Employee as aM, type GetUserResponse_for_TurnstilePermission as aN, type InitialApiKeyResponse_for_TurnstilePermission as aO, type TypedUuidForMagicLinkSecretId as aP, type InitialMagicLinkSecretResponse as aQ, type TypedUuidForOAuthSecretId as aR, type InitialOAuthClientSecretResponse as aS, type TypedUuidForInterviewAttendeeId as aT, type InterviewAttendee as aU, type Interview as aV, type Interviewer as aW, type Jwk as aX, type Jwks as aY, type Listing as aZ, type TypedUuidForListingPoolId as a_, type ListingPoolAssociation as aa, type TriageReason as ab, type PoolAction as ac, type ReviewScore as ad, type Reviews as ae, type ExpandedApplicationSummary as af, type Evaluator as ag, type ApplicationSummariesResponse as ah, type ApplicationSummaryResponse as ai, type AssignPool as aj, type AttachDocument as ak, type EmailConfig as al, type TransitionMessage as am, type TransitionBody as an, type BatchParameter_for_TransitionBody as ao, type ViewApplication as ap, type BatchParameter_for_ViewApplication as aq, type CreateApplication as ar, type CreateDepartment as as, type CreateDocument as at, type RoleListingStatus as au, type CreateListing as av, type CreateMapper as aw, type CreatePool as ax, type CreateReview as ay, type CreateReviewAssignments as az, type ApiResult as b, type DeleteApiUserTokenPathParams as b$, type TypedUuidForMagicLinkRedirectUriId as b0, type MagicLinkRedirectUri as b1, type MagicLinkSecret as b2, type MagicLink as b3, type TypedUuidForMagicLinkAttemptId as b4, type MagicLinkExchangeRequest as b5, type MagicLinkExchangeResponse as b6, type MagicLinkMedium as b7, type MagicLinkSendRequest as b8, type MagicLinkSendResponse as b9, type TransitionApplicationToDeferredBatchEndpoint as bA, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as bB, type OptionalTransitionBody as bC, type Pool as bD, type RegisterApplicant as bE, type Review as bF, type Reviewer as bG, type ReviewerInfo as bH, type ReviewInfo as bI, type Role as bJ, type TransitionApplicationToDeclinedBatch as bK, type TransitionApplicationToDeferredBatch as bL, type UpdateApplicantContact as bM, type UpdateDocument as bN, type UpdateDocumentStatus as bO, type UpdateListing as bP, type UpdateReview as bQ, type ScalarApplicationState as bR, type GetApiUserPathParams as bS, type UpdateApiUserPathParams as bT, type SetApiUserContactEmailPathParams as bU, type AddApiUserToGroupPathParams as bV, type RemoveApiUserFromGroupPathParams as bW, type LinkProviderPathParams as bX, type ListApiUserTokensPathParams as bY, type CreateApiUserTokenPathParams as bZ, type GetApiUserTokenPathParams as b_, type Mapper as ba, type Provider as bb, type NewHireBody as bc, type NotificationMedium as bd, type NotificationStatus as be, type TypedUuidForNotificationId as bf, type RenderedEmail as bg, type RecipientId as bh, type Notification_for_RenderedEmail as bi, type OAuthAuthzCodeExchangeBody as bj, type OAuthAuthzCodeExchangeResponse as bk, type TypedUuidForOAuthRedirectUriId as bl, type OAuthClientRedirectUri as bm, type OAuthClientSecret as bn, type OAuthClient as bo, type OAuthProviderName as bp, type OAuthProviderInfo as bq, type OfferTransitionBody as br, type OpenIdConfiguration as bs, type OperationState as bt, type OperationTaskState as bu, type TypedUuidForOperationTaskId as bv, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as bw, type Operation_for_TurnstilePermission_and_String as bx, type TransitionApplicationToDeclinedBatchEndpoint as by, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as bz, type TypedUuidForUserId as c, type ViewPoolPathParams as c$, type CreateLinkTokenPathParams as c0, type ListApplicantsQueryParams as c1, type ViewApplicantPathParams as c2, type UpdateApplicantContactPathParams as c3, type ViewApplicationPathParams as c4, type ApplyReviewActionPathParams as c5, type ListApplicationReviewAssignmentsPathParams as c6, type CreateApplicationReviewAssignmentsPathParams as c7, type ViewApplicationBundlePathParams as c8, type AttachDocumentPathParams as c9, type ListInterviewersQueryParams as cA, type ViewListingPathParams as cB, type UpdateListingPathParams as cC, type UpdateListingStatePathParams as cD, type MagicLinkExchangePathParams as cE, type MagicLinkSendPathParams as cF, type AuthzCodeRedirectPathParams as cG, type AuthzCodeRedirectQueryParams as cH, type AuthzCodeCallbackPathParams as cI, type AuthzCodeCallbackQueryParams as cJ, type AuthzCodeExchangePathParams as cK, type GetDeviceProviderPathParams as cL, type ExchangeDeviceTokenPathParams as cM, type GetMagicLinkPathParams as cN, type CreateMagicLinkRedirectUriPathParams as cO, type DeleteMagicLinkRedirectUriPathParams as cP, type CreateMagicLinkSecretPathParams as cQ, type DeleteMagicLinkSecretPathParams as cR, type GetMappersQueryParams as cS, type DeleteMapperPathParams as cT, type ListNotificationsQueryParams as cU, type EmailApplicantPathParams as cV, type GetOauthClientPathParams as cW, type CreateOauthClientRedirectUriPathParams as cX, type DeleteOauthClientRedirectUriPathParams as cY, type CreateOauthClientSecretPathParams as cZ, type DeleteOauthClientSecretPathParams as c_, type CreateDocumentUploadUrlPathParams as ca, type GetApplicationInterviewCodePathParams as cb, type NotifyApplicationReviewAssignmentsPathParams as cc, type SimulateReviewActionPathParams as cd, type SubmitApplicationPathParams as ce, type TransitionApplicationToDeclinedPathParams as cf, type TransitionApplicationToDeferredPathParams as cg, type TransitionApplicationToInterviewingPathParams as ch, type TransitionApplicationToNextStepsPathParams as ci, type TransitionApplicationToOfferPathParams as cj, type TransitionApplicationToWithdrawnPathParams as ck, type ListApplicationSummariesQueryParams as cl, type ViewApplicationSummaryPathParams as cm, type ListOperationsQueryParams as cn, type GetOperationPathParams as co, type ListOperationTasksQueryParams as cp, type ViewDepartmentPathParams as cq, type ListDocumentsQueryParams as cr, type ViewDocumentPathParams as cs, type UpdateDocumentPathParams as ct, type DeleteDocumentPathParams as cu, type ViewDocumentDataPathParams as cv, type UpdateDocumentStatusPathParams as cw, type UpdateGroupPathParams as cx, type DeleteGroupPathParams as cy, type ListInterviewsQueryParams as cz, type TypedUuidForApplicationId as d, type UpdatePoolPathParams as d0, type AssignPoolPathParams as d1, type UnassignPoolPathParams as d2, type ListReviewsQueryParams as d3, type ViewReviewPathParams as d4, type UpdateReviewPathParams as d5, type DeleteReviewPathParams as d6, type ListReviewersQueryParams as d7, type ViewRolePathParams as d8, type ErrorBody as d9, type ErrorResult as da, 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 TypedUuidForPoolId as k, type TypedUuidForReviewerId as l, type TypedUuidForReviewId as m, type TypedUuidForInterviewerId as n, type TypedUuidForInterviewId as o, type TypedUuidForBackgroundCheckId as p, type TypedUuidForOperationId as q, type TypedUuidForApiKeyId as r, type TypedUuidForAccessGroupId as s, type TypedUuidForMapperId as t, type TypedUuidForOAuthClientId as u, type TypedUuidForMagicLinkId as v, type TurnstilePermission as w, type AccessGroupUpdateParams_for_TurnstilePermission as x, type AccessGroup_for_TurnstilePermission as y, type AccessTokenExchangeRequest as z };
1858
+ export { type AddMagicLinkRedirectBody as $, type ApiConfig as A, type BackgroundCheckId as B, type ApiKeyId as C, type DocumentId as D, type EmployeeId as E, type FullParams as F, type TypedUuidForApiKeyId as G, type TypedUuidForAccessGroupId as H, type InterviewerId as I, type TypedUuidForMapperId as J, type OAuthClientId as K, type ListingId as L, type MapperId as M, type TypedUuidForOAuthClientId as N, type OnboardingId as O, type PoolId as P, type MagicLinkId as Q, type RoleId as R, type TypedUuidForMagicLinkId as S, type TypedUuidForApplicantId as T, type UserId as U, type TurnstilePermission as V, type Permissions_for_TurnstilePermission as W, type AccessGroupUpdateParams_for_TurnstilePermission as X, type AccessGroup_for_TurnstilePermission as Y, type AccessTokenExchangeRequest as Z, type AddGroupBody as _, Api as a, type ReviewAssignmentId as a$, type AddOAuthClientRedirectBody as a0, type ApiKeyCreateParams_for_TurnstilePermission as a1, type ApiKeyResponse_for_TurnstilePermission as a2, type UserProviderId as a3, type TypedUuidForUserProviderId as a4, type ApiUserContactEmail as a5, type ApiUserEmailUpdateParams as a6, type ApiUserProvider as a7, type ApiUser_for_TurnstilePermission as a8, type ApiUserInfo_for_TurnstilePermission as a9, type ListingPoolAssociation as aA, type TriageReason as aB, type PoolAction as aC, type ReviewScore as aD, type Reviews as aE, type ExpandedApplicationSummary as aF, type Evaluator as aG, type ApplicationSummariesResponse as aH, type ApplicationSummaryResponse as aI, type AssignPool as aJ, type AttachDocument as aK, type EmailConfig as aL, type TransitionMessage as aM, type TransitionBody as aN, type BatchParameter_for_TransitionBody as aO, type ViewApplication as aP, type BatchParameter_for_ViewApplication as aQ, type CreateApplication as aR, type CreateDepartment as aS, type CreateDocument as aT, type RoleListingStatus as aU, type CreateListing as aV, type CreateMapper as aW, type CreatePool as aX, type CreateReview as aY, type CreateReviewAssignments as aZ, type ReviewAssignmentCreationError as a_, type ApiUserLinkRequestPayload as aa, type SecretString as ab, type ApiUserLinkRequestResponse as ac, type ApiUserProviderLinkPayload as ad, type ApiUserUpdateParams_for_TurnstilePermission as ae, type Applicant as af, type ApplicantContactId as ag, type TypedUuidForApplicantContactId as ah, type ApplicantContactField as ai, type ApplicantContact as aj, type ApplicantInfo as ak, type InterviewingState as al, type OfferState as am, type ApplicationState as an, type Application as ao, type DocumentKind as ap, type DocumentSource as aq, type Document as ar, type ApplicationBundle as as, type ApplicationInterviewCodeId as at, type TypedUuidForApplicationInterviewCodeId as au, type ApplicationInterviewCode as av, type ApplicationStartDate as aw, type ApplicationStateRecordId as ax, type TypedUuidForApplicationStateRecordId as ay, type ApplicationStateRecord as az, type ApiResult as b, type OpenIdConfiguration as b$, type TypedUuidForReviewAssignmentId as b0, type ReviewAssignmentState as b1, type ReviewAssignment as b2, type CreatedAssignment as b3, type CreateReviewAssignmentsResponse as b4, type CreateRole as b5, type CreatedApplication as b6, type Department as b7, type DocumentUploadUrlResponse as b8, type EmailApplicantBody as b9, type MagicLinkAttemptId as bA, type TypedUuidForMagicLinkAttemptId as bB, type MagicLinkExchangeRequest as bC, type MagicLinkExchangeResponse as bD, type MagicLinkMedium as bE, type MagicLinkSendRequest as bF, type MagicLinkSendResponse as bG, type Mapper as bH, type Provider as bI, type NewHireBody as bJ, type NotificationId as bK, type NotificationMedium as bL, type NotificationStatus as bM, type TypedUuidForNotificationId as bN, type RenderedEmail as bO, type RecipientId as bP, type Notification_for_RenderedEmail as bQ, type OAuthAuthzCodeExchangeBody as bR, type OAuthAuthzCodeExchangeResponse as bS, type OAuthRedirectUriId as bT, type TypedUuidForOAuthRedirectUriId as bU, type OAuthClientRedirectUri as bV, type OAuthClientSecret as bW, type OAuthClient as bX, type OAuthProviderName as bY, type OAuthProviderInfo as bZ, type OfferTransitionBody as b_, type EmployeeState as ba, type Employee as bb, type GetUserResponse_for_TurnstilePermission as bc, type InitialApiKeyResponse_for_TurnstilePermission as bd, type MagicLinkSecretId as be, type TypedUuidForMagicLinkSecretId as bf, type InitialMagicLinkSecretResponse as bg, type OAuthSecretId as bh, type TypedUuidForOAuthSecretId as bi, type InitialOAuthClientSecretResponse as bj, type InterviewAttendeeId as bk, type TypedUuidForInterviewAttendeeId as bl, type InterviewAttendee as bm, type Interview as bn, type Interviewer as bo, type Jwk as bp, type Jwks as bq, type Listing as br, type ListingPoolId as bs, type TypedUuidForListingPoolId as bt, type ListingPool as bu, type MagicLinkRedirectUriId as bv, type TypedUuidForMagicLinkRedirectUriId as bw, type MagicLinkRedirectUri as bx, type MagicLinkSecret as by, type MagicLink as bz, type AccessGroupId as c, type ViewDepartmentPathParams as c$, type OperationState as c0, type OperationTaskId as c1, type OperationTaskState as c2, type TypedUuidForOperationTaskId as c3, type OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue as c4, type Operation_for_TurnstilePermission_and_String as c5, type TransitionApplicationToDeclinedBatchEndpoint as c6, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint as c7, type TransitionApplicationToDeferredBatchEndpoint as c8, type Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint as c9, type CreateLinkTokenPathParams as cA, type ListApplicantsQueryParams as cB, type ViewApplicantPathParams as cC, type UpdateApplicantContactPathParams as cD, type ViewApplicationPathParams as cE, type ApplyReviewActionPathParams as cF, type ListApplicationReviewAssignmentsPathParams as cG, type CreateApplicationReviewAssignmentsPathParams as cH, type ViewApplicationBundlePathParams as cI, type AttachDocumentPathParams as cJ, type CreateDocumentUploadUrlPathParams as cK, type GetApplicationInterviewCodePathParams as cL, type NotifyApplicationReviewAssignmentsPathParams as cM, type SimulateReviewActionPathParams as cN, type ViewApplicationStartDatePathParams as cO, type SubmitApplicationPathParams as cP, type TransitionApplicationToDeclinedPathParams as cQ, type TransitionApplicationToDeferredPathParams as cR, type TransitionApplicationToInterviewingPathParams as cS, type TransitionApplicationToNextStepsPathParams as cT, type TransitionApplicationToOfferPathParams as cU, type TransitionApplicationToWithdrawnPathParams as cV, type ListApplicationSummariesQueryParams as cW, type ViewApplicationSummaryPathParams as cX, type ListOperationsQueryParams as cY, type GetOperationPathParams as cZ, type ListOperationTasksQueryParams as c_, type OptionalTransitionBody as ca, type Pool as cb, type RegisterApplicant as cc, type Review as cd, type Reviewer as ce, type ReviewerInfo as cf, type ReviewInfo as cg, type Role as ch, type TransitionApplicationToDeclinedBatch as ci, type TransitionApplicationToDeferredBatch as cj, type UpdateApplicantContact as ck, type UpdateDocument as cl, type UpdateDocumentStatus as cm, type UpdateListing as cn, type UpdateReview as co, type ScalarApplicationState as cp, type GetApiUserPathParams as cq, type UpdateApiUserPathParams as cr, type SetApiUserContactEmailPathParams as cs, type AddApiUserToGroupPathParams as ct, type RemoveApiUserFromGroupPathParams as cu, type LinkProviderPathParams as cv, type ListApiUserTokensPathParams as cw, type CreateApiUserTokenPathParams as cx, type GetApiUserTokenPathParams as cy, type DeleteApiUserTokenPathParams as cz, type ApplicantId as d, type ListDocumentsQueryParams as d0, type ViewDocumentPathParams as d1, type UpdateDocumentPathParams as d2, type DeleteDocumentPathParams as d3, type ViewDocumentDataPathParams as d4, type UpdateDocumentStatusPathParams as d5, type UpdateGroupPathParams as d6, type DeleteGroupPathParams as d7, type ListInterviewsQueryParams as d8, type ListInterviewersQueryParams as d9, type DeleteOauthClientSecretPathParams as dA, type ViewPoolPathParams as dB, type UpdatePoolPathParams as dC, type AssignPoolPathParams as dD, type UnassignPoolPathParams as dE, type ListReviewsQueryParams as dF, type ViewReviewPathParams as dG, type UpdateReviewPathParams as dH, type DeleteReviewPathParams as dI, type ListReviewersQueryParams as dJ, type ViewRolePathParams as dK, type ErrorBody as dL, type ErrorResult as dM, type ViewListingPathParams as da, type UpdateListingPathParams as db, type UpdateListingStatePathParams as dc, type MagicLinkExchangePathParams as dd, type MagicLinkSendPathParams as de, type AuthzCodeRedirectPathParams as df, type AuthzCodeRedirectQueryParams as dg, type AuthzCodeCallbackPathParams as dh, type AuthzCodeCallbackQueryParams as di, type AuthzCodeExchangePathParams as dj, type GetDeviceProviderPathParams as dk, type ExchangeDeviceTokenPathParams as dl, type GetMagicLinkPathParams as dm, type CreateMagicLinkRedirectUriPathParams as dn, type DeleteMagicLinkRedirectUriPathParams as dp, type CreateMagicLinkSecretPathParams as dq, type DeleteMagicLinkSecretPathParams as dr, type GetMappersQueryParams as ds, type DeleteMapperPathParams as dt, type ListNotificationsQueryParams as du, type EmailApplicantPathParams as dv, type GetOauthClientPathParams as dw, type CreateOauthClientRedirectUriPathParams as dx, type DeleteOauthClientRedirectUriPathParams as dy, type CreateOauthClientSecretPathParams as dz, type TypedUuidForUserId as e, type ApplicationId as f, type TypedUuidForApplicationId as g, type TypedUuidForDocumentId as h, type TypedUuidForEmployeeId as i, type TypedUuidForOnboardingId as j, type DocumentParent as k, type DepartmentId as l, type TypedUuidForDepartmentId as m, type TypedUuidForRoleId as n, type TypedUuidForListingId as o, type TypedUuidForPoolId as p, type ReviewerId as q, type TypedUuidForReviewerId as r, type ReviewId as s, type TypedUuidForReviewId as t, type TypedUuidForInterviewerId as u, type InterviewId as v, type TypedUuidForInterviewId as w, type TypedUuidForBackgroundCheckId as x, type OperationId as y, type TypedUuidForOperationId as z };
package/dist/Api.cjs CHANGED
@@ -507,6 +507,15 @@ var Api = class extends HttpClient {
507
507
  ...params
508
508
  });
509
509
  },
510
+ viewApplicationStartDate: ({
511
+ path
512
+ }, params = {}) => {
513
+ return this.request({
514
+ path: `/application/${path.application}/start-date`,
515
+ method: "GET",
516
+ ...params
517
+ });
518
+ },
510
519
  /**
511
520
  * Submit an application that has all required documents attached
512
521
  */
package/dist/Api.d.cts CHANGED
@@ -1 +1 @@
1
- export { x as AccessGroupUpdateParams_for_TurnstilePermission, y as AccessGroup_for_TurnstilePermission, z as AccessTokenExchangeRequest, bV as AddApiUserToGroupPathParams, B as AddGroupBody, C as AddMagicLinkRedirectBody, E as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, G as ApiKeyCreateParams_for_TurnstilePermission, H as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, J as ApiUserContactEmail, K as ApiUserEmailUpdateParams, N as ApiUserInfo_for_TurnstilePermission, O as ApiUserLinkRequestPayload, Q as ApiUserLinkRequestResponse, L as ApiUserProvider, R as ApiUserProviderLinkPayload, U as ApiUserUpdateParams_for_TurnstilePermission, M as ApiUser_for_TurnstilePermission, V as Applicant, Y as ApplicantContact, X as ApplicantContactField, Z as ApplicantInfo, a1 as Application, a5 as ApplicationBundle, a7 as ApplicationInterviewCode, a0 as ApplicationState, a9 as ApplicationStateRecord, ah as ApplicationSummariesResponse, ai as ApplicationSummaryResponse, c5 as ApplyReviewActionPathParams, aj as AssignPool, d1 as AssignPoolPathParams, ak as AttachDocument, c9 as AttachDocumentPathParams, cI as AuthzCodeCallbackPathParams, cJ as AuthzCodeCallbackQueryParams, cK as AuthzCodeExchangePathParams, cG as AuthzCodeRedirectPathParams, cH as AuthzCodeRedirectQueryParams, ao as BatchParameter_for_TransitionBody, aq as BatchParameter_for_ViewApplication, bZ as CreateApiUserTokenPathParams, ar as CreateApplication, c7 as CreateApplicationReviewAssignmentsPathParams, as as CreateDepartment, at as CreateDocument, ca as CreateDocumentUploadUrlPathParams, c0 as CreateLinkTokenPathParams, av as CreateListing, cO as CreateMagicLinkRedirectUriPathParams, cQ as CreateMagicLinkSecretPathParams, aw as CreateMapper, cX as CreateOauthClientRedirectUriPathParams, cZ as CreateOauthClientSecretPathParams, ax as CreatePool, ay as CreateReview, az as CreateReviewAssignments, aF as CreateReviewAssignmentsResponse, aG as CreateRole, aH as CreatedApplication, aE as CreatedAssignment, b$ as DeleteApiUserTokenPathParams, cu as DeleteDocumentPathParams, cy as DeleteGroupPathParams, cP as DeleteMagicLinkRedirectUriPathParams, cR as DeleteMagicLinkSecretPathParams, cT as DeleteMapperPathParams, cY as DeleteOauthClientRedirectUriPathParams, c_ as DeleteOauthClientSecretPathParams, d6 as DeleteReviewPathParams, aI as Department, a4 as Document, a2 as DocumentKind, D as DocumentParent, a3 as DocumentSource, aJ as DocumentUploadUrlResponse, aK as EmailApplicantBody, cV as EmailApplicantPathParams, al as EmailConfig, aM as Employee, aL as EmployeeState, d9 as ErrorBody, da as ErrorResult, ag as Evaluator, cM as ExchangeDeviceTokenPathParams, af as ExpandedApplicationSummary, bS as GetApiUserPathParams, b_ as GetApiUserTokenPathParams, cb as GetApplicationInterviewCodePathParams, cL as GetDeviceProviderPathParams, cN as GetMagicLinkPathParams, cS as GetMappersQueryParams, cW as GetOauthClientPathParams, co as GetOperationPathParams, aN as GetUserResponse_for_TurnstilePermission, aO as InitialApiKeyResponse_for_TurnstilePermission, aQ as InitialMagicLinkSecretResponse, aS as InitialOAuthClientSecretResponse, aV as Interview, aU as InterviewAttendee, aW as Interviewer, _ as InterviewingState, aX as Jwk, aY as Jwks, bX as LinkProviderPathParams, bY as ListApiUserTokensPathParams, c1 as ListApplicantsQueryParams, c6 as ListApplicationReviewAssignmentsPathParams, cl as ListApplicationSummariesQueryParams, cr as ListDocumentsQueryParams, cA as ListInterviewersQueryParams, cz as ListInterviewsQueryParams, cU as ListNotificationsQueryParams, cp as ListOperationTasksQueryParams, cn as ListOperationsQueryParams, d7 as ListReviewersQueryParams, d3 as ListReviewsQueryParams, aZ as Listing, a$ as ListingPool, aa as ListingPoolAssociation, b3 as MagicLink, cE as MagicLinkExchangePathParams, b5 as MagicLinkExchangeRequest, b6 as MagicLinkExchangeResponse, b7 as MagicLinkMedium, b1 as MagicLinkRedirectUri, b2 as MagicLinkSecret, cF as MagicLinkSendPathParams, b8 as MagicLinkSendRequest, b9 as MagicLinkSendResponse, ba as Mapper, bc as NewHireBody, bd as NotificationMedium, be as NotificationStatus, bi as Notification_for_RenderedEmail, cc as NotifyApplicationReviewAssignmentsPathParams, bj as OAuthAuthzCodeExchangeBody, bk as OAuthAuthzCodeExchangeResponse, bo as OAuthClient, bm as OAuthClientRedirectUri, bn as OAuthClientSecret, bq as OAuthProviderInfo, bp as OAuthProviderName, $ as OfferState, br as OfferTransitionBody, bs as OpenIdConfiguration, bt as OperationState, bu as OperationTaskState, bw as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bx as Operation_for_TurnstilePermission_and_String, bz as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bB as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, bC as OptionalTransitionBody, P as Permissions_for_TurnstilePermission, bD as Pool, ac as PoolAction, bb as Provider, bh as RecipientId, bE as RegisterApplicant, bW as RemoveApiUserFromGroupPathParams, bg as RenderedEmail, bF as Review, aD as ReviewAssignment, aA as ReviewAssignmentCreationError, aC as ReviewAssignmentState, bI as ReviewInfo, ad as ReviewScore, bG as Reviewer, bH as ReviewerInfo, ae as Reviews, bJ as Role, au as RoleListingStatus, bR as ScalarApplicationState, S as SecretString, bU as SetApiUserContactEmailPathParams, cd as SimulateReviewActionPathParams, ce as SubmitApplicationPathParams, bK as TransitionApplicationToDeclinedBatch, by as TransitionApplicationToDeclinedBatchEndpoint, cf as TransitionApplicationToDeclinedPathParams, bL as TransitionApplicationToDeferredBatch, bA as TransitionApplicationToDeferredBatchEndpoint, cg as TransitionApplicationToDeferredPathParams, ch as TransitionApplicationToInterviewingPathParams, ci as TransitionApplicationToNextStepsPathParams, cj as TransitionApplicationToOfferPathParams, ck as TransitionApplicationToWithdrawnPathParams, an as TransitionBody, am as TransitionMessage, ab as TriageReason, w as TurnstilePermission, s as TypedUuidForAccessGroupId, r as TypedUuidForApiKeyId, W as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a6 as TypedUuidForApplicationInterviewCodeId, a8 as TypedUuidForApplicationStateRecordId, p as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aT as TypedUuidForInterviewAttendeeId, o as TypedUuidForInterviewId, n as TypedUuidForInterviewerId, j as TypedUuidForListingId, a_ as TypedUuidForListingPoolId, b4 as TypedUuidForMagicLinkAttemptId, v as TypedUuidForMagicLinkId, b0 as TypedUuidForMagicLinkRedirectUriId, aP as TypedUuidForMagicLinkSecretId, t as TypedUuidForMapperId, bf as TypedUuidForNotificationId, u as TypedUuidForOAuthClientId, bl as TypedUuidForOAuthRedirectUriId, aR as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, q as TypedUuidForOperationId, bv as TypedUuidForOperationTaskId, k as TypedUuidForPoolId, aB as TypedUuidForReviewAssignmentId, m as TypedUuidForReviewId, l as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, I as TypedUuidForUserProviderId, d2 as UnassignPoolPathParams, bT as UpdateApiUserPathParams, bM as UpdateApplicantContact, c3 as UpdateApplicantContactPathParams, bN as UpdateDocument, ct as UpdateDocumentPathParams, bO as UpdateDocumentStatus, cw as UpdateDocumentStatusPathParams, cx as UpdateGroupPathParams, bP as UpdateListing, cC as UpdateListingPathParams, cD as UpdateListingStatePathParams, d0 as UpdatePoolPathParams, bQ as UpdateReview, d5 as UpdateReviewPathParams, c2 as ViewApplicantPathParams, ap as ViewApplication, c8 as ViewApplicationBundlePathParams, c4 as ViewApplicationPathParams, cm as ViewApplicationSummaryPathParams, cq as ViewDepartmentPathParams, cv as ViewDocumentDataPathParams, cs as ViewDocumentPathParams, cB as ViewListingPathParams, c$ as ViewPoolPathParams, d4 as ViewReviewPathParams, d8 as ViewRolePathParams, a as default } from './Api-IM66ePFV.cjs';
1
+ export { c as AccessGroupId, X as AccessGroupUpdateParams_for_TurnstilePermission, Y as AccessGroup_for_TurnstilePermission, Z as AccessTokenExchangeRequest, ct as AddApiUserToGroupPathParams, _ as AddGroupBody, $ as AddMagicLinkRedirectBody, a0 as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, a1 as ApiKeyCreateParams_for_TurnstilePermission, C as ApiKeyId, a2 as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, a5 as ApiUserContactEmail, a6 as ApiUserEmailUpdateParams, a9 as ApiUserInfo_for_TurnstilePermission, aa as ApiUserLinkRequestPayload, ac as ApiUserLinkRequestResponse, a7 as ApiUserProvider, ad as ApiUserProviderLinkPayload, ae as ApiUserUpdateParams_for_TurnstilePermission, a8 as ApiUser_for_TurnstilePermission, af as Applicant, aj as ApplicantContact, ai as ApplicantContactField, ag as ApplicantContactId, d as ApplicantId, ak as ApplicantInfo, ao as Application, as as ApplicationBundle, f as ApplicationId, av as ApplicationInterviewCode, at as ApplicationInterviewCodeId, aw as ApplicationStartDate, an as ApplicationState, az as ApplicationStateRecord, ax as ApplicationStateRecordId, aH as ApplicationSummariesResponse, aI as ApplicationSummaryResponse, cF as ApplyReviewActionPathParams, aJ as AssignPool, dD as AssignPoolPathParams, aK as AttachDocument, cJ as AttachDocumentPathParams, dh as AuthzCodeCallbackPathParams, di as AuthzCodeCallbackQueryParams, dj as AuthzCodeExchangePathParams, df as AuthzCodeRedirectPathParams, dg as AuthzCodeRedirectQueryParams, B as BackgroundCheckId, aO as BatchParameter_for_TransitionBody, aQ as BatchParameter_for_ViewApplication, cx as CreateApiUserTokenPathParams, aR as CreateApplication, cH as CreateApplicationReviewAssignmentsPathParams, aS as CreateDepartment, aT as CreateDocument, cK as CreateDocumentUploadUrlPathParams, cA as CreateLinkTokenPathParams, aV as CreateListing, dn as CreateMagicLinkRedirectUriPathParams, dq as CreateMagicLinkSecretPathParams, aW as CreateMapper, dx as CreateOauthClientRedirectUriPathParams, dz as CreateOauthClientSecretPathParams, aX as CreatePool, aY as CreateReview, aZ as CreateReviewAssignments, b4 as CreateReviewAssignmentsResponse, b5 as CreateRole, b6 as CreatedApplication, b3 as CreatedAssignment, cz as DeleteApiUserTokenPathParams, d3 as DeleteDocumentPathParams, d7 as DeleteGroupPathParams, dp as DeleteMagicLinkRedirectUriPathParams, dr as DeleteMagicLinkSecretPathParams, dt as DeleteMapperPathParams, dy as DeleteOauthClientRedirectUriPathParams, dA as DeleteOauthClientSecretPathParams, dI as DeleteReviewPathParams, b7 as Department, l as DepartmentId, ar as Document, D as DocumentId, ap as DocumentKind, k as DocumentParent, aq as DocumentSource, b8 as DocumentUploadUrlResponse, b9 as EmailApplicantBody, dv as EmailApplicantPathParams, aL as EmailConfig, bb as Employee, E as EmployeeId, ba as EmployeeState, dL as ErrorBody, dM as ErrorResult, aG as Evaluator, dl as ExchangeDeviceTokenPathParams, aF as ExpandedApplicationSummary, cq as GetApiUserPathParams, cy as GetApiUserTokenPathParams, cL as GetApplicationInterviewCodePathParams, dk as GetDeviceProviderPathParams, dm as GetMagicLinkPathParams, ds as GetMappersQueryParams, dw as GetOauthClientPathParams, cZ as GetOperationPathParams, bc as GetUserResponse_for_TurnstilePermission, bd as InitialApiKeyResponse_for_TurnstilePermission, bg as InitialMagicLinkSecretResponse, bj as InitialOAuthClientSecretResponse, bn as Interview, bm as InterviewAttendee, bk as InterviewAttendeeId, v as InterviewId, bo as Interviewer, I as InterviewerId, al as InterviewingState, bp as Jwk, bq as Jwks, cv as LinkProviderPathParams, cw as ListApiUserTokensPathParams, cB as ListApplicantsQueryParams, cG as ListApplicationReviewAssignmentsPathParams, cW as ListApplicationSummariesQueryParams, d0 as ListDocumentsQueryParams, d9 as ListInterviewersQueryParams, d8 as ListInterviewsQueryParams, du as ListNotificationsQueryParams, c_ as ListOperationTasksQueryParams, cY as ListOperationsQueryParams, dJ as ListReviewersQueryParams, dF as ListReviewsQueryParams, br as Listing, L as ListingId, bu as ListingPool, aA as ListingPoolAssociation, bs as ListingPoolId, bz as MagicLink, bA as MagicLinkAttemptId, dd as MagicLinkExchangePathParams, bC as MagicLinkExchangeRequest, bD as MagicLinkExchangeResponse, Q as MagicLinkId, bE as MagicLinkMedium, bx as MagicLinkRedirectUri, bv as MagicLinkRedirectUriId, by as MagicLinkSecret, be as MagicLinkSecretId, de as MagicLinkSendPathParams, bF as MagicLinkSendRequest, bG as MagicLinkSendResponse, bH as Mapper, M as MapperId, bJ as NewHireBody, bK as NotificationId, bL as NotificationMedium, bM as NotificationStatus, bQ as Notification_for_RenderedEmail, cM as NotifyApplicationReviewAssignmentsPathParams, bR as OAuthAuthzCodeExchangeBody, bS as OAuthAuthzCodeExchangeResponse, bX as OAuthClient, K as OAuthClientId, bV as OAuthClientRedirectUri, bW as OAuthClientSecret, bZ as OAuthProviderInfo, bY as OAuthProviderName, bT as OAuthRedirectUriId, bh as OAuthSecretId, am as OfferState, b_ as OfferTransitionBody, O as OnboardingId, b$ as OpenIdConfiguration, y as OperationId, c0 as OperationState, c1 as OperationTaskId, c2 as OperationTaskState, c4 as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, c5 as Operation_for_TurnstilePermission_and_String, c7 as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, c9 as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, ca as OptionalTransitionBody, W as Permissions_for_TurnstilePermission, cb as Pool, aC as PoolAction, P as PoolId, bI as Provider, bP as RecipientId, cc as RegisterApplicant, cu as RemoveApiUserFromGroupPathParams, bO as RenderedEmail, cd as Review, b2 as ReviewAssignment, a_ as ReviewAssignmentCreationError, a$ as ReviewAssignmentId, b1 as ReviewAssignmentState, s as ReviewId, cg as ReviewInfo, aD as ReviewScore, ce as Reviewer, q as ReviewerId, cf as ReviewerInfo, aE as Reviews, ch as Role, R as RoleId, aU as RoleListingStatus, cp as ScalarApplicationState, ab as SecretString, cs as SetApiUserContactEmailPathParams, cN as SimulateReviewActionPathParams, cP as SubmitApplicationPathParams, ci as TransitionApplicationToDeclinedBatch, c6 as TransitionApplicationToDeclinedBatchEndpoint, cQ as TransitionApplicationToDeclinedPathParams, cj as TransitionApplicationToDeferredBatch, c8 as TransitionApplicationToDeferredBatchEndpoint, cR as TransitionApplicationToDeferredPathParams, cS as TransitionApplicationToInterviewingPathParams, cT as TransitionApplicationToNextStepsPathParams, cU as TransitionApplicationToOfferPathParams, cV as TransitionApplicationToWithdrawnPathParams, aN as TransitionBody, aM as TransitionMessage, aB as TriageReason, V as TurnstilePermission, H as TypedUuidForAccessGroupId, G as TypedUuidForApiKeyId, ah as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, g as TypedUuidForApplicationId, au as TypedUuidForApplicationInterviewCodeId, ay as TypedUuidForApplicationStateRecordId, x as TypedUuidForBackgroundCheckId, m as TypedUuidForDepartmentId, h as TypedUuidForDocumentId, i as TypedUuidForEmployeeId, bl as TypedUuidForInterviewAttendeeId, w as TypedUuidForInterviewId, u as TypedUuidForInterviewerId, o as TypedUuidForListingId, bt as TypedUuidForListingPoolId, bB as TypedUuidForMagicLinkAttemptId, S as TypedUuidForMagicLinkId, bw as TypedUuidForMagicLinkRedirectUriId, bf as TypedUuidForMagicLinkSecretId, J as TypedUuidForMapperId, bN as TypedUuidForNotificationId, N as TypedUuidForOAuthClientId, bU as TypedUuidForOAuthRedirectUriId, bi as TypedUuidForOAuthSecretId, j as TypedUuidForOnboardingId, z as TypedUuidForOperationId, c3 as TypedUuidForOperationTaskId, p as TypedUuidForPoolId, b0 as TypedUuidForReviewAssignmentId, t as TypedUuidForReviewId, r as TypedUuidForReviewerId, n as TypedUuidForRoleId, e as TypedUuidForUserId, a4 as TypedUuidForUserProviderId, dE as UnassignPoolPathParams, cr as UpdateApiUserPathParams, ck as UpdateApplicantContact, cD as UpdateApplicantContactPathParams, cl as UpdateDocument, d2 as UpdateDocumentPathParams, cm as UpdateDocumentStatus, d5 as UpdateDocumentStatusPathParams, d6 as UpdateGroupPathParams, cn as UpdateListing, db as UpdateListingPathParams, dc as UpdateListingStatePathParams, dC as UpdatePoolPathParams, co as UpdateReview, dH as UpdateReviewPathParams, U as UserId, a3 as UserProviderId, cC as ViewApplicantPathParams, aP as ViewApplication, cI as ViewApplicationBundlePathParams, cE as ViewApplicationPathParams, cO as ViewApplicationStartDatePathParams, cX as ViewApplicationSummaryPathParams, c$ as ViewDepartmentPathParams, d4 as ViewDocumentDataPathParams, d1 as ViewDocumentPathParams, da as ViewListingPathParams, dB as ViewPoolPathParams, dG as ViewReviewPathParams, dK as ViewRolePathParams, a as default } from './Api-BwbweX6C.cjs';
package/dist/Api.d.ts CHANGED
@@ -1 +1 @@
1
- export { x as AccessGroupUpdateParams_for_TurnstilePermission, y as AccessGroup_for_TurnstilePermission, z as AccessTokenExchangeRequest, bV as AddApiUserToGroupPathParams, B as AddGroupBody, C as AddMagicLinkRedirectBody, E as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, G as ApiKeyCreateParams_for_TurnstilePermission, H as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, J as ApiUserContactEmail, K as ApiUserEmailUpdateParams, N as ApiUserInfo_for_TurnstilePermission, O as ApiUserLinkRequestPayload, Q as ApiUserLinkRequestResponse, L as ApiUserProvider, R as ApiUserProviderLinkPayload, U as ApiUserUpdateParams_for_TurnstilePermission, M as ApiUser_for_TurnstilePermission, V as Applicant, Y as ApplicantContact, X as ApplicantContactField, Z as ApplicantInfo, a1 as Application, a5 as ApplicationBundle, a7 as ApplicationInterviewCode, a0 as ApplicationState, a9 as ApplicationStateRecord, ah as ApplicationSummariesResponse, ai as ApplicationSummaryResponse, c5 as ApplyReviewActionPathParams, aj as AssignPool, d1 as AssignPoolPathParams, ak as AttachDocument, c9 as AttachDocumentPathParams, cI as AuthzCodeCallbackPathParams, cJ as AuthzCodeCallbackQueryParams, cK as AuthzCodeExchangePathParams, cG as AuthzCodeRedirectPathParams, cH as AuthzCodeRedirectQueryParams, ao as BatchParameter_for_TransitionBody, aq as BatchParameter_for_ViewApplication, bZ as CreateApiUserTokenPathParams, ar as CreateApplication, c7 as CreateApplicationReviewAssignmentsPathParams, as as CreateDepartment, at as CreateDocument, ca as CreateDocumentUploadUrlPathParams, c0 as CreateLinkTokenPathParams, av as CreateListing, cO as CreateMagicLinkRedirectUriPathParams, cQ as CreateMagicLinkSecretPathParams, aw as CreateMapper, cX as CreateOauthClientRedirectUriPathParams, cZ as CreateOauthClientSecretPathParams, ax as CreatePool, ay as CreateReview, az as CreateReviewAssignments, aF as CreateReviewAssignmentsResponse, aG as CreateRole, aH as CreatedApplication, aE as CreatedAssignment, b$ as DeleteApiUserTokenPathParams, cu as DeleteDocumentPathParams, cy as DeleteGroupPathParams, cP as DeleteMagicLinkRedirectUriPathParams, cR as DeleteMagicLinkSecretPathParams, cT as DeleteMapperPathParams, cY as DeleteOauthClientRedirectUriPathParams, c_ as DeleteOauthClientSecretPathParams, d6 as DeleteReviewPathParams, aI as Department, a4 as Document, a2 as DocumentKind, D as DocumentParent, a3 as DocumentSource, aJ as DocumentUploadUrlResponse, aK as EmailApplicantBody, cV as EmailApplicantPathParams, al as EmailConfig, aM as Employee, aL as EmployeeState, d9 as ErrorBody, da as ErrorResult, ag as Evaluator, cM as ExchangeDeviceTokenPathParams, af as ExpandedApplicationSummary, bS as GetApiUserPathParams, b_ as GetApiUserTokenPathParams, cb as GetApplicationInterviewCodePathParams, cL as GetDeviceProviderPathParams, cN as GetMagicLinkPathParams, cS as GetMappersQueryParams, cW as GetOauthClientPathParams, co as GetOperationPathParams, aN as GetUserResponse_for_TurnstilePermission, aO as InitialApiKeyResponse_for_TurnstilePermission, aQ as InitialMagicLinkSecretResponse, aS as InitialOAuthClientSecretResponse, aV as Interview, aU as InterviewAttendee, aW as Interviewer, _ as InterviewingState, aX as Jwk, aY as Jwks, bX as LinkProviderPathParams, bY as ListApiUserTokensPathParams, c1 as ListApplicantsQueryParams, c6 as ListApplicationReviewAssignmentsPathParams, cl as ListApplicationSummariesQueryParams, cr as ListDocumentsQueryParams, cA as ListInterviewersQueryParams, cz as ListInterviewsQueryParams, cU as ListNotificationsQueryParams, cp as ListOperationTasksQueryParams, cn as ListOperationsQueryParams, d7 as ListReviewersQueryParams, d3 as ListReviewsQueryParams, aZ as Listing, a$ as ListingPool, aa as ListingPoolAssociation, b3 as MagicLink, cE as MagicLinkExchangePathParams, b5 as MagicLinkExchangeRequest, b6 as MagicLinkExchangeResponse, b7 as MagicLinkMedium, b1 as MagicLinkRedirectUri, b2 as MagicLinkSecret, cF as MagicLinkSendPathParams, b8 as MagicLinkSendRequest, b9 as MagicLinkSendResponse, ba as Mapper, bc as NewHireBody, bd as NotificationMedium, be as NotificationStatus, bi as Notification_for_RenderedEmail, cc as NotifyApplicationReviewAssignmentsPathParams, bj as OAuthAuthzCodeExchangeBody, bk as OAuthAuthzCodeExchangeResponse, bo as OAuthClient, bm as OAuthClientRedirectUri, bn as OAuthClientSecret, bq as OAuthProviderInfo, bp as OAuthProviderName, $ as OfferState, br as OfferTransitionBody, bs as OpenIdConfiguration, bt as OperationState, bu as OperationTaskState, bw as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, bx as Operation_for_TurnstilePermission_and_String, bz as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, bB as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, bC as OptionalTransitionBody, P as Permissions_for_TurnstilePermission, bD as Pool, ac as PoolAction, bb as Provider, bh as RecipientId, bE as RegisterApplicant, bW as RemoveApiUserFromGroupPathParams, bg as RenderedEmail, bF as Review, aD as ReviewAssignment, aA as ReviewAssignmentCreationError, aC as ReviewAssignmentState, bI as ReviewInfo, ad as ReviewScore, bG as Reviewer, bH as ReviewerInfo, ae as Reviews, bJ as Role, au as RoleListingStatus, bR as ScalarApplicationState, S as SecretString, bU as SetApiUserContactEmailPathParams, cd as SimulateReviewActionPathParams, ce as SubmitApplicationPathParams, bK as TransitionApplicationToDeclinedBatch, by as TransitionApplicationToDeclinedBatchEndpoint, cf as TransitionApplicationToDeclinedPathParams, bL as TransitionApplicationToDeferredBatch, bA as TransitionApplicationToDeferredBatchEndpoint, cg as TransitionApplicationToDeferredPathParams, ch as TransitionApplicationToInterviewingPathParams, ci as TransitionApplicationToNextStepsPathParams, cj as TransitionApplicationToOfferPathParams, ck as TransitionApplicationToWithdrawnPathParams, an as TransitionBody, am as TransitionMessage, ab as TriageReason, w as TurnstilePermission, s as TypedUuidForAccessGroupId, r as TypedUuidForApiKeyId, W as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, d as TypedUuidForApplicationId, a6 as TypedUuidForApplicationInterviewCodeId, a8 as TypedUuidForApplicationStateRecordId, p as TypedUuidForBackgroundCheckId, h as TypedUuidForDepartmentId, e as TypedUuidForDocumentId, f as TypedUuidForEmployeeId, aT as TypedUuidForInterviewAttendeeId, o as TypedUuidForInterviewId, n as TypedUuidForInterviewerId, j as TypedUuidForListingId, a_ as TypedUuidForListingPoolId, b4 as TypedUuidForMagicLinkAttemptId, v as TypedUuidForMagicLinkId, b0 as TypedUuidForMagicLinkRedirectUriId, aP as TypedUuidForMagicLinkSecretId, t as TypedUuidForMapperId, bf as TypedUuidForNotificationId, u as TypedUuidForOAuthClientId, bl as TypedUuidForOAuthRedirectUriId, aR as TypedUuidForOAuthSecretId, g as TypedUuidForOnboardingId, q as TypedUuidForOperationId, bv as TypedUuidForOperationTaskId, k as TypedUuidForPoolId, aB as TypedUuidForReviewAssignmentId, m as TypedUuidForReviewId, l as TypedUuidForReviewerId, i as TypedUuidForRoleId, c as TypedUuidForUserId, I as TypedUuidForUserProviderId, d2 as UnassignPoolPathParams, bT as UpdateApiUserPathParams, bM as UpdateApplicantContact, c3 as UpdateApplicantContactPathParams, bN as UpdateDocument, ct as UpdateDocumentPathParams, bO as UpdateDocumentStatus, cw as UpdateDocumentStatusPathParams, cx as UpdateGroupPathParams, bP as UpdateListing, cC as UpdateListingPathParams, cD as UpdateListingStatePathParams, d0 as UpdatePoolPathParams, bQ as UpdateReview, d5 as UpdateReviewPathParams, c2 as ViewApplicantPathParams, ap as ViewApplication, c8 as ViewApplicationBundlePathParams, c4 as ViewApplicationPathParams, cm as ViewApplicationSummaryPathParams, cq as ViewDepartmentPathParams, cv as ViewDocumentDataPathParams, cs as ViewDocumentPathParams, cB as ViewListingPathParams, c$ as ViewPoolPathParams, d4 as ViewReviewPathParams, d8 as ViewRolePathParams, a as default } from './Api-IM66ePFV.js';
1
+ export { c as AccessGroupId, X as AccessGroupUpdateParams_for_TurnstilePermission, Y as AccessGroup_for_TurnstilePermission, Z as AccessTokenExchangeRequest, ct as AddApiUserToGroupPathParams, _ as AddGroupBody, $ as AddMagicLinkRedirectBody, a0 as AddOAuthClientRedirectBody, a as Api, A as ApiConfig, a1 as ApiKeyCreateParams_for_TurnstilePermission, C as ApiKeyId, a2 as ApiKeyResponse_for_TurnstilePermission, b as ApiResult, a5 as ApiUserContactEmail, a6 as ApiUserEmailUpdateParams, a9 as ApiUserInfo_for_TurnstilePermission, aa as ApiUserLinkRequestPayload, ac as ApiUserLinkRequestResponse, a7 as ApiUserProvider, ad as ApiUserProviderLinkPayload, ae as ApiUserUpdateParams_for_TurnstilePermission, a8 as ApiUser_for_TurnstilePermission, af as Applicant, aj as ApplicantContact, ai as ApplicantContactField, ag as ApplicantContactId, d as ApplicantId, ak as ApplicantInfo, ao as Application, as as ApplicationBundle, f as ApplicationId, av as ApplicationInterviewCode, at as ApplicationInterviewCodeId, aw as ApplicationStartDate, an as ApplicationState, az as ApplicationStateRecord, ax as ApplicationStateRecordId, aH as ApplicationSummariesResponse, aI as ApplicationSummaryResponse, cF as ApplyReviewActionPathParams, aJ as AssignPool, dD as AssignPoolPathParams, aK as AttachDocument, cJ as AttachDocumentPathParams, dh as AuthzCodeCallbackPathParams, di as AuthzCodeCallbackQueryParams, dj as AuthzCodeExchangePathParams, df as AuthzCodeRedirectPathParams, dg as AuthzCodeRedirectQueryParams, B as BackgroundCheckId, aO as BatchParameter_for_TransitionBody, aQ as BatchParameter_for_ViewApplication, cx as CreateApiUserTokenPathParams, aR as CreateApplication, cH as CreateApplicationReviewAssignmentsPathParams, aS as CreateDepartment, aT as CreateDocument, cK as CreateDocumentUploadUrlPathParams, cA as CreateLinkTokenPathParams, aV as CreateListing, dn as CreateMagicLinkRedirectUriPathParams, dq as CreateMagicLinkSecretPathParams, aW as CreateMapper, dx as CreateOauthClientRedirectUriPathParams, dz as CreateOauthClientSecretPathParams, aX as CreatePool, aY as CreateReview, aZ as CreateReviewAssignments, b4 as CreateReviewAssignmentsResponse, b5 as CreateRole, b6 as CreatedApplication, b3 as CreatedAssignment, cz as DeleteApiUserTokenPathParams, d3 as DeleteDocumentPathParams, d7 as DeleteGroupPathParams, dp as DeleteMagicLinkRedirectUriPathParams, dr as DeleteMagicLinkSecretPathParams, dt as DeleteMapperPathParams, dy as DeleteOauthClientRedirectUriPathParams, dA as DeleteOauthClientSecretPathParams, dI as DeleteReviewPathParams, b7 as Department, l as DepartmentId, ar as Document, D as DocumentId, ap as DocumentKind, k as DocumentParent, aq as DocumentSource, b8 as DocumentUploadUrlResponse, b9 as EmailApplicantBody, dv as EmailApplicantPathParams, aL as EmailConfig, bb as Employee, E as EmployeeId, ba as EmployeeState, dL as ErrorBody, dM as ErrorResult, aG as Evaluator, dl as ExchangeDeviceTokenPathParams, aF as ExpandedApplicationSummary, cq as GetApiUserPathParams, cy as GetApiUserTokenPathParams, cL as GetApplicationInterviewCodePathParams, dk as GetDeviceProviderPathParams, dm as GetMagicLinkPathParams, ds as GetMappersQueryParams, dw as GetOauthClientPathParams, cZ as GetOperationPathParams, bc as GetUserResponse_for_TurnstilePermission, bd as InitialApiKeyResponse_for_TurnstilePermission, bg as InitialMagicLinkSecretResponse, bj as InitialOAuthClientSecretResponse, bn as Interview, bm as InterviewAttendee, bk as InterviewAttendeeId, v as InterviewId, bo as Interviewer, I as InterviewerId, al as InterviewingState, bp as Jwk, bq as Jwks, cv as LinkProviderPathParams, cw as ListApiUserTokensPathParams, cB as ListApplicantsQueryParams, cG as ListApplicationReviewAssignmentsPathParams, cW as ListApplicationSummariesQueryParams, d0 as ListDocumentsQueryParams, d9 as ListInterviewersQueryParams, d8 as ListInterviewsQueryParams, du as ListNotificationsQueryParams, c_ as ListOperationTasksQueryParams, cY as ListOperationsQueryParams, dJ as ListReviewersQueryParams, dF as ListReviewsQueryParams, br as Listing, L as ListingId, bu as ListingPool, aA as ListingPoolAssociation, bs as ListingPoolId, bz as MagicLink, bA as MagicLinkAttemptId, dd as MagicLinkExchangePathParams, bC as MagicLinkExchangeRequest, bD as MagicLinkExchangeResponse, Q as MagicLinkId, bE as MagicLinkMedium, bx as MagicLinkRedirectUri, bv as MagicLinkRedirectUriId, by as MagicLinkSecret, be as MagicLinkSecretId, de as MagicLinkSendPathParams, bF as MagicLinkSendRequest, bG as MagicLinkSendResponse, bH as Mapper, M as MapperId, bJ as NewHireBody, bK as NotificationId, bL as NotificationMedium, bM as NotificationStatus, bQ as Notification_for_RenderedEmail, cM as NotifyApplicationReviewAssignmentsPathParams, bR as OAuthAuthzCodeExchangeBody, bS as OAuthAuthzCodeExchangeResponse, bX as OAuthClient, K as OAuthClientId, bV as OAuthClientRedirectUri, bW as OAuthClientSecret, bZ as OAuthProviderInfo, bY as OAuthProviderName, bT as OAuthRedirectUriId, bh as OAuthSecretId, am as OfferState, b_ as OfferTransitionBody, O as OnboardingId, b$ as OpenIdConfiguration, y as OperationId, c0 as OperationState, c1 as OperationTaskId, c2 as OperationTaskState, c4 as OperationTask_for_AnyValue_and_AnyValue_and_AnyValue_and_AnyValue, c5 as Operation_for_TurnstilePermission_and_String, c7 as Operation_for_TurnstilePermission_and_TransitionApplicationToDeclinedBatchEndpoint, c9 as Operation_for_TurnstilePermission_and_TransitionApplicationToDeferredBatchEndpoint, ca as OptionalTransitionBody, W as Permissions_for_TurnstilePermission, cb as Pool, aC as PoolAction, P as PoolId, bI as Provider, bP as RecipientId, cc as RegisterApplicant, cu as RemoveApiUserFromGroupPathParams, bO as RenderedEmail, cd as Review, b2 as ReviewAssignment, a_ as ReviewAssignmentCreationError, a$ as ReviewAssignmentId, b1 as ReviewAssignmentState, s as ReviewId, cg as ReviewInfo, aD as ReviewScore, ce as Reviewer, q as ReviewerId, cf as ReviewerInfo, aE as Reviews, ch as Role, R as RoleId, aU as RoleListingStatus, cp as ScalarApplicationState, ab as SecretString, cs as SetApiUserContactEmailPathParams, cN as SimulateReviewActionPathParams, cP as SubmitApplicationPathParams, ci as TransitionApplicationToDeclinedBatch, c6 as TransitionApplicationToDeclinedBatchEndpoint, cQ as TransitionApplicationToDeclinedPathParams, cj as TransitionApplicationToDeferredBatch, c8 as TransitionApplicationToDeferredBatchEndpoint, cR as TransitionApplicationToDeferredPathParams, cS as TransitionApplicationToInterviewingPathParams, cT as TransitionApplicationToNextStepsPathParams, cU as TransitionApplicationToOfferPathParams, cV as TransitionApplicationToWithdrawnPathParams, aN as TransitionBody, aM as TransitionMessage, aB as TriageReason, V as TurnstilePermission, H as TypedUuidForAccessGroupId, G as TypedUuidForApiKeyId, ah as TypedUuidForApplicantContactId, T as TypedUuidForApplicantId, g as TypedUuidForApplicationId, au as TypedUuidForApplicationInterviewCodeId, ay as TypedUuidForApplicationStateRecordId, x as TypedUuidForBackgroundCheckId, m as TypedUuidForDepartmentId, h as TypedUuidForDocumentId, i as TypedUuidForEmployeeId, bl as TypedUuidForInterviewAttendeeId, w as TypedUuidForInterviewId, u as TypedUuidForInterviewerId, o as TypedUuidForListingId, bt as TypedUuidForListingPoolId, bB as TypedUuidForMagicLinkAttemptId, S as TypedUuidForMagicLinkId, bw as TypedUuidForMagicLinkRedirectUriId, bf as TypedUuidForMagicLinkSecretId, J as TypedUuidForMapperId, bN as TypedUuidForNotificationId, N as TypedUuidForOAuthClientId, bU as TypedUuidForOAuthRedirectUriId, bi as TypedUuidForOAuthSecretId, j as TypedUuidForOnboardingId, z as TypedUuidForOperationId, c3 as TypedUuidForOperationTaskId, p as TypedUuidForPoolId, b0 as TypedUuidForReviewAssignmentId, t as TypedUuidForReviewId, r as TypedUuidForReviewerId, n as TypedUuidForRoleId, e as TypedUuidForUserId, a4 as TypedUuidForUserProviderId, dE as UnassignPoolPathParams, cr as UpdateApiUserPathParams, ck as UpdateApplicantContact, cD as UpdateApplicantContactPathParams, cl as UpdateDocument, d2 as UpdateDocumentPathParams, cm as UpdateDocumentStatus, d5 as UpdateDocumentStatusPathParams, d6 as UpdateGroupPathParams, cn as UpdateListing, db as UpdateListingPathParams, dc as UpdateListingStatePathParams, dC as UpdatePoolPathParams, co as UpdateReview, dH as UpdateReviewPathParams, U as UserId, a3 as UserProviderId, cC as ViewApplicantPathParams, aP as ViewApplication, cI as ViewApplicationBundlePathParams, cE as ViewApplicationPathParams, cO as ViewApplicationStartDatePathParams, cX as ViewApplicationSummaryPathParams, c$ as ViewDepartmentPathParams, d4 as ViewDocumentDataPathParams, d1 as ViewDocumentPathParams, da as ViewListingPathParams, dB as ViewPoolPathParams, dG as ViewReviewPathParams, dK as ViewRolePathParams, a as default } from './Api-BwbweX6C.js';
package/dist/Api.js CHANGED
@@ -480,6 +480,15 @@ var Api = class extends HttpClient {
480
480
  ...params
481
481
  });
482
482
  },
483
+ viewApplicationStartDate: ({
484
+ path
485
+ }, params = {}) => {
486
+ return this.request({
487
+ path: `/application/${path.application}/start-date`,
488
+ method: "GET",
489
+ ...params
490
+ });
491
+ },
483
492
  /**
484
493
  * Submit an application that has all required documents attached
485
494
  */
package/dist/retry.cjs CHANGED
@@ -507,6 +507,15 @@ var Api = class extends HttpClient {
507
507
  ...params
508
508
  });
509
509
  },
510
+ viewApplicationStartDate: ({
511
+ path
512
+ }, params = {}) => {
513
+ return this.request({
514
+ path: `/application/${path.application}/start-date`,
515
+ method: "GET",
516
+ ...params
517
+ });
518
+ },
510
519
  /**
511
520
  * Submit an application that has all required documents attached
512
521
  */
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-IM66ePFV.cjs';
1
+ import { A as ApiConfig, a as Api, F as FullParams, b as ApiResult } from './Api-BwbweX6C.cjs';
2
2
 
3
3
  type RetryHandler = (err: any) => boolean;
4
4
  type RetryHandlerFactory = (url: RequestInfo | URL, init: RequestInit) => RetryHandler;