@turndown/library 0.1.66 → 0.1.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/index.cjs +69 -2
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.cts +182 -1
- package/dist/types/index.d.ts +182 -1
- package/dist/types/index.mjs +69 -2
- package/dist/types/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/types/index.d.cts
CHANGED
|
@@ -1772,18 +1772,90 @@ interface ICreateRoomChecklistItemInput {
|
|
|
1772
1772
|
isCustom?: boolean;
|
|
1773
1773
|
}
|
|
1774
1774
|
|
|
1775
|
+
interface IBillingCompanyRouteParams {
|
|
1776
|
+
companyId: string;
|
|
1777
|
+
}
|
|
1778
|
+
interface IGetBillingProductsRequest {
|
|
1779
|
+
}
|
|
1780
|
+
type IGetBillingProductsResponse = ISubscriptionProductSummary[];
|
|
1781
|
+
interface IGetCompanyBillingSummaryRequest extends IBillingCompanyRouteParams {
|
|
1782
|
+
}
|
|
1783
|
+
interface IGetCompanyBillingSummaryResponse extends ICompanyBillingSummary {
|
|
1784
|
+
}
|
|
1785
|
+
declare const CreateStripeCheckoutSessionRequestSchema: IRuntimeValidationSchema<{
|
|
1786
|
+
providerProductId: IValidationField<string, true>;
|
|
1787
|
+
successUrl: IValidationField<string, true>;
|
|
1788
|
+
cancelUrl: IValidationField<string, true>;
|
|
1789
|
+
}>;
|
|
1790
|
+
type ICreateStripeCheckoutSessionRequest = TInferValidationSchemaInput<typeof CreateStripeCheckoutSessionRequestSchema>;
|
|
1791
|
+
interface ICreateStripeCheckoutSessionResponse {
|
|
1792
|
+
checkoutUrl: string;
|
|
1793
|
+
}
|
|
1794
|
+
declare const SyncAppleSubscriptionRequestSchema: IRuntimeValidationSchema<{
|
|
1795
|
+
providerProductId: IValidationField<string, true>;
|
|
1796
|
+
transactionId: IValidationField<string, true>;
|
|
1797
|
+
originalTransactionId: IValidationField<string | null, false>;
|
|
1798
|
+
signedTransactionInfo: IValidationField<string, true>;
|
|
1799
|
+
}>;
|
|
1800
|
+
type ISyncAppleSubscriptionRequest = TInferValidationSchemaInput<typeof SyncAppleSubscriptionRequestSchema>;
|
|
1801
|
+
declare const SyncGoogleSubscriptionRequestSchema: IRuntimeValidationSchema<{
|
|
1802
|
+
providerProductId: IValidationField<string, true>;
|
|
1803
|
+
purchaseToken: IValidationField<string, true>;
|
|
1804
|
+
packageName: IValidationField<string, true>;
|
|
1805
|
+
providerPriceId: IValidationField<string | null, false>;
|
|
1806
|
+
}>;
|
|
1807
|
+
type ISyncGoogleSubscriptionRequest = TInferValidationSchemaInput<typeof SyncGoogleSubscriptionRequestSchema>;
|
|
1808
|
+
interface ISyncStoreSubscriptionResponse {
|
|
1809
|
+
subscription: ICompanyBillingSummary["subscription"];
|
|
1810
|
+
entitlement: IEntitlementSnapshot;
|
|
1811
|
+
}
|
|
1812
|
+
declare const BillingProviderWebhookRequestSchema: IRuntimeValidationSchema<{
|
|
1813
|
+
providerEventId: IValidationField<string, true>;
|
|
1814
|
+
eventType: IValidationField<string, true>;
|
|
1815
|
+
providerSubscriptionId: IValidationField<string | null, false>;
|
|
1816
|
+
providerTransactionId: IValidationField<string | null, false>;
|
|
1817
|
+
providerRefundId: IValidationField<string | null, false>;
|
|
1818
|
+
payload: IValidationField<Record<string, unknown>, false>;
|
|
1819
|
+
}>;
|
|
1820
|
+
type IBillingProviderWebhookRequest = TInferValidationSchemaInput<typeof BillingProviderWebhookRequestSchema> & {
|
|
1821
|
+
payload?: TJsonObject;
|
|
1822
|
+
};
|
|
1823
|
+
interface IBillingProviderWebhookResponse extends IMessageResponse {
|
|
1824
|
+
}
|
|
1825
|
+
interface IProviderProductLookupRequest {
|
|
1826
|
+
provider: TSubscriptionProvider;
|
|
1827
|
+
providerProductId: string;
|
|
1828
|
+
}
|
|
1829
|
+
interface IProviderProductLookupResponse extends IProviderProduct {
|
|
1830
|
+
}
|
|
1831
|
+
declare const BillingProviderValues: readonly ["STRIPE", "APPLE", "GOOGLE", "MANUAL"];
|
|
1832
|
+
declare const ProviderProductLookupRequestSchema: IRuntimeValidationSchema<{
|
|
1833
|
+
provider: IValidationField<"STRIPE" | "APPLE" | "GOOGLE" | "MANUAL", true>;
|
|
1834
|
+
providerProductId: IValidationField<string, true>;
|
|
1835
|
+
}>;
|
|
1836
|
+
|
|
1837
|
+
declare const SUBSCRIPTION_PLAN: {
|
|
1838
|
+
readonly Free: "FREE";
|
|
1839
|
+
readonly Starter: "STARTER";
|
|
1840
|
+
readonly Pro: "PRO";
|
|
1841
|
+
readonly Business: "BUSINESS";
|
|
1842
|
+
};
|
|
1843
|
+
type TSubscriptionPlan = TRecordValue<typeof SUBSCRIPTION_PLAN>;
|
|
1775
1844
|
declare const SUBSCRIPTION_STATUS: {
|
|
1776
1845
|
readonly ACTIVE: "ACTIVE";
|
|
1777
1846
|
readonly CANCELED: "CANCELED";
|
|
1778
1847
|
readonly EXPIRED: "EXPIRED";
|
|
1779
1848
|
readonly PAST_DUE: "PAST_DUE";
|
|
1780
1849
|
readonly TRIALING: "TRIALING";
|
|
1850
|
+
readonly GRACE_PERIOD: "GRACE_PERIOD";
|
|
1851
|
+
readonly REFUNDED: "REFUNDED";
|
|
1781
1852
|
};
|
|
1782
1853
|
type TSubscriptionStatus = TRecordValue<typeof SUBSCRIPTION_STATUS>;
|
|
1783
1854
|
declare const SUBSCRIPTION_PROVIDER: {
|
|
1784
1855
|
readonly STRIPE: "STRIPE";
|
|
1785
1856
|
readonly APPLE: "APPLE";
|
|
1786
1857
|
readonly GOOGLE: "GOOGLE";
|
|
1858
|
+
readonly MANUAL: "MANUAL";
|
|
1787
1859
|
};
|
|
1788
1860
|
type TSubscriptionProvider = TRecordValue<typeof SUBSCRIPTION_PROVIDER>;
|
|
1789
1861
|
declare const BILLING_PERIOD: {
|
|
@@ -1791,6 +1863,115 @@ declare const BILLING_PERIOD: {
|
|
|
1791
1863
|
readonly YEARLY: "YEARLY";
|
|
1792
1864
|
};
|
|
1793
1865
|
type TBillingPeriod = TRecordValue<typeof BILLING_PERIOD>;
|
|
1866
|
+
declare const REFUND_STATUS: {
|
|
1867
|
+
readonly REQUESTED: "REQUESTED";
|
|
1868
|
+
readonly APPROVED: "APPROVED";
|
|
1869
|
+
readonly DECLINED: "DECLINED";
|
|
1870
|
+
readonly PROCESSED: "PROCESSED";
|
|
1871
|
+
};
|
|
1872
|
+
type TRefundStatus = TRecordValue<typeof REFUND_STATUS>;
|
|
1873
|
+
declare const SUBSCRIPTION_FEATURE: {
|
|
1874
|
+
readonly CreateProperty: "CREATE_PROPERTY";
|
|
1875
|
+
readonly InviteTeamMember: "INVITE_TEAM_MEMBER";
|
|
1876
|
+
readonly CreateChecklistTemplate: "CREATE_CHECKLIST_TEMPLATE";
|
|
1877
|
+
readonly UploadImage: "UPLOAD_IMAGE";
|
|
1878
|
+
};
|
|
1879
|
+
type TSubscriptionFeature = TRecordValue<typeof SUBSCRIPTION_FEATURE>;
|
|
1880
|
+
interface ISubscriptionPlan extends IMetaData {
|
|
1881
|
+
id: string;
|
|
1882
|
+
code: TSubscriptionPlan;
|
|
1883
|
+
displayName: string;
|
|
1884
|
+
propertyLimit: number;
|
|
1885
|
+
teamMemberLimit: number;
|
|
1886
|
+
checklistTemplateLimit: number;
|
|
1887
|
+
imageStorageLimitMb: number;
|
|
1888
|
+
isActive: boolean;
|
|
1889
|
+
}
|
|
1890
|
+
interface IProviderProduct extends IMetaData {
|
|
1891
|
+
id: string;
|
|
1892
|
+
planId: string;
|
|
1893
|
+
provider: TSubscriptionProvider;
|
|
1894
|
+
providerProductId: string;
|
|
1895
|
+
providerPriceId: string | null;
|
|
1896
|
+
billingPeriod: TBillingPeriod;
|
|
1897
|
+
trialDays: number;
|
|
1898
|
+
isActive: boolean;
|
|
1899
|
+
}
|
|
1900
|
+
interface ISubscriptionProductSummary {
|
|
1901
|
+
plan: ISubscriptionPlan;
|
|
1902
|
+
products: IProviderProduct[];
|
|
1903
|
+
}
|
|
1904
|
+
interface IBillingAccount extends IMetaData {
|
|
1905
|
+
id: string;
|
|
1906
|
+
companyId: string;
|
|
1907
|
+
billingAdminUserId: string | null;
|
|
1908
|
+
}
|
|
1909
|
+
interface ICompanySubscription extends IMetaData {
|
|
1910
|
+
id: string;
|
|
1911
|
+
billingAccountId: string;
|
|
1912
|
+
planId: string;
|
|
1913
|
+
provider: TSubscriptionProvider;
|
|
1914
|
+
providerSubscriptionId: string | null;
|
|
1915
|
+
providerOriginalTransactionId: string | null;
|
|
1916
|
+
providerPurchaseToken: string | null;
|
|
1917
|
+
providerCustomerId: string | null;
|
|
1918
|
+
providerPriceId: string | null;
|
|
1919
|
+
status: TSubscriptionStatus;
|
|
1920
|
+
billingPeriod: TBillingPeriod;
|
|
1921
|
+
currentPeriodStart: TDateTimeString | null;
|
|
1922
|
+
currentPeriodEnd: TDateTimeString | null;
|
|
1923
|
+
trialStart: TDateTimeString | null;
|
|
1924
|
+
trialEnd: TDateTimeString | null;
|
|
1925
|
+
cancelAtPeriodEnd: boolean;
|
|
1926
|
+
canceledAt: TDateTimeString | null;
|
|
1927
|
+
refundedAt: TDateTimeString | null;
|
|
1928
|
+
latestEventAt: TDateTimeString | null;
|
|
1929
|
+
}
|
|
1930
|
+
interface ISubscriptionEvent extends IMetaData {
|
|
1931
|
+
id: string;
|
|
1932
|
+
subscriptionId: string | null;
|
|
1933
|
+
provider: TSubscriptionProvider;
|
|
1934
|
+
providerEventId: string;
|
|
1935
|
+
eventType: string;
|
|
1936
|
+
rawPayload: TJsonObject;
|
|
1937
|
+
processedAt: TDateTimeString;
|
|
1938
|
+
}
|
|
1939
|
+
interface IEntitlementSnapshot {
|
|
1940
|
+
id: string;
|
|
1941
|
+
companyId: string;
|
|
1942
|
+
subscriptionId: string | null;
|
|
1943
|
+
planCode: TSubscriptionPlan;
|
|
1944
|
+
status: TSubscriptionStatus;
|
|
1945
|
+
effectiveFrom: TDateTimeString;
|
|
1946
|
+
effectiveUntil: TDateTimeString | null;
|
|
1947
|
+
propertyLimit: number;
|
|
1948
|
+
teamMemberLimit: number;
|
|
1949
|
+
checklistTemplateLimit: number;
|
|
1950
|
+
imageStorageLimitMb: number;
|
|
1951
|
+
sourceEventId: string | null;
|
|
1952
|
+
createdAt: TDateTimeString;
|
|
1953
|
+
}
|
|
1954
|
+
interface IRefund extends IMetaData {
|
|
1955
|
+
id: string;
|
|
1956
|
+
subscriptionId: string;
|
|
1957
|
+
provider: TSubscriptionProvider;
|
|
1958
|
+
providerRefundId: string | null;
|
|
1959
|
+
providerTransactionId: string | null;
|
|
1960
|
+
amount: number | null;
|
|
1961
|
+
currency: string | null;
|
|
1962
|
+
reason: string | null;
|
|
1963
|
+
status: TRefundStatus;
|
|
1964
|
+
refundedAt: TDateTimeString | null;
|
|
1965
|
+
rawPayload: TJsonObject | null;
|
|
1966
|
+
}
|
|
1967
|
+
interface ICompanyBillingSummary {
|
|
1968
|
+
billingAccount: IBillingAccount | null;
|
|
1969
|
+
subscription: ICompanySubscription | null;
|
|
1970
|
+
entitlement: IEntitlementSnapshot;
|
|
1971
|
+
}
|
|
1972
|
+
/**
|
|
1973
|
+
* @deprecated Use ICompanySubscription for company-scoped SaaS access.
|
|
1974
|
+
*/
|
|
1794
1975
|
interface IUserSubscription {
|
|
1795
1976
|
id: string;
|
|
1796
1977
|
userId: string;
|
|
@@ -1987,4 +2168,4 @@ interface ICompleteChecklistItemInput {
|
|
|
1987
2168
|
skipReason?: string;
|
|
1988
2169
|
}
|
|
1989
2170
|
|
|
1990
|
-
export { ACCOUNT_STATUS, ACCOUNT_TYPE, AUTH_STATUS, AcceptInvitationRequestSchema, BILLING_PERIOD, CHECKLIST_EXECUTION_STATUS, COMPANY_RELATIONSHIP_STATUS, COMPANY_TYPES, ChangePasswordRequestSchema, CompanyFilter, CreateCompanyRequestSchema, CreatePropertyRequestSchema, CreateRoomRequestSchema, DAMAGE_SEVERITY, DAMAGE_STATUS, DATABASE_STATUS, ERROR_CODES, ForgotPasswordRequestSchema, HTTP_METHOD, HTTP_STATUS, type IAcceptCompanyInvitationRequest, type IAcceptCompanyInvitationResponse, type IAcceptInvitationRequest, type IAcceptInvitationResponse, type IAcceptInvitationRouteResponse, type IAddChecklistItemRequest, type IAddChecklistItemResponse, type IAddDamageReportCommentRequest, type IAddDamageReportCommentResponse, type IAddDamageReportPhotoRequest, type IAddDamageReportPhotoResponse, type IAddInventoryToPropertyRequest, type IAddInventoryToPropertyResponse, type IAddInventoryToRoomRequest, type IAddInventoryToRoomResponse, type IAddTemplateItemRequest, type IAddTemplateItemResponse, type IApiError, type IApiErrorResponse, type IApiMeta, type IApiResponse, type IApiSuccessResponse, type IAssignDamageReportRequest, type IAssignDamageReportResponse, type IAssignWorkOrderRequest, type IAssignWorkOrderResponse, type IAuthInvitationBaseResponse, type IAuthInvitationIdParams, type IAuthInvitationTokenParams, type IAuthMessageResponse, type IAuthRefreshTokenResponse, type IAuthSession, type IAuthSessionIdParams, type IAuthTokenBundle, type IAuthTokenResponse, type ICancelWorkSessionRequest, type ICancelWorkSessionResponse, type IChangePasswordRequest, type IChangePasswordResponse, type IChecklistAndItemIdParams, type IChecklistExecution, type IChecklistIdParams, type IChecklistItemCompletion, type IChecklistItemOrder, type IChecklistTemplate, type IChecklistTemplateCompanyRouteParams, type IChecklistTemplateItem, type IChecklistTemplateWithItems, type ICloneChecklistRequest, type ICloneChecklistResponse, type ICompany, type ICompanyIdParams, type ICompanyInvitationIdParams, type ICompanyInvitationSummary, type ICompanyInvitationTokenParams, type ICompanyRouteParams, type ICompanyUserRouteParams, type ICompanyUserSummary, type ICompanyWithRelationshipStatus, type ICompanyWithUsers, type ICompleteChecklistExecutionRequest, type ICompleteChecklistExecutionResponse, type ICompleteChecklistItemInput, type ICompleteExecutionItemRequest, type ICompleteExecutionItemResponse, type ICompleteWorkOrderRequest, type ICompleteWorkOrderResponse, type ICompleteWorkSessionRequest, type ICompleteWorkSessionResponse, ICountResponse, type ICreateChecklistRequest, type ICreateChecklistResponse, type ICreateCompanyRequest, type ICreateCompanyResponse, type ICreateCustomChecklistRequest, type ICreateCustomChecklistResponse, type ICreateDamageReportInput, type ICreateDamageReportRequest, type ICreateDamageReportResponse, type ICreateInventoryItemRequest, type ICreateInventoryItemResponse, type ICreatePropertyRequest, type ICreatePropertyResponse, type ICreateRestockOrderRequest, type ICreateRestockOrderResponse, type ICreateRoomChecklistInput, type ICreateRoomChecklistItemInput, type ICreateRoomRequest, type ICreateRoomResponse, type ICreateTemplateInput, type ICreateTemplateItemInput, type ICreateTemplateRequest, type ICreateTemplateResponse, type ICreateTemplateWithItemsRequest, type ICreateTemplateWithItemsResponse, type ICreateWorkOrderInput, type ICreateWorkOrderRequest, type ICreateWorkOrderResponse, type ICreateWorkSessionInput, type ICreateWorkSessionRequest, type ICreateWorkSessionResponse, type IDamageComment, type IDamagePhoto, type IDamageReport, type IDamageReportPhoto, type IDamageReportPropertyRouteParams, type IDamageReportRoomRouteParams, type IDamageReportRouteParams, type IDamageReportStatusHistory, type IDamageReportWorkOrderRouteParams, type IDeclineCompanyInvitationRequest, type IDeclineCompanyInvitationResponse, type IDeleteChecklistItemRequest, type IDeleteChecklistItemResponse, type IDeleteChecklistRequest, type IDeleteChecklistResponse, type IDeleteImageRequest, type IDeleteImageResponse, type IDeleteInventoryItemRequest, type IDeleteInventoryItemResponse, type IDeletePropertyRequest, type IDeletePropertyResponse, type IDeleteRoomRequest, type IDeleteRoomResponse, type IDeleteTemplateItemRequest, type IDeleteTemplateItemResponse, type IDeleteTemplateRequest, type IDeleteTemplateResponse, type IDeleteUserRequest, type IDeleteUserResponse, type IDeviceInfo, type IDuplicateTemplateItemRequest, type IDuplicateTemplateItemResponse, type IEmailValidationResult, IEmptyRouteRequest, type IForgotPasswordRequest, type IForgotPasswordResponse, type IGetActiveWorkSessionRequest, type IGetActiveWorkSessionResponse, type IGetChecklistByIdRequest, type IGetChecklistByIdResponse, type IGetChecklistByRoomIdRequest, type IGetChecklistByRoomIdResponse, type IGetChecklistExecutionByIdRequest, type IGetChecklistExecutionByIdResponse, type IGetChecklistExecutionsRequest, type IGetChecklistExecutionsResponse, type IGetChecklistItemsRequest, type IGetChecklistItemsResponse, type IGetChecklistWithItemsRequest, type IGetChecklistWithItemsResponse, type IGetCompaniesQuery, type IGetCompaniesRequest, type IGetCompaniesResponse, type IGetCompanyByIdRequest, type IGetCompanyByIdResponse, type IGetCompanyUsersRequest, type IGetCompanyUsersResponse, type IGetCurrentUserRequest, type IGetCurrentUserResponse, type IGetCustomChecklistItemsRequest, type IGetCustomChecklistItemsResponse, type IGetDamageReportByIdRequest, type IGetDamageReportByIdResponse, type IGetDamageReportCommentsRequest, type IGetDamageReportCommentsResponse, type IGetDamageReportHistoryRequest, type IGetDamageReportHistoryResponse, type IGetDamageReportPhotosRequest, type IGetDamageReportPhotosResponse, type IGetDamageReportsByPropertyIdRequest, type IGetDamageReportsByPropertyIdResponse, type IGetDamageReportsByRoomIdRequest, type IGetDamageReportsByRoomIdResponse, type IGetDetailedHealthRequest, type IGetDetailedHealthResponse, type IGetDetailedRoomsByPropertyIdRequest, type IGetDetailedRoomsByPropertyIdResponse, type IGetExecutionItemsRequest, type IGetExecutionItemsResponse, type IGetExecutionProgressRequest, type IGetExecutionProgressResponse, type IGetHealthRequest, type IGetHealthResponse, type IGetImagesForEntityResponse, type IGetInventoryByCompanyIdRequest, type IGetInventoryByCompanyIdResponse, type IGetInventoryCountsByExecutionIdRequest, type IGetInventoryCountsByExecutionIdResponse, type IGetInventoryItemByIdRequest, type IGetInventoryItemByIdResponse, type IGetLoginHistoryListResponse, type IGetLoginHistoryRequest, type IGetLoginHistoryResponse, type IGetMeRequest, type IGetMeResponse, type IGetPendingCompanyInvitationsRequest, type IGetPendingCompanyInvitationsResponse, type IGetPendingInvitationsListResponse, type IGetPendingInvitationsRequest, type IGetPendingInvitationsResponse, type IGetPropertiesByCompanyIdRequest, type IGetPropertiesByCompanyIdResponse, type IGetPropertiesRequest, type IGetPropertiesResponse, type IGetPropertyAccessInformationRequest, type IGetPropertyAccessInformationResponse, type IGetPropertyByIdRequest, type IGetPropertyByIdResponse, type IGetPropertyInventoryNeedingRestockRequest, type IGetPropertyInventoryNeedingRestockResponse, type IGetPropertyInventoryRequest, type IGetPropertyInventoryResponse, type IGetPropertyResponse, type IGetRestockOrderItemsRequest, type IGetRestockOrderItemsResponse, type IGetRestockOrdersByCompanyIdRequest, type IGetRestockOrdersByCompanyIdResponse, type IGetRoomByIdRequest, type IGetRoomByIdResponse, type IGetRoomInventoryNeedingRestockRequest, type IGetRoomInventoryNeedingRestockResponse, type IGetRoomInventoryRequest, type IGetRoomInventoryResponse, type IGetRoomsByPropertyIdRequest, type IGetRoomsByPropertyIdResponse, type IGetRoomsRequest, type IGetSessionsRequest, type IGetSessionsResponse, type IGetStaffRequest, type IGetStaffResponse, type IGetTemplateByIdRequest, type IGetTemplateByIdResponse, type IGetTemplateItemsRequest, type IGetTemplateItemsResponse, type IGetTemplateUsageRequest, type IGetTemplateUsageResponse, type IGetTemplateWithItemsRequest, type IGetTemplateWithItemsResponse, type IGetTemplatesByCompanyIdRequest, type IGetTemplatesByCompanyIdResponse, type IGetUserByEmailRequest, type IGetUserByEmailResponse, type IGetUserByIdRequest, type IGetUserByIdResponse, type IGetUserCompaniesRequest, type IGetUserCompaniesResponse, type IGetUserResponse, type IGetUsersByAccountTypeRequest, type IGetUsersByAccountTypeResponse, type IGetWorkOrderByIdRequest, type IGetWorkOrderByIdResponse, type IGetWorkOrdersByPropertyIdRequest, type IGetWorkOrdersByPropertyIdResponse, type IGetWorkSessionByIdRequest, type IGetWorkSessionByIdResponse, type IGetWorkSessionWithExecutionsRequest, type IGetWorkSessionWithExecutionsResponse, type IGetWorkSessionsByPropertyIdRequest, type IGetWorkSessionsByPropertyIdResponse, type IGetWorkSessionsByUserIdRequest, type IGetWorkSessionsByUserIdResponse, type IHealthCheckResponse, type IHealthChecks, type IImage, type IImageCompanyRouteParams, type IImagePropertyRouteParams, type IImageRoomRouteParams, type IImageRouteParams, type IImageUserRouteParams, type IImageWithUrl, type IIncludeInactiveQuery, type IIncludeResolvedQuery, type IInventoryCompanyRouteParams, type IInventoryCount, type IInventoryExecutionRouteParams, type IInventoryItem, type IInventoryItemRouteParams, type IInventoryOrderRouteParams, type IInventoryPropertyRouteParams, type IInventoryRestockOrder, type IInventoryRestockOrderItem, type IInventoryRoomRouteParams, type IInviteCompanyToCompanyRequest, type IInviteCompanyToCompanyResponse, type IInviteUserToCompanyRequest, type IInviteUserToCompanyResponse, type IJobFilterValues, type ILimitQuery, type ILoginCredentials, type ILoginRequest, type ILoginResponse, type ILogoutAllRequest, type ILogoutAllResponse, type ILogoutRequest, type ILogoutResponse, IMAGE_ENTITY_TYPE, IMessageResponse, IMetaData, type IMissingFieldsErrorDetail, INVENTORY_ITEM_TYPE, INVENTORY_RESTOCK_ORDER_STATUS, INVENTORY_UNITS, INVITATION_STATUS, type IPasswordValidationResult, type IPasswordValidationRules, type IProperty, type IPropertyAccessInformation, type IPropertyDetail, type IPropertyIdParams, type IPropertyInventory, type IPropertySummary, type IRateLimitErrorDetail, type IRateLimitStatus, type IRecordInventoryCountRequest, type IRecordInventoryCountResponse, type IRefreshSessionRequest, type IRefreshSessionResponse, type IRefreshTokenData, type IRegisterCredentials, type IRegisterRequest, type IRegisterResponse, type IRegisterWithInvitationRequest, type IRegisterWithInvitationResponse, type IReorderChecklistItemsRequest, type IReorderChecklistItemsResponse, type IReorderTemplateItemsRequest, type IReorderTemplateItemsResponse, type IResolveDamageReportRequest, type IResolveDamageReportResponse, type IRestockOrderItemInput, type IRevokeCompanyInvitationRequest, type IRevokeCompanyInvitationResponse, type IRevokeInvitationRequest, type IRevokeInvitationResponse, type IRevokeSessionRequest, type IRevokeSessionResponse, type IRoom, type IRoomChecklist, type IRoomChecklistItem, type IRoomChecklistRoomRouteParams, type IRoomChecklistWithItems, type IRoomInventory, type IRoomInventoryIdParams, type IRoomPropertyRouteParams, type IRoomRouteParams, IRuntimeValidationSchema, ISelectOption, type ISetAuthSessionParams, type ISkipChecklistExecutionRequest, type ISkipChecklistExecutionResponse, type IStartChecklistExecutionRequest, type IStartChecklistExecutionResponse, type IStoredAuthSession, ISuccessResponse, type ITemplateAndItemIdParams, type ITemplateIdParams, type ITemplateItemIdParams, type ITemplateItemOrder, type IToggleTemplateActiveRequest, type IToggleTemplateActiveResponse, type ITypedApiError, type IUpdateChecklistItemRequest, type IUpdateChecklistItemResponse, type IUpdateChecklistRequest, type IUpdateChecklistResponse, type IUpdateCompanyRequest, type IUpdateCompanyResponse, type IUpdateCurrentUserRequest, type IUpdateDamageReportRequest, type IUpdateDamageReportResponse, type IUpdateDamageReportStatusRequest, type IUpdateDamageReportStatusResponse, type IUpdateInventoryItemRequest, type IUpdateInventoryItemResponse, type IUpdatePropertyAccessInformationRequest, type IUpdatePropertyAccessInformationResponse, type IUpdatePropertyRequest, type IUpdatePropertyResponse, type IUpdateRestockOrderStatusRequest, type IUpdateRestockOrderStatusResponse, type IUpdateRoomInventoryRequest, type IUpdateRoomInventoryResponse, type IUpdateRoomRequest, type IUpdateRoomResponse, type IUpdateTemplateItemRequest, type IUpdateTemplateItemResponse, type IUpdateTemplateRequest, type IUpdateTemplateResponse, type IUpdateUserRequest, type IUpdateUserResponse, type IUpdateWorkOrderRequest, type IUpdateWorkOrderResponse, type IUpdateWorkOrderStatusRequest, type IUpdateWorkOrderStatusResponse, type IUpdateWorkSessionRequest, type IUpdateWorkSessionResponse, type IUploadImagesResponse, type IUploadProfileImageRequest, type IUploadProfileImageResponse, type IUser, type IUserIdParams, type IUserSession, type IUserSubscription, type IValidateCompanyInvitationRequest, type IValidateCompanyInvitationResponse, type IValidateInvitationRequest, type IValidateInvitationResponse, type IValidationErrorDetail, IValidationField, type IWorkOrder, type IWorkSession, type IWorkSessionExecutionRouteParams, type IWorkSessionPropertyRouteParams, type IWorkSessionRouteParams, type IWorkSessionUserRouteParams, type IWorkSessionWithExecutions, InviteCompanyToCompanyRequestSchema, InviteUserToCompanyRequestSchema, LANGUAGE, LoginRequestSchema, LogoutRequestSchema, PROPERTY_STATUS, PROPERTY_TYPES, PropertyStatusOptions, PropertyTypeOptions, ROOM_TYPE, RefreshSessionRequestSchema, RegisterRequestSchema, RegisterWithInvitationRequestSchema, SERVER_STATUS, SUBSCRIPTION_PROVIDER, SUBSCRIPTION_STATUS, type TAccountStatus, type TAccountType, type TApiErrorDetails, type TAuthStatus, type TBillingPeriod, type TChecklistExecutionStatus, type TCompanyFilter, type TCompanyRelationshipStatus, type TCompanyType, type TDamageSeverity, type TDamageStatus, type TDatabaseStatus, TDateTimeString, TEnvironment, type TErrorCode, type TErrorResponseDetail, type THttpMethod, type THttpStatusCode, TInferValidationSchemaInput, type TInventoryItemType, type TInventoryRestockOrderStatus, type TInventoryUnitType, type TInvitationStatus, TJsonObject, TJsonValue, type TLanguage, type TMissingFieldsError, type TPropertyStatus, type TPropertyType, type TRateLimitError, TRecordValue, type TRoomType, type TServerStatus, TServiceType, TStatus, type TStoredImageEntityType, type TSubscriptionProvider, type TSubscriptionStatus, TUSStateCode, type TValidationError, type TWorkOrderPriority, type TWorkOrderStatus, type TWorkSessionStatus, UpdateCompanyRequestSchema, UpdateCurrentUserRequestSchema, UpdatePropertyAccessInformationRequestSchema, UpdatePropertyRequestSchema, UpdateRoomRequestSchema, UpdateUserRequestSchema, WORK_ORDER_PRIORITY, WORK_ORDER_STATUS, WORK_SESSION_STATUS, isAuthError, isMissingFieldsError, isRateLimitError, isValidationError };
|
|
2171
|
+
export { ACCOUNT_STATUS, ACCOUNT_TYPE, AUTH_STATUS, AcceptInvitationRequestSchema, BILLING_PERIOD, BillingProviderValues, BillingProviderWebhookRequestSchema, CHECKLIST_EXECUTION_STATUS, COMPANY_RELATIONSHIP_STATUS, COMPANY_TYPES, ChangePasswordRequestSchema, CompanyFilter, CreateCompanyRequestSchema, CreatePropertyRequestSchema, CreateRoomRequestSchema, CreateStripeCheckoutSessionRequestSchema, DAMAGE_SEVERITY, DAMAGE_STATUS, DATABASE_STATUS, ERROR_CODES, ForgotPasswordRequestSchema, HTTP_METHOD, HTTP_STATUS, type IAcceptCompanyInvitationRequest, type IAcceptCompanyInvitationResponse, type IAcceptInvitationRequest, type IAcceptInvitationResponse, type IAcceptInvitationRouteResponse, type IAddChecklistItemRequest, type IAddChecklistItemResponse, type IAddDamageReportCommentRequest, type IAddDamageReportCommentResponse, type IAddDamageReportPhotoRequest, type IAddDamageReportPhotoResponse, type IAddInventoryToPropertyRequest, type IAddInventoryToPropertyResponse, type IAddInventoryToRoomRequest, type IAddInventoryToRoomResponse, type IAddTemplateItemRequest, type IAddTemplateItemResponse, type IApiError, type IApiErrorResponse, type IApiMeta, type IApiResponse, type IApiSuccessResponse, type IAssignDamageReportRequest, type IAssignDamageReportResponse, type IAssignWorkOrderRequest, type IAssignWorkOrderResponse, type IAuthInvitationBaseResponse, type IAuthInvitationIdParams, type IAuthInvitationTokenParams, type IAuthMessageResponse, type IAuthRefreshTokenResponse, type IAuthSession, type IAuthSessionIdParams, type IAuthTokenBundle, type IAuthTokenResponse, type IBillingAccount, type IBillingCompanyRouteParams, type IBillingProviderWebhookRequest, type IBillingProviderWebhookResponse, type ICancelWorkSessionRequest, type ICancelWorkSessionResponse, type IChangePasswordRequest, type IChangePasswordResponse, type IChecklistAndItemIdParams, type IChecklistExecution, type IChecklistIdParams, type IChecklistItemCompletion, type IChecklistItemOrder, type IChecklistTemplate, type IChecklistTemplateCompanyRouteParams, type IChecklistTemplateItem, type IChecklistTemplateWithItems, type ICloneChecklistRequest, type ICloneChecklistResponse, type ICompany, type ICompanyBillingSummary, type ICompanyIdParams, type ICompanyInvitationIdParams, type ICompanyInvitationSummary, type ICompanyInvitationTokenParams, type ICompanyRouteParams, type ICompanySubscription, type ICompanyUserRouteParams, type ICompanyUserSummary, type ICompanyWithRelationshipStatus, type ICompanyWithUsers, type ICompleteChecklistExecutionRequest, type ICompleteChecklistExecutionResponse, type ICompleteChecklistItemInput, type ICompleteExecutionItemRequest, type ICompleteExecutionItemResponse, type ICompleteWorkOrderRequest, type ICompleteWorkOrderResponse, type ICompleteWorkSessionRequest, type ICompleteWorkSessionResponse, ICountResponse, type ICreateChecklistRequest, type ICreateChecklistResponse, type ICreateCompanyRequest, type ICreateCompanyResponse, type ICreateCustomChecklistRequest, type ICreateCustomChecklistResponse, type ICreateDamageReportInput, type ICreateDamageReportRequest, type ICreateDamageReportResponse, type ICreateInventoryItemRequest, type ICreateInventoryItemResponse, type ICreatePropertyRequest, type ICreatePropertyResponse, type ICreateRestockOrderRequest, type ICreateRestockOrderResponse, type ICreateRoomChecklistInput, type ICreateRoomChecklistItemInput, type ICreateRoomRequest, type ICreateRoomResponse, type ICreateStripeCheckoutSessionRequest, type ICreateStripeCheckoutSessionResponse, type ICreateTemplateInput, type ICreateTemplateItemInput, type ICreateTemplateRequest, type ICreateTemplateResponse, type ICreateTemplateWithItemsRequest, type ICreateTemplateWithItemsResponse, type ICreateWorkOrderInput, type ICreateWorkOrderRequest, type ICreateWorkOrderResponse, type ICreateWorkSessionInput, type ICreateWorkSessionRequest, type ICreateWorkSessionResponse, type IDamageComment, type IDamagePhoto, type IDamageReport, type IDamageReportPhoto, type IDamageReportPropertyRouteParams, type IDamageReportRoomRouteParams, type IDamageReportRouteParams, type IDamageReportStatusHistory, type IDamageReportWorkOrderRouteParams, type IDeclineCompanyInvitationRequest, type IDeclineCompanyInvitationResponse, type IDeleteChecklistItemRequest, type IDeleteChecklistItemResponse, type IDeleteChecklistRequest, type IDeleteChecklistResponse, type IDeleteImageRequest, type IDeleteImageResponse, type IDeleteInventoryItemRequest, type IDeleteInventoryItemResponse, type IDeletePropertyRequest, type IDeletePropertyResponse, type IDeleteRoomRequest, type IDeleteRoomResponse, type IDeleteTemplateItemRequest, type IDeleteTemplateItemResponse, type IDeleteTemplateRequest, type IDeleteTemplateResponse, type IDeleteUserRequest, type IDeleteUserResponse, type IDeviceInfo, type IDuplicateTemplateItemRequest, type IDuplicateTemplateItemResponse, type IEmailValidationResult, IEmptyRouteRequest, type IEntitlementSnapshot, type IForgotPasswordRequest, type IForgotPasswordResponse, type IGetActiveWorkSessionRequest, type IGetActiveWorkSessionResponse, type IGetBillingProductsRequest, type IGetBillingProductsResponse, type IGetChecklistByIdRequest, type IGetChecklistByIdResponse, type IGetChecklistByRoomIdRequest, type IGetChecklistByRoomIdResponse, type IGetChecklistExecutionByIdRequest, type IGetChecklistExecutionByIdResponse, type IGetChecklistExecutionsRequest, type IGetChecklistExecutionsResponse, type IGetChecklistItemsRequest, type IGetChecklistItemsResponse, type IGetChecklistWithItemsRequest, type IGetChecklistWithItemsResponse, type IGetCompaniesQuery, type IGetCompaniesRequest, type IGetCompaniesResponse, type IGetCompanyBillingSummaryRequest, type IGetCompanyBillingSummaryResponse, type IGetCompanyByIdRequest, type IGetCompanyByIdResponse, type IGetCompanyUsersRequest, type IGetCompanyUsersResponse, type IGetCurrentUserRequest, type IGetCurrentUserResponse, type IGetCustomChecklistItemsRequest, type IGetCustomChecklistItemsResponse, type IGetDamageReportByIdRequest, type IGetDamageReportByIdResponse, type IGetDamageReportCommentsRequest, type IGetDamageReportCommentsResponse, type IGetDamageReportHistoryRequest, type IGetDamageReportHistoryResponse, type IGetDamageReportPhotosRequest, type IGetDamageReportPhotosResponse, type IGetDamageReportsByPropertyIdRequest, type IGetDamageReportsByPropertyIdResponse, type IGetDamageReportsByRoomIdRequest, type IGetDamageReportsByRoomIdResponse, type IGetDetailedHealthRequest, type IGetDetailedHealthResponse, type IGetDetailedRoomsByPropertyIdRequest, type IGetDetailedRoomsByPropertyIdResponse, type IGetExecutionItemsRequest, type IGetExecutionItemsResponse, type IGetExecutionProgressRequest, type IGetExecutionProgressResponse, type IGetHealthRequest, type IGetHealthResponse, type IGetImagesForEntityResponse, type IGetInventoryByCompanyIdRequest, type IGetInventoryByCompanyIdResponse, type IGetInventoryCountsByExecutionIdRequest, type IGetInventoryCountsByExecutionIdResponse, type IGetInventoryItemByIdRequest, type IGetInventoryItemByIdResponse, type IGetLoginHistoryListResponse, type IGetLoginHistoryRequest, type IGetLoginHistoryResponse, type IGetMeRequest, type IGetMeResponse, type IGetPendingCompanyInvitationsRequest, type IGetPendingCompanyInvitationsResponse, type IGetPendingInvitationsListResponse, type IGetPendingInvitationsRequest, type IGetPendingInvitationsResponse, type IGetPropertiesByCompanyIdRequest, type IGetPropertiesByCompanyIdResponse, type IGetPropertiesRequest, type IGetPropertiesResponse, type IGetPropertyAccessInformationRequest, type IGetPropertyAccessInformationResponse, type IGetPropertyByIdRequest, type IGetPropertyByIdResponse, type IGetPropertyInventoryNeedingRestockRequest, type IGetPropertyInventoryNeedingRestockResponse, type IGetPropertyInventoryRequest, type IGetPropertyInventoryResponse, type IGetPropertyResponse, type IGetRestockOrderItemsRequest, type IGetRestockOrderItemsResponse, type IGetRestockOrdersByCompanyIdRequest, type IGetRestockOrdersByCompanyIdResponse, type IGetRoomByIdRequest, type IGetRoomByIdResponse, type IGetRoomInventoryNeedingRestockRequest, type IGetRoomInventoryNeedingRestockResponse, type IGetRoomInventoryRequest, type IGetRoomInventoryResponse, type IGetRoomsByPropertyIdRequest, type IGetRoomsByPropertyIdResponse, type IGetRoomsRequest, type IGetSessionsRequest, type IGetSessionsResponse, type IGetStaffRequest, type IGetStaffResponse, type IGetTemplateByIdRequest, type IGetTemplateByIdResponse, type IGetTemplateItemsRequest, type IGetTemplateItemsResponse, type IGetTemplateUsageRequest, type IGetTemplateUsageResponse, type IGetTemplateWithItemsRequest, type IGetTemplateWithItemsResponse, type IGetTemplatesByCompanyIdRequest, type IGetTemplatesByCompanyIdResponse, type IGetUserByEmailRequest, type IGetUserByEmailResponse, type IGetUserByIdRequest, type IGetUserByIdResponse, type IGetUserCompaniesRequest, type IGetUserCompaniesResponse, type IGetUserResponse, type IGetUsersByAccountTypeRequest, type IGetUsersByAccountTypeResponse, type IGetWorkOrderByIdRequest, type IGetWorkOrderByIdResponse, type IGetWorkOrdersByPropertyIdRequest, type IGetWorkOrdersByPropertyIdResponse, type IGetWorkSessionByIdRequest, type IGetWorkSessionByIdResponse, type IGetWorkSessionWithExecutionsRequest, type IGetWorkSessionWithExecutionsResponse, type IGetWorkSessionsByPropertyIdRequest, type IGetWorkSessionsByPropertyIdResponse, type IGetWorkSessionsByUserIdRequest, type IGetWorkSessionsByUserIdResponse, type IHealthCheckResponse, type IHealthChecks, type IImage, type IImageCompanyRouteParams, type IImagePropertyRouteParams, type IImageRoomRouteParams, type IImageRouteParams, type IImageUserRouteParams, type IImageWithUrl, type IIncludeInactiveQuery, type IIncludeResolvedQuery, type IInventoryCompanyRouteParams, type IInventoryCount, type IInventoryExecutionRouteParams, type IInventoryItem, type IInventoryItemRouteParams, type IInventoryOrderRouteParams, type IInventoryPropertyRouteParams, type IInventoryRestockOrder, type IInventoryRestockOrderItem, type IInventoryRoomRouteParams, type IInviteCompanyToCompanyRequest, type IInviteCompanyToCompanyResponse, type IInviteUserToCompanyRequest, type IInviteUserToCompanyResponse, type IJobFilterValues, type ILimitQuery, type ILoginCredentials, type ILoginRequest, type ILoginResponse, type ILogoutAllRequest, type ILogoutAllResponse, type ILogoutRequest, type ILogoutResponse, IMAGE_ENTITY_TYPE, IMessageResponse, IMetaData, type IMissingFieldsErrorDetail, INVENTORY_ITEM_TYPE, INVENTORY_RESTOCK_ORDER_STATUS, INVENTORY_UNITS, INVITATION_STATUS, type IPasswordValidationResult, type IPasswordValidationRules, type IProperty, type IPropertyAccessInformation, type IPropertyDetail, type IPropertyIdParams, type IPropertyInventory, type IPropertySummary, type IProviderProduct, type IProviderProductLookupRequest, type IProviderProductLookupResponse, type IRateLimitErrorDetail, type IRateLimitStatus, type IRecordInventoryCountRequest, type IRecordInventoryCountResponse, type IRefreshSessionRequest, type IRefreshSessionResponse, type IRefreshTokenData, type IRefund, type IRegisterCredentials, type IRegisterRequest, type IRegisterResponse, type IRegisterWithInvitationRequest, type IRegisterWithInvitationResponse, type IReorderChecklistItemsRequest, type IReorderChecklistItemsResponse, type IReorderTemplateItemsRequest, type IReorderTemplateItemsResponse, type IResolveDamageReportRequest, type IResolveDamageReportResponse, type IRestockOrderItemInput, type IRevokeCompanyInvitationRequest, type IRevokeCompanyInvitationResponse, type IRevokeInvitationRequest, type IRevokeInvitationResponse, type IRevokeSessionRequest, type IRevokeSessionResponse, type IRoom, type IRoomChecklist, type IRoomChecklistItem, type IRoomChecklistRoomRouteParams, type IRoomChecklistWithItems, type IRoomInventory, type IRoomInventoryIdParams, type IRoomPropertyRouteParams, type IRoomRouteParams, IRuntimeValidationSchema, ISelectOption, type ISetAuthSessionParams, type ISkipChecklistExecutionRequest, type ISkipChecklistExecutionResponse, type IStartChecklistExecutionRequest, type IStartChecklistExecutionResponse, type IStoredAuthSession, type ISubscriptionEvent, type ISubscriptionPlan, type ISubscriptionProductSummary, ISuccessResponse, type ISyncAppleSubscriptionRequest, type ISyncGoogleSubscriptionRequest, type ISyncStoreSubscriptionResponse, type ITemplateAndItemIdParams, type ITemplateIdParams, type ITemplateItemIdParams, type ITemplateItemOrder, type IToggleTemplateActiveRequest, type IToggleTemplateActiveResponse, type ITypedApiError, type IUpdateChecklistItemRequest, type IUpdateChecklistItemResponse, type IUpdateChecklistRequest, type IUpdateChecklistResponse, type IUpdateCompanyRequest, type IUpdateCompanyResponse, type IUpdateCurrentUserRequest, type IUpdateDamageReportRequest, type IUpdateDamageReportResponse, type IUpdateDamageReportStatusRequest, type IUpdateDamageReportStatusResponse, type IUpdateInventoryItemRequest, type IUpdateInventoryItemResponse, type IUpdatePropertyAccessInformationRequest, type IUpdatePropertyAccessInformationResponse, type IUpdatePropertyRequest, type IUpdatePropertyResponse, type IUpdateRestockOrderStatusRequest, type IUpdateRestockOrderStatusResponse, type IUpdateRoomInventoryRequest, type IUpdateRoomInventoryResponse, type IUpdateRoomRequest, type IUpdateRoomResponse, type IUpdateTemplateItemRequest, type IUpdateTemplateItemResponse, type IUpdateTemplateRequest, type IUpdateTemplateResponse, type IUpdateUserRequest, type IUpdateUserResponse, type IUpdateWorkOrderRequest, type IUpdateWorkOrderResponse, type IUpdateWorkOrderStatusRequest, type IUpdateWorkOrderStatusResponse, type IUpdateWorkSessionRequest, type IUpdateWorkSessionResponse, type IUploadImagesResponse, type IUploadProfileImageRequest, type IUploadProfileImageResponse, type IUser, type IUserIdParams, type IUserSession, type IUserSubscription, type IValidateCompanyInvitationRequest, type IValidateCompanyInvitationResponse, type IValidateInvitationRequest, type IValidateInvitationResponse, type IValidationErrorDetail, IValidationField, type IWorkOrder, type IWorkSession, type IWorkSessionExecutionRouteParams, type IWorkSessionPropertyRouteParams, type IWorkSessionRouteParams, type IWorkSessionUserRouteParams, type IWorkSessionWithExecutions, InviteCompanyToCompanyRequestSchema, InviteUserToCompanyRequestSchema, LANGUAGE, LoginRequestSchema, LogoutRequestSchema, PROPERTY_STATUS, PROPERTY_TYPES, PropertyStatusOptions, PropertyTypeOptions, ProviderProductLookupRequestSchema, REFUND_STATUS, ROOM_TYPE, RefreshSessionRequestSchema, RegisterRequestSchema, RegisterWithInvitationRequestSchema, SERVER_STATUS, SUBSCRIPTION_FEATURE, SUBSCRIPTION_PLAN, SUBSCRIPTION_PROVIDER, SUBSCRIPTION_STATUS, SyncAppleSubscriptionRequestSchema, SyncGoogleSubscriptionRequestSchema, type TAccountStatus, type TAccountType, type TApiErrorDetails, type TAuthStatus, type TBillingPeriod, type TChecklistExecutionStatus, type TCompanyFilter, type TCompanyRelationshipStatus, type TCompanyType, type TDamageSeverity, type TDamageStatus, type TDatabaseStatus, TDateTimeString, TEnvironment, type TErrorCode, type TErrorResponseDetail, type THttpMethod, type THttpStatusCode, TInferValidationSchemaInput, type TInventoryItemType, type TInventoryRestockOrderStatus, type TInventoryUnitType, type TInvitationStatus, TJsonObject, TJsonValue, type TLanguage, type TMissingFieldsError, type TPropertyStatus, type TPropertyType, type TRateLimitError, TRecordValue, type TRefundStatus, type TRoomType, type TServerStatus, TServiceType, TStatus, type TStoredImageEntityType, type TSubscriptionFeature, type TSubscriptionPlan, type TSubscriptionProvider, type TSubscriptionStatus, TUSStateCode, type TValidationError, type TWorkOrderPriority, type TWorkOrderStatus, type TWorkSessionStatus, UpdateCompanyRequestSchema, UpdateCurrentUserRequestSchema, UpdatePropertyAccessInformationRequestSchema, UpdatePropertyRequestSchema, UpdateRoomRequestSchema, UpdateUserRequestSchema, WORK_ORDER_PRIORITY, WORK_ORDER_STATUS, WORK_SESSION_STATUS, isAuthError, isMissingFieldsError, isRateLimitError, isValidationError };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1772,18 +1772,90 @@ interface ICreateRoomChecklistItemInput {
|
|
|
1772
1772
|
isCustom?: boolean;
|
|
1773
1773
|
}
|
|
1774
1774
|
|
|
1775
|
+
interface IBillingCompanyRouteParams {
|
|
1776
|
+
companyId: string;
|
|
1777
|
+
}
|
|
1778
|
+
interface IGetBillingProductsRequest {
|
|
1779
|
+
}
|
|
1780
|
+
type IGetBillingProductsResponse = ISubscriptionProductSummary[];
|
|
1781
|
+
interface IGetCompanyBillingSummaryRequest extends IBillingCompanyRouteParams {
|
|
1782
|
+
}
|
|
1783
|
+
interface IGetCompanyBillingSummaryResponse extends ICompanyBillingSummary {
|
|
1784
|
+
}
|
|
1785
|
+
declare const CreateStripeCheckoutSessionRequestSchema: IRuntimeValidationSchema<{
|
|
1786
|
+
providerProductId: IValidationField<string, true>;
|
|
1787
|
+
successUrl: IValidationField<string, true>;
|
|
1788
|
+
cancelUrl: IValidationField<string, true>;
|
|
1789
|
+
}>;
|
|
1790
|
+
type ICreateStripeCheckoutSessionRequest = TInferValidationSchemaInput<typeof CreateStripeCheckoutSessionRequestSchema>;
|
|
1791
|
+
interface ICreateStripeCheckoutSessionResponse {
|
|
1792
|
+
checkoutUrl: string;
|
|
1793
|
+
}
|
|
1794
|
+
declare const SyncAppleSubscriptionRequestSchema: IRuntimeValidationSchema<{
|
|
1795
|
+
providerProductId: IValidationField<string, true>;
|
|
1796
|
+
transactionId: IValidationField<string, true>;
|
|
1797
|
+
originalTransactionId: IValidationField<string | null, false>;
|
|
1798
|
+
signedTransactionInfo: IValidationField<string, true>;
|
|
1799
|
+
}>;
|
|
1800
|
+
type ISyncAppleSubscriptionRequest = TInferValidationSchemaInput<typeof SyncAppleSubscriptionRequestSchema>;
|
|
1801
|
+
declare const SyncGoogleSubscriptionRequestSchema: IRuntimeValidationSchema<{
|
|
1802
|
+
providerProductId: IValidationField<string, true>;
|
|
1803
|
+
purchaseToken: IValidationField<string, true>;
|
|
1804
|
+
packageName: IValidationField<string, true>;
|
|
1805
|
+
providerPriceId: IValidationField<string | null, false>;
|
|
1806
|
+
}>;
|
|
1807
|
+
type ISyncGoogleSubscriptionRequest = TInferValidationSchemaInput<typeof SyncGoogleSubscriptionRequestSchema>;
|
|
1808
|
+
interface ISyncStoreSubscriptionResponse {
|
|
1809
|
+
subscription: ICompanyBillingSummary["subscription"];
|
|
1810
|
+
entitlement: IEntitlementSnapshot;
|
|
1811
|
+
}
|
|
1812
|
+
declare const BillingProviderWebhookRequestSchema: IRuntimeValidationSchema<{
|
|
1813
|
+
providerEventId: IValidationField<string, true>;
|
|
1814
|
+
eventType: IValidationField<string, true>;
|
|
1815
|
+
providerSubscriptionId: IValidationField<string | null, false>;
|
|
1816
|
+
providerTransactionId: IValidationField<string | null, false>;
|
|
1817
|
+
providerRefundId: IValidationField<string | null, false>;
|
|
1818
|
+
payload: IValidationField<Record<string, unknown>, false>;
|
|
1819
|
+
}>;
|
|
1820
|
+
type IBillingProviderWebhookRequest = TInferValidationSchemaInput<typeof BillingProviderWebhookRequestSchema> & {
|
|
1821
|
+
payload?: TJsonObject;
|
|
1822
|
+
};
|
|
1823
|
+
interface IBillingProviderWebhookResponse extends IMessageResponse {
|
|
1824
|
+
}
|
|
1825
|
+
interface IProviderProductLookupRequest {
|
|
1826
|
+
provider: TSubscriptionProvider;
|
|
1827
|
+
providerProductId: string;
|
|
1828
|
+
}
|
|
1829
|
+
interface IProviderProductLookupResponse extends IProviderProduct {
|
|
1830
|
+
}
|
|
1831
|
+
declare const BillingProviderValues: readonly ["STRIPE", "APPLE", "GOOGLE", "MANUAL"];
|
|
1832
|
+
declare const ProviderProductLookupRequestSchema: IRuntimeValidationSchema<{
|
|
1833
|
+
provider: IValidationField<"STRIPE" | "APPLE" | "GOOGLE" | "MANUAL", true>;
|
|
1834
|
+
providerProductId: IValidationField<string, true>;
|
|
1835
|
+
}>;
|
|
1836
|
+
|
|
1837
|
+
declare const SUBSCRIPTION_PLAN: {
|
|
1838
|
+
readonly Free: "FREE";
|
|
1839
|
+
readonly Starter: "STARTER";
|
|
1840
|
+
readonly Pro: "PRO";
|
|
1841
|
+
readonly Business: "BUSINESS";
|
|
1842
|
+
};
|
|
1843
|
+
type TSubscriptionPlan = TRecordValue<typeof SUBSCRIPTION_PLAN>;
|
|
1775
1844
|
declare const SUBSCRIPTION_STATUS: {
|
|
1776
1845
|
readonly ACTIVE: "ACTIVE";
|
|
1777
1846
|
readonly CANCELED: "CANCELED";
|
|
1778
1847
|
readonly EXPIRED: "EXPIRED";
|
|
1779
1848
|
readonly PAST_DUE: "PAST_DUE";
|
|
1780
1849
|
readonly TRIALING: "TRIALING";
|
|
1850
|
+
readonly GRACE_PERIOD: "GRACE_PERIOD";
|
|
1851
|
+
readonly REFUNDED: "REFUNDED";
|
|
1781
1852
|
};
|
|
1782
1853
|
type TSubscriptionStatus = TRecordValue<typeof SUBSCRIPTION_STATUS>;
|
|
1783
1854
|
declare const SUBSCRIPTION_PROVIDER: {
|
|
1784
1855
|
readonly STRIPE: "STRIPE";
|
|
1785
1856
|
readonly APPLE: "APPLE";
|
|
1786
1857
|
readonly GOOGLE: "GOOGLE";
|
|
1858
|
+
readonly MANUAL: "MANUAL";
|
|
1787
1859
|
};
|
|
1788
1860
|
type TSubscriptionProvider = TRecordValue<typeof SUBSCRIPTION_PROVIDER>;
|
|
1789
1861
|
declare const BILLING_PERIOD: {
|
|
@@ -1791,6 +1863,115 @@ declare const BILLING_PERIOD: {
|
|
|
1791
1863
|
readonly YEARLY: "YEARLY";
|
|
1792
1864
|
};
|
|
1793
1865
|
type TBillingPeriod = TRecordValue<typeof BILLING_PERIOD>;
|
|
1866
|
+
declare const REFUND_STATUS: {
|
|
1867
|
+
readonly REQUESTED: "REQUESTED";
|
|
1868
|
+
readonly APPROVED: "APPROVED";
|
|
1869
|
+
readonly DECLINED: "DECLINED";
|
|
1870
|
+
readonly PROCESSED: "PROCESSED";
|
|
1871
|
+
};
|
|
1872
|
+
type TRefundStatus = TRecordValue<typeof REFUND_STATUS>;
|
|
1873
|
+
declare const SUBSCRIPTION_FEATURE: {
|
|
1874
|
+
readonly CreateProperty: "CREATE_PROPERTY";
|
|
1875
|
+
readonly InviteTeamMember: "INVITE_TEAM_MEMBER";
|
|
1876
|
+
readonly CreateChecklistTemplate: "CREATE_CHECKLIST_TEMPLATE";
|
|
1877
|
+
readonly UploadImage: "UPLOAD_IMAGE";
|
|
1878
|
+
};
|
|
1879
|
+
type TSubscriptionFeature = TRecordValue<typeof SUBSCRIPTION_FEATURE>;
|
|
1880
|
+
interface ISubscriptionPlan extends IMetaData {
|
|
1881
|
+
id: string;
|
|
1882
|
+
code: TSubscriptionPlan;
|
|
1883
|
+
displayName: string;
|
|
1884
|
+
propertyLimit: number;
|
|
1885
|
+
teamMemberLimit: number;
|
|
1886
|
+
checklistTemplateLimit: number;
|
|
1887
|
+
imageStorageLimitMb: number;
|
|
1888
|
+
isActive: boolean;
|
|
1889
|
+
}
|
|
1890
|
+
interface IProviderProduct extends IMetaData {
|
|
1891
|
+
id: string;
|
|
1892
|
+
planId: string;
|
|
1893
|
+
provider: TSubscriptionProvider;
|
|
1894
|
+
providerProductId: string;
|
|
1895
|
+
providerPriceId: string | null;
|
|
1896
|
+
billingPeriod: TBillingPeriod;
|
|
1897
|
+
trialDays: number;
|
|
1898
|
+
isActive: boolean;
|
|
1899
|
+
}
|
|
1900
|
+
interface ISubscriptionProductSummary {
|
|
1901
|
+
plan: ISubscriptionPlan;
|
|
1902
|
+
products: IProviderProduct[];
|
|
1903
|
+
}
|
|
1904
|
+
interface IBillingAccount extends IMetaData {
|
|
1905
|
+
id: string;
|
|
1906
|
+
companyId: string;
|
|
1907
|
+
billingAdminUserId: string | null;
|
|
1908
|
+
}
|
|
1909
|
+
interface ICompanySubscription extends IMetaData {
|
|
1910
|
+
id: string;
|
|
1911
|
+
billingAccountId: string;
|
|
1912
|
+
planId: string;
|
|
1913
|
+
provider: TSubscriptionProvider;
|
|
1914
|
+
providerSubscriptionId: string | null;
|
|
1915
|
+
providerOriginalTransactionId: string | null;
|
|
1916
|
+
providerPurchaseToken: string | null;
|
|
1917
|
+
providerCustomerId: string | null;
|
|
1918
|
+
providerPriceId: string | null;
|
|
1919
|
+
status: TSubscriptionStatus;
|
|
1920
|
+
billingPeriod: TBillingPeriod;
|
|
1921
|
+
currentPeriodStart: TDateTimeString | null;
|
|
1922
|
+
currentPeriodEnd: TDateTimeString | null;
|
|
1923
|
+
trialStart: TDateTimeString | null;
|
|
1924
|
+
trialEnd: TDateTimeString | null;
|
|
1925
|
+
cancelAtPeriodEnd: boolean;
|
|
1926
|
+
canceledAt: TDateTimeString | null;
|
|
1927
|
+
refundedAt: TDateTimeString | null;
|
|
1928
|
+
latestEventAt: TDateTimeString | null;
|
|
1929
|
+
}
|
|
1930
|
+
interface ISubscriptionEvent extends IMetaData {
|
|
1931
|
+
id: string;
|
|
1932
|
+
subscriptionId: string | null;
|
|
1933
|
+
provider: TSubscriptionProvider;
|
|
1934
|
+
providerEventId: string;
|
|
1935
|
+
eventType: string;
|
|
1936
|
+
rawPayload: TJsonObject;
|
|
1937
|
+
processedAt: TDateTimeString;
|
|
1938
|
+
}
|
|
1939
|
+
interface IEntitlementSnapshot {
|
|
1940
|
+
id: string;
|
|
1941
|
+
companyId: string;
|
|
1942
|
+
subscriptionId: string | null;
|
|
1943
|
+
planCode: TSubscriptionPlan;
|
|
1944
|
+
status: TSubscriptionStatus;
|
|
1945
|
+
effectiveFrom: TDateTimeString;
|
|
1946
|
+
effectiveUntil: TDateTimeString | null;
|
|
1947
|
+
propertyLimit: number;
|
|
1948
|
+
teamMemberLimit: number;
|
|
1949
|
+
checklistTemplateLimit: number;
|
|
1950
|
+
imageStorageLimitMb: number;
|
|
1951
|
+
sourceEventId: string | null;
|
|
1952
|
+
createdAt: TDateTimeString;
|
|
1953
|
+
}
|
|
1954
|
+
interface IRefund extends IMetaData {
|
|
1955
|
+
id: string;
|
|
1956
|
+
subscriptionId: string;
|
|
1957
|
+
provider: TSubscriptionProvider;
|
|
1958
|
+
providerRefundId: string | null;
|
|
1959
|
+
providerTransactionId: string | null;
|
|
1960
|
+
amount: number | null;
|
|
1961
|
+
currency: string | null;
|
|
1962
|
+
reason: string | null;
|
|
1963
|
+
status: TRefundStatus;
|
|
1964
|
+
refundedAt: TDateTimeString | null;
|
|
1965
|
+
rawPayload: TJsonObject | null;
|
|
1966
|
+
}
|
|
1967
|
+
interface ICompanyBillingSummary {
|
|
1968
|
+
billingAccount: IBillingAccount | null;
|
|
1969
|
+
subscription: ICompanySubscription | null;
|
|
1970
|
+
entitlement: IEntitlementSnapshot;
|
|
1971
|
+
}
|
|
1972
|
+
/**
|
|
1973
|
+
* @deprecated Use ICompanySubscription for company-scoped SaaS access.
|
|
1974
|
+
*/
|
|
1794
1975
|
interface IUserSubscription {
|
|
1795
1976
|
id: string;
|
|
1796
1977
|
userId: string;
|
|
@@ -1987,4 +2168,4 @@ interface ICompleteChecklistItemInput {
|
|
|
1987
2168
|
skipReason?: string;
|
|
1988
2169
|
}
|
|
1989
2170
|
|
|
1990
|
-
export { ACCOUNT_STATUS, ACCOUNT_TYPE, AUTH_STATUS, AcceptInvitationRequestSchema, BILLING_PERIOD, CHECKLIST_EXECUTION_STATUS, COMPANY_RELATIONSHIP_STATUS, COMPANY_TYPES, ChangePasswordRequestSchema, CompanyFilter, CreateCompanyRequestSchema, CreatePropertyRequestSchema, CreateRoomRequestSchema, DAMAGE_SEVERITY, DAMAGE_STATUS, DATABASE_STATUS, ERROR_CODES, ForgotPasswordRequestSchema, HTTP_METHOD, HTTP_STATUS, type IAcceptCompanyInvitationRequest, type IAcceptCompanyInvitationResponse, type IAcceptInvitationRequest, type IAcceptInvitationResponse, type IAcceptInvitationRouteResponse, type IAddChecklistItemRequest, type IAddChecklistItemResponse, type IAddDamageReportCommentRequest, type IAddDamageReportCommentResponse, type IAddDamageReportPhotoRequest, type IAddDamageReportPhotoResponse, type IAddInventoryToPropertyRequest, type IAddInventoryToPropertyResponse, type IAddInventoryToRoomRequest, type IAddInventoryToRoomResponse, type IAddTemplateItemRequest, type IAddTemplateItemResponse, type IApiError, type IApiErrorResponse, type IApiMeta, type IApiResponse, type IApiSuccessResponse, type IAssignDamageReportRequest, type IAssignDamageReportResponse, type IAssignWorkOrderRequest, type IAssignWorkOrderResponse, type IAuthInvitationBaseResponse, type IAuthInvitationIdParams, type IAuthInvitationTokenParams, type IAuthMessageResponse, type IAuthRefreshTokenResponse, type IAuthSession, type IAuthSessionIdParams, type IAuthTokenBundle, type IAuthTokenResponse, type ICancelWorkSessionRequest, type ICancelWorkSessionResponse, type IChangePasswordRequest, type IChangePasswordResponse, type IChecklistAndItemIdParams, type IChecklistExecution, type IChecklistIdParams, type IChecklistItemCompletion, type IChecklistItemOrder, type IChecklistTemplate, type IChecklistTemplateCompanyRouteParams, type IChecklistTemplateItem, type IChecklistTemplateWithItems, type ICloneChecklistRequest, type ICloneChecklistResponse, type ICompany, type ICompanyIdParams, type ICompanyInvitationIdParams, type ICompanyInvitationSummary, type ICompanyInvitationTokenParams, type ICompanyRouteParams, type ICompanyUserRouteParams, type ICompanyUserSummary, type ICompanyWithRelationshipStatus, type ICompanyWithUsers, type ICompleteChecklistExecutionRequest, type ICompleteChecklistExecutionResponse, type ICompleteChecklistItemInput, type ICompleteExecutionItemRequest, type ICompleteExecutionItemResponse, type ICompleteWorkOrderRequest, type ICompleteWorkOrderResponse, type ICompleteWorkSessionRequest, type ICompleteWorkSessionResponse, ICountResponse, type ICreateChecklistRequest, type ICreateChecklistResponse, type ICreateCompanyRequest, type ICreateCompanyResponse, type ICreateCustomChecklistRequest, type ICreateCustomChecklistResponse, type ICreateDamageReportInput, type ICreateDamageReportRequest, type ICreateDamageReportResponse, type ICreateInventoryItemRequest, type ICreateInventoryItemResponse, type ICreatePropertyRequest, type ICreatePropertyResponse, type ICreateRestockOrderRequest, type ICreateRestockOrderResponse, type ICreateRoomChecklistInput, type ICreateRoomChecklistItemInput, type ICreateRoomRequest, type ICreateRoomResponse, type ICreateTemplateInput, type ICreateTemplateItemInput, type ICreateTemplateRequest, type ICreateTemplateResponse, type ICreateTemplateWithItemsRequest, type ICreateTemplateWithItemsResponse, type ICreateWorkOrderInput, type ICreateWorkOrderRequest, type ICreateWorkOrderResponse, type ICreateWorkSessionInput, type ICreateWorkSessionRequest, type ICreateWorkSessionResponse, type IDamageComment, type IDamagePhoto, type IDamageReport, type IDamageReportPhoto, type IDamageReportPropertyRouteParams, type IDamageReportRoomRouteParams, type IDamageReportRouteParams, type IDamageReportStatusHistory, type IDamageReportWorkOrderRouteParams, type IDeclineCompanyInvitationRequest, type IDeclineCompanyInvitationResponse, type IDeleteChecklistItemRequest, type IDeleteChecklistItemResponse, type IDeleteChecklistRequest, type IDeleteChecklistResponse, type IDeleteImageRequest, type IDeleteImageResponse, type IDeleteInventoryItemRequest, type IDeleteInventoryItemResponse, type IDeletePropertyRequest, type IDeletePropertyResponse, type IDeleteRoomRequest, type IDeleteRoomResponse, type IDeleteTemplateItemRequest, type IDeleteTemplateItemResponse, type IDeleteTemplateRequest, type IDeleteTemplateResponse, type IDeleteUserRequest, type IDeleteUserResponse, type IDeviceInfo, type IDuplicateTemplateItemRequest, type IDuplicateTemplateItemResponse, type IEmailValidationResult, IEmptyRouteRequest, type IForgotPasswordRequest, type IForgotPasswordResponse, type IGetActiveWorkSessionRequest, type IGetActiveWorkSessionResponse, type IGetChecklistByIdRequest, type IGetChecklistByIdResponse, type IGetChecklistByRoomIdRequest, type IGetChecklistByRoomIdResponse, type IGetChecklistExecutionByIdRequest, type IGetChecklistExecutionByIdResponse, type IGetChecklistExecutionsRequest, type IGetChecklistExecutionsResponse, type IGetChecklistItemsRequest, type IGetChecklistItemsResponse, type IGetChecklistWithItemsRequest, type IGetChecklistWithItemsResponse, type IGetCompaniesQuery, type IGetCompaniesRequest, type IGetCompaniesResponse, type IGetCompanyByIdRequest, type IGetCompanyByIdResponse, type IGetCompanyUsersRequest, type IGetCompanyUsersResponse, type IGetCurrentUserRequest, type IGetCurrentUserResponse, type IGetCustomChecklistItemsRequest, type IGetCustomChecklistItemsResponse, type IGetDamageReportByIdRequest, type IGetDamageReportByIdResponse, type IGetDamageReportCommentsRequest, type IGetDamageReportCommentsResponse, type IGetDamageReportHistoryRequest, type IGetDamageReportHistoryResponse, type IGetDamageReportPhotosRequest, type IGetDamageReportPhotosResponse, type IGetDamageReportsByPropertyIdRequest, type IGetDamageReportsByPropertyIdResponse, type IGetDamageReportsByRoomIdRequest, type IGetDamageReportsByRoomIdResponse, type IGetDetailedHealthRequest, type IGetDetailedHealthResponse, type IGetDetailedRoomsByPropertyIdRequest, type IGetDetailedRoomsByPropertyIdResponse, type IGetExecutionItemsRequest, type IGetExecutionItemsResponse, type IGetExecutionProgressRequest, type IGetExecutionProgressResponse, type IGetHealthRequest, type IGetHealthResponse, type IGetImagesForEntityResponse, type IGetInventoryByCompanyIdRequest, type IGetInventoryByCompanyIdResponse, type IGetInventoryCountsByExecutionIdRequest, type IGetInventoryCountsByExecutionIdResponse, type IGetInventoryItemByIdRequest, type IGetInventoryItemByIdResponse, type IGetLoginHistoryListResponse, type IGetLoginHistoryRequest, type IGetLoginHistoryResponse, type IGetMeRequest, type IGetMeResponse, type IGetPendingCompanyInvitationsRequest, type IGetPendingCompanyInvitationsResponse, type IGetPendingInvitationsListResponse, type IGetPendingInvitationsRequest, type IGetPendingInvitationsResponse, type IGetPropertiesByCompanyIdRequest, type IGetPropertiesByCompanyIdResponse, type IGetPropertiesRequest, type IGetPropertiesResponse, type IGetPropertyAccessInformationRequest, type IGetPropertyAccessInformationResponse, type IGetPropertyByIdRequest, type IGetPropertyByIdResponse, type IGetPropertyInventoryNeedingRestockRequest, type IGetPropertyInventoryNeedingRestockResponse, type IGetPropertyInventoryRequest, type IGetPropertyInventoryResponse, type IGetPropertyResponse, type IGetRestockOrderItemsRequest, type IGetRestockOrderItemsResponse, type IGetRestockOrdersByCompanyIdRequest, type IGetRestockOrdersByCompanyIdResponse, type IGetRoomByIdRequest, type IGetRoomByIdResponse, type IGetRoomInventoryNeedingRestockRequest, type IGetRoomInventoryNeedingRestockResponse, type IGetRoomInventoryRequest, type IGetRoomInventoryResponse, type IGetRoomsByPropertyIdRequest, type IGetRoomsByPropertyIdResponse, type IGetRoomsRequest, type IGetSessionsRequest, type IGetSessionsResponse, type IGetStaffRequest, type IGetStaffResponse, type IGetTemplateByIdRequest, type IGetTemplateByIdResponse, type IGetTemplateItemsRequest, type IGetTemplateItemsResponse, type IGetTemplateUsageRequest, type IGetTemplateUsageResponse, type IGetTemplateWithItemsRequest, type IGetTemplateWithItemsResponse, type IGetTemplatesByCompanyIdRequest, type IGetTemplatesByCompanyIdResponse, type IGetUserByEmailRequest, type IGetUserByEmailResponse, type IGetUserByIdRequest, type IGetUserByIdResponse, type IGetUserCompaniesRequest, type IGetUserCompaniesResponse, type IGetUserResponse, type IGetUsersByAccountTypeRequest, type IGetUsersByAccountTypeResponse, type IGetWorkOrderByIdRequest, type IGetWorkOrderByIdResponse, type IGetWorkOrdersByPropertyIdRequest, type IGetWorkOrdersByPropertyIdResponse, type IGetWorkSessionByIdRequest, type IGetWorkSessionByIdResponse, type IGetWorkSessionWithExecutionsRequest, type IGetWorkSessionWithExecutionsResponse, type IGetWorkSessionsByPropertyIdRequest, type IGetWorkSessionsByPropertyIdResponse, type IGetWorkSessionsByUserIdRequest, type IGetWorkSessionsByUserIdResponse, type IHealthCheckResponse, type IHealthChecks, type IImage, type IImageCompanyRouteParams, type IImagePropertyRouteParams, type IImageRoomRouteParams, type IImageRouteParams, type IImageUserRouteParams, type IImageWithUrl, type IIncludeInactiveQuery, type IIncludeResolvedQuery, type IInventoryCompanyRouteParams, type IInventoryCount, type IInventoryExecutionRouteParams, type IInventoryItem, type IInventoryItemRouteParams, type IInventoryOrderRouteParams, type IInventoryPropertyRouteParams, type IInventoryRestockOrder, type IInventoryRestockOrderItem, type IInventoryRoomRouteParams, type IInviteCompanyToCompanyRequest, type IInviteCompanyToCompanyResponse, type IInviteUserToCompanyRequest, type IInviteUserToCompanyResponse, type IJobFilterValues, type ILimitQuery, type ILoginCredentials, type ILoginRequest, type ILoginResponse, type ILogoutAllRequest, type ILogoutAllResponse, type ILogoutRequest, type ILogoutResponse, IMAGE_ENTITY_TYPE, IMessageResponse, IMetaData, type IMissingFieldsErrorDetail, INVENTORY_ITEM_TYPE, INVENTORY_RESTOCK_ORDER_STATUS, INVENTORY_UNITS, INVITATION_STATUS, type IPasswordValidationResult, type IPasswordValidationRules, type IProperty, type IPropertyAccessInformation, type IPropertyDetail, type IPropertyIdParams, type IPropertyInventory, type IPropertySummary, type IRateLimitErrorDetail, type IRateLimitStatus, type IRecordInventoryCountRequest, type IRecordInventoryCountResponse, type IRefreshSessionRequest, type IRefreshSessionResponse, type IRefreshTokenData, type IRegisterCredentials, type IRegisterRequest, type IRegisterResponse, type IRegisterWithInvitationRequest, type IRegisterWithInvitationResponse, type IReorderChecklistItemsRequest, type IReorderChecklistItemsResponse, type IReorderTemplateItemsRequest, type IReorderTemplateItemsResponse, type IResolveDamageReportRequest, type IResolveDamageReportResponse, type IRestockOrderItemInput, type IRevokeCompanyInvitationRequest, type IRevokeCompanyInvitationResponse, type IRevokeInvitationRequest, type IRevokeInvitationResponse, type IRevokeSessionRequest, type IRevokeSessionResponse, type IRoom, type IRoomChecklist, type IRoomChecklistItem, type IRoomChecklistRoomRouteParams, type IRoomChecklistWithItems, type IRoomInventory, type IRoomInventoryIdParams, type IRoomPropertyRouteParams, type IRoomRouteParams, IRuntimeValidationSchema, ISelectOption, type ISetAuthSessionParams, type ISkipChecklistExecutionRequest, type ISkipChecklistExecutionResponse, type IStartChecklistExecutionRequest, type IStartChecklistExecutionResponse, type IStoredAuthSession, ISuccessResponse, type ITemplateAndItemIdParams, type ITemplateIdParams, type ITemplateItemIdParams, type ITemplateItemOrder, type IToggleTemplateActiveRequest, type IToggleTemplateActiveResponse, type ITypedApiError, type IUpdateChecklistItemRequest, type IUpdateChecklistItemResponse, type IUpdateChecklistRequest, type IUpdateChecklistResponse, type IUpdateCompanyRequest, type IUpdateCompanyResponse, type IUpdateCurrentUserRequest, type IUpdateDamageReportRequest, type IUpdateDamageReportResponse, type IUpdateDamageReportStatusRequest, type IUpdateDamageReportStatusResponse, type IUpdateInventoryItemRequest, type IUpdateInventoryItemResponse, type IUpdatePropertyAccessInformationRequest, type IUpdatePropertyAccessInformationResponse, type IUpdatePropertyRequest, type IUpdatePropertyResponse, type IUpdateRestockOrderStatusRequest, type IUpdateRestockOrderStatusResponse, type IUpdateRoomInventoryRequest, type IUpdateRoomInventoryResponse, type IUpdateRoomRequest, type IUpdateRoomResponse, type IUpdateTemplateItemRequest, type IUpdateTemplateItemResponse, type IUpdateTemplateRequest, type IUpdateTemplateResponse, type IUpdateUserRequest, type IUpdateUserResponse, type IUpdateWorkOrderRequest, type IUpdateWorkOrderResponse, type IUpdateWorkOrderStatusRequest, type IUpdateWorkOrderStatusResponse, type IUpdateWorkSessionRequest, type IUpdateWorkSessionResponse, type IUploadImagesResponse, type IUploadProfileImageRequest, type IUploadProfileImageResponse, type IUser, type IUserIdParams, type IUserSession, type IUserSubscription, type IValidateCompanyInvitationRequest, type IValidateCompanyInvitationResponse, type IValidateInvitationRequest, type IValidateInvitationResponse, type IValidationErrorDetail, IValidationField, type IWorkOrder, type IWorkSession, type IWorkSessionExecutionRouteParams, type IWorkSessionPropertyRouteParams, type IWorkSessionRouteParams, type IWorkSessionUserRouteParams, type IWorkSessionWithExecutions, InviteCompanyToCompanyRequestSchema, InviteUserToCompanyRequestSchema, LANGUAGE, LoginRequestSchema, LogoutRequestSchema, PROPERTY_STATUS, PROPERTY_TYPES, PropertyStatusOptions, PropertyTypeOptions, ROOM_TYPE, RefreshSessionRequestSchema, RegisterRequestSchema, RegisterWithInvitationRequestSchema, SERVER_STATUS, SUBSCRIPTION_PROVIDER, SUBSCRIPTION_STATUS, type TAccountStatus, type TAccountType, type TApiErrorDetails, type TAuthStatus, type TBillingPeriod, type TChecklistExecutionStatus, type TCompanyFilter, type TCompanyRelationshipStatus, type TCompanyType, type TDamageSeverity, type TDamageStatus, type TDatabaseStatus, TDateTimeString, TEnvironment, type TErrorCode, type TErrorResponseDetail, type THttpMethod, type THttpStatusCode, TInferValidationSchemaInput, type TInventoryItemType, type TInventoryRestockOrderStatus, type TInventoryUnitType, type TInvitationStatus, TJsonObject, TJsonValue, type TLanguage, type TMissingFieldsError, type TPropertyStatus, type TPropertyType, type TRateLimitError, TRecordValue, type TRoomType, type TServerStatus, TServiceType, TStatus, type TStoredImageEntityType, type TSubscriptionProvider, type TSubscriptionStatus, TUSStateCode, type TValidationError, type TWorkOrderPriority, type TWorkOrderStatus, type TWorkSessionStatus, UpdateCompanyRequestSchema, UpdateCurrentUserRequestSchema, UpdatePropertyAccessInformationRequestSchema, UpdatePropertyRequestSchema, UpdateRoomRequestSchema, UpdateUserRequestSchema, WORK_ORDER_PRIORITY, WORK_ORDER_STATUS, WORK_SESSION_STATUS, isAuthError, isMissingFieldsError, isRateLimitError, isValidationError };
|
|
2171
|
+
export { ACCOUNT_STATUS, ACCOUNT_TYPE, AUTH_STATUS, AcceptInvitationRequestSchema, BILLING_PERIOD, BillingProviderValues, BillingProviderWebhookRequestSchema, CHECKLIST_EXECUTION_STATUS, COMPANY_RELATIONSHIP_STATUS, COMPANY_TYPES, ChangePasswordRequestSchema, CompanyFilter, CreateCompanyRequestSchema, CreatePropertyRequestSchema, CreateRoomRequestSchema, CreateStripeCheckoutSessionRequestSchema, DAMAGE_SEVERITY, DAMAGE_STATUS, DATABASE_STATUS, ERROR_CODES, ForgotPasswordRequestSchema, HTTP_METHOD, HTTP_STATUS, type IAcceptCompanyInvitationRequest, type IAcceptCompanyInvitationResponse, type IAcceptInvitationRequest, type IAcceptInvitationResponse, type IAcceptInvitationRouteResponse, type IAddChecklistItemRequest, type IAddChecklistItemResponse, type IAddDamageReportCommentRequest, type IAddDamageReportCommentResponse, type IAddDamageReportPhotoRequest, type IAddDamageReportPhotoResponse, type IAddInventoryToPropertyRequest, type IAddInventoryToPropertyResponse, type IAddInventoryToRoomRequest, type IAddInventoryToRoomResponse, type IAddTemplateItemRequest, type IAddTemplateItemResponse, type IApiError, type IApiErrorResponse, type IApiMeta, type IApiResponse, type IApiSuccessResponse, type IAssignDamageReportRequest, type IAssignDamageReportResponse, type IAssignWorkOrderRequest, type IAssignWorkOrderResponse, type IAuthInvitationBaseResponse, type IAuthInvitationIdParams, type IAuthInvitationTokenParams, type IAuthMessageResponse, type IAuthRefreshTokenResponse, type IAuthSession, type IAuthSessionIdParams, type IAuthTokenBundle, type IAuthTokenResponse, type IBillingAccount, type IBillingCompanyRouteParams, type IBillingProviderWebhookRequest, type IBillingProviderWebhookResponse, type ICancelWorkSessionRequest, type ICancelWorkSessionResponse, type IChangePasswordRequest, type IChangePasswordResponse, type IChecklistAndItemIdParams, type IChecklistExecution, type IChecklistIdParams, type IChecklistItemCompletion, type IChecklistItemOrder, type IChecklistTemplate, type IChecklistTemplateCompanyRouteParams, type IChecklistTemplateItem, type IChecklistTemplateWithItems, type ICloneChecklistRequest, type ICloneChecklistResponse, type ICompany, type ICompanyBillingSummary, type ICompanyIdParams, type ICompanyInvitationIdParams, type ICompanyInvitationSummary, type ICompanyInvitationTokenParams, type ICompanyRouteParams, type ICompanySubscription, type ICompanyUserRouteParams, type ICompanyUserSummary, type ICompanyWithRelationshipStatus, type ICompanyWithUsers, type ICompleteChecklistExecutionRequest, type ICompleteChecklistExecutionResponse, type ICompleteChecklistItemInput, type ICompleteExecutionItemRequest, type ICompleteExecutionItemResponse, type ICompleteWorkOrderRequest, type ICompleteWorkOrderResponse, type ICompleteWorkSessionRequest, type ICompleteWorkSessionResponse, ICountResponse, type ICreateChecklistRequest, type ICreateChecklistResponse, type ICreateCompanyRequest, type ICreateCompanyResponse, type ICreateCustomChecklistRequest, type ICreateCustomChecklistResponse, type ICreateDamageReportInput, type ICreateDamageReportRequest, type ICreateDamageReportResponse, type ICreateInventoryItemRequest, type ICreateInventoryItemResponse, type ICreatePropertyRequest, type ICreatePropertyResponse, type ICreateRestockOrderRequest, type ICreateRestockOrderResponse, type ICreateRoomChecklistInput, type ICreateRoomChecklistItemInput, type ICreateRoomRequest, type ICreateRoomResponse, type ICreateStripeCheckoutSessionRequest, type ICreateStripeCheckoutSessionResponse, type ICreateTemplateInput, type ICreateTemplateItemInput, type ICreateTemplateRequest, type ICreateTemplateResponse, type ICreateTemplateWithItemsRequest, type ICreateTemplateWithItemsResponse, type ICreateWorkOrderInput, type ICreateWorkOrderRequest, type ICreateWorkOrderResponse, type ICreateWorkSessionInput, type ICreateWorkSessionRequest, type ICreateWorkSessionResponse, type IDamageComment, type IDamagePhoto, type IDamageReport, type IDamageReportPhoto, type IDamageReportPropertyRouteParams, type IDamageReportRoomRouteParams, type IDamageReportRouteParams, type IDamageReportStatusHistory, type IDamageReportWorkOrderRouteParams, type IDeclineCompanyInvitationRequest, type IDeclineCompanyInvitationResponse, type IDeleteChecklistItemRequest, type IDeleteChecklistItemResponse, type IDeleteChecklistRequest, type IDeleteChecklistResponse, type IDeleteImageRequest, type IDeleteImageResponse, type IDeleteInventoryItemRequest, type IDeleteInventoryItemResponse, type IDeletePropertyRequest, type IDeletePropertyResponse, type IDeleteRoomRequest, type IDeleteRoomResponse, type IDeleteTemplateItemRequest, type IDeleteTemplateItemResponse, type IDeleteTemplateRequest, type IDeleteTemplateResponse, type IDeleteUserRequest, type IDeleteUserResponse, type IDeviceInfo, type IDuplicateTemplateItemRequest, type IDuplicateTemplateItemResponse, type IEmailValidationResult, IEmptyRouteRequest, type IEntitlementSnapshot, type IForgotPasswordRequest, type IForgotPasswordResponse, type IGetActiveWorkSessionRequest, type IGetActiveWorkSessionResponse, type IGetBillingProductsRequest, type IGetBillingProductsResponse, type IGetChecklistByIdRequest, type IGetChecklistByIdResponse, type IGetChecklistByRoomIdRequest, type IGetChecklistByRoomIdResponse, type IGetChecklistExecutionByIdRequest, type IGetChecklistExecutionByIdResponse, type IGetChecklistExecutionsRequest, type IGetChecklistExecutionsResponse, type IGetChecklistItemsRequest, type IGetChecklistItemsResponse, type IGetChecklistWithItemsRequest, type IGetChecklistWithItemsResponse, type IGetCompaniesQuery, type IGetCompaniesRequest, type IGetCompaniesResponse, type IGetCompanyBillingSummaryRequest, type IGetCompanyBillingSummaryResponse, type IGetCompanyByIdRequest, type IGetCompanyByIdResponse, type IGetCompanyUsersRequest, type IGetCompanyUsersResponse, type IGetCurrentUserRequest, type IGetCurrentUserResponse, type IGetCustomChecklistItemsRequest, type IGetCustomChecklistItemsResponse, type IGetDamageReportByIdRequest, type IGetDamageReportByIdResponse, type IGetDamageReportCommentsRequest, type IGetDamageReportCommentsResponse, type IGetDamageReportHistoryRequest, type IGetDamageReportHistoryResponse, type IGetDamageReportPhotosRequest, type IGetDamageReportPhotosResponse, type IGetDamageReportsByPropertyIdRequest, type IGetDamageReportsByPropertyIdResponse, type IGetDamageReportsByRoomIdRequest, type IGetDamageReportsByRoomIdResponse, type IGetDetailedHealthRequest, type IGetDetailedHealthResponse, type IGetDetailedRoomsByPropertyIdRequest, type IGetDetailedRoomsByPropertyIdResponse, type IGetExecutionItemsRequest, type IGetExecutionItemsResponse, type IGetExecutionProgressRequest, type IGetExecutionProgressResponse, type IGetHealthRequest, type IGetHealthResponse, type IGetImagesForEntityResponse, type IGetInventoryByCompanyIdRequest, type IGetInventoryByCompanyIdResponse, type IGetInventoryCountsByExecutionIdRequest, type IGetInventoryCountsByExecutionIdResponse, type IGetInventoryItemByIdRequest, type IGetInventoryItemByIdResponse, type IGetLoginHistoryListResponse, type IGetLoginHistoryRequest, type IGetLoginHistoryResponse, type IGetMeRequest, type IGetMeResponse, type IGetPendingCompanyInvitationsRequest, type IGetPendingCompanyInvitationsResponse, type IGetPendingInvitationsListResponse, type IGetPendingInvitationsRequest, type IGetPendingInvitationsResponse, type IGetPropertiesByCompanyIdRequest, type IGetPropertiesByCompanyIdResponse, type IGetPropertiesRequest, type IGetPropertiesResponse, type IGetPropertyAccessInformationRequest, type IGetPropertyAccessInformationResponse, type IGetPropertyByIdRequest, type IGetPropertyByIdResponse, type IGetPropertyInventoryNeedingRestockRequest, type IGetPropertyInventoryNeedingRestockResponse, type IGetPropertyInventoryRequest, type IGetPropertyInventoryResponse, type IGetPropertyResponse, type IGetRestockOrderItemsRequest, type IGetRestockOrderItemsResponse, type IGetRestockOrdersByCompanyIdRequest, type IGetRestockOrdersByCompanyIdResponse, type IGetRoomByIdRequest, type IGetRoomByIdResponse, type IGetRoomInventoryNeedingRestockRequest, type IGetRoomInventoryNeedingRestockResponse, type IGetRoomInventoryRequest, type IGetRoomInventoryResponse, type IGetRoomsByPropertyIdRequest, type IGetRoomsByPropertyIdResponse, type IGetRoomsRequest, type IGetSessionsRequest, type IGetSessionsResponse, type IGetStaffRequest, type IGetStaffResponse, type IGetTemplateByIdRequest, type IGetTemplateByIdResponse, type IGetTemplateItemsRequest, type IGetTemplateItemsResponse, type IGetTemplateUsageRequest, type IGetTemplateUsageResponse, type IGetTemplateWithItemsRequest, type IGetTemplateWithItemsResponse, type IGetTemplatesByCompanyIdRequest, type IGetTemplatesByCompanyIdResponse, type IGetUserByEmailRequest, type IGetUserByEmailResponse, type IGetUserByIdRequest, type IGetUserByIdResponse, type IGetUserCompaniesRequest, type IGetUserCompaniesResponse, type IGetUserResponse, type IGetUsersByAccountTypeRequest, type IGetUsersByAccountTypeResponse, type IGetWorkOrderByIdRequest, type IGetWorkOrderByIdResponse, type IGetWorkOrdersByPropertyIdRequest, type IGetWorkOrdersByPropertyIdResponse, type IGetWorkSessionByIdRequest, type IGetWorkSessionByIdResponse, type IGetWorkSessionWithExecutionsRequest, type IGetWorkSessionWithExecutionsResponse, type IGetWorkSessionsByPropertyIdRequest, type IGetWorkSessionsByPropertyIdResponse, type IGetWorkSessionsByUserIdRequest, type IGetWorkSessionsByUserIdResponse, type IHealthCheckResponse, type IHealthChecks, type IImage, type IImageCompanyRouteParams, type IImagePropertyRouteParams, type IImageRoomRouteParams, type IImageRouteParams, type IImageUserRouteParams, type IImageWithUrl, type IIncludeInactiveQuery, type IIncludeResolvedQuery, type IInventoryCompanyRouteParams, type IInventoryCount, type IInventoryExecutionRouteParams, type IInventoryItem, type IInventoryItemRouteParams, type IInventoryOrderRouteParams, type IInventoryPropertyRouteParams, type IInventoryRestockOrder, type IInventoryRestockOrderItem, type IInventoryRoomRouteParams, type IInviteCompanyToCompanyRequest, type IInviteCompanyToCompanyResponse, type IInviteUserToCompanyRequest, type IInviteUserToCompanyResponse, type IJobFilterValues, type ILimitQuery, type ILoginCredentials, type ILoginRequest, type ILoginResponse, type ILogoutAllRequest, type ILogoutAllResponse, type ILogoutRequest, type ILogoutResponse, IMAGE_ENTITY_TYPE, IMessageResponse, IMetaData, type IMissingFieldsErrorDetail, INVENTORY_ITEM_TYPE, INVENTORY_RESTOCK_ORDER_STATUS, INVENTORY_UNITS, INVITATION_STATUS, type IPasswordValidationResult, type IPasswordValidationRules, type IProperty, type IPropertyAccessInformation, type IPropertyDetail, type IPropertyIdParams, type IPropertyInventory, type IPropertySummary, type IProviderProduct, type IProviderProductLookupRequest, type IProviderProductLookupResponse, type IRateLimitErrorDetail, type IRateLimitStatus, type IRecordInventoryCountRequest, type IRecordInventoryCountResponse, type IRefreshSessionRequest, type IRefreshSessionResponse, type IRefreshTokenData, type IRefund, type IRegisterCredentials, type IRegisterRequest, type IRegisterResponse, type IRegisterWithInvitationRequest, type IRegisterWithInvitationResponse, type IReorderChecklistItemsRequest, type IReorderChecklistItemsResponse, type IReorderTemplateItemsRequest, type IReorderTemplateItemsResponse, type IResolveDamageReportRequest, type IResolveDamageReportResponse, type IRestockOrderItemInput, type IRevokeCompanyInvitationRequest, type IRevokeCompanyInvitationResponse, type IRevokeInvitationRequest, type IRevokeInvitationResponse, type IRevokeSessionRequest, type IRevokeSessionResponse, type IRoom, type IRoomChecklist, type IRoomChecklistItem, type IRoomChecklistRoomRouteParams, type IRoomChecklistWithItems, type IRoomInventory, type IRoomInventoryIdParams, type IRoomPropertyRouteParams, type IRoomRouteParams, IRuntimeValidationSchema, ISelectOption, type ISetAuthSessionParams, type ISkipChecklistExecutionRequest, type ISkipChecklistExecutionResponse, type IStartChecklistExecutionRequest, type IStartChecklistExecutionResponse, type IStoredAuthSession, type ISubscriptionEvent, type ISubscriptionPlan, type ISubscriptionProductSummary, ISuccessResponse, type ISyncAppleSubscriptionRequest, type ISyncGoogleSubscriptionRequest, type ISyncStoreSubscriptionResponse, type ITemplateAndItemIdParams, type ITemplateIdParams, type ITemplateItemIdParams, type ITemplateItemOrder, type IToggleTemplateActiveRequest, type IToggleTemplateActiveResponse, type ITypedApiError, type IUpdateChecklistItemRequest, type IUpdateChecklistItemResponse, type IUpdateChecklistRequest, type IUpdateChecklistResponse, type IUpdateCompanyRequest, type IUpdateCompanyResponse, type IUpdateCurrentUserRequest, type IUpdateDamageReportRequest, type IUpdateDamageReportResponse, type IUpdateDamageReportStatusRequest, type IUpdateDamageReportStatusResponse, type IUpdateInventoryItemRequest, type IUpdateInventoryItemResponse, type IUpdatePropertyAccessInformationRequest, type IUpdatePropertyAccessInformationResponse, type IUpdatePropertyRequest, type IUpdatePropertyResponse, type IUpdateRestockOrderStatusRequest, type IUpdateRestockOrderStatusResponse, type IUpdateRoomInventoryRequest, type IUpdateRoomInventoryResponse, type IUpdateRoomRequest, type IUpdateRoomResponse, type IUpdateTemplateItemRequest, type IUpdateTemplateItemResponse, type IUpdateTemplateRequest, type IUpdateTemplateResponse, type IUpdateUserRequest, type IUpdateUserResponse, type IUpdateWorkOrderRequest, type IUpdateWorkOrderResponse, type IUpdateWorkOrderStatusRequest, type IUpdateWorkOrderStatusResponse, type IUpdateWorkSessionRequest, type IUpdateWorkSessionResponse, type IUploadImagesResponse, type IUploadProfileImageRequest, type IUploadProfileImageResponse, type IUser, type IUserIdParams, type IUserSession, type IUserSubscription, type IValidateCompanyInvitationRequest, type IValidateCompanyInvitationResponse, type IValidateInvitationRequest, type IValidateInvitationResponse, type IValidationErrorDetail, IValidationField, type IWorkOrder, type IWorkSession, type IWorkSessionExecutionRouteParams, type IWorkSessionPropertyRouteParams, type IWorkSessionRouteParams, type IWorkSessionUserRouteParams, type IWorkSessionWithExecutions, InviteCompanyToCompanyRequestSchema, InviteUserToCompanyRequestSchema, LANGUAGE, LoginRequestSchema, LogoutRequestSchema, PROPERTY_STATUS, PROPERTY_TYPES, PropertyStatusOptions, PropertyTypeOptions, ProviderProductLookupRequestSchema, REFUND_STATUS, ROOM_TYPE, RefreshSessionRequestSchema, RegisterRequestSchema, RegisterWithInvitationRequestSchema, SERVER_STATUS, SUBSCRIPTION_FEATURE, SUBSCRIPTION_PLAN, SUBSCRIPTION_PROVIDER, SUBSCRIPTION_STATUS, SyncAppleSubscriptionRequestSchema, SyncGoogleSubscriptionRequestSchema, type TAccountStatus, type TAccountType, type TApiErrorDetails, type TAuthStatus, type TBillingPeriod, type TChecklistExecutionStatus, type TCompanyFilter, type TCompanyRelationshipStatus, type TCompanyType, type TDamageSeverity, type TDamageStatus, type TDatabaseStatus, TDateTimeString, TEnvironment, type TErrorCode, type TErrorResponseDetail, type THttpMethod, type THttpStatusCode, TInferValidationSchemaInput, type TInventoryItemType, type TInventoryRestockOrderStatus, type TInventoryUnitType, type TInvitationStatus, TJsonObject, TJsonValue, type TLanguage, type TMissingFieldsError, type TPropertyStatus, type TPropertyType, type TRateLimitError, TRecordValue, type TRefundStatus, type TRoomType, type TServerStatus, TServiceType, TStatus, type TStoredImageEntityType, type TSubscriptionFeature, type TSubscriptionPlan, type TSubscriptionProvider, type TSubscriptionStatus, TUSStateCode, type TValidationError, type TWorkOrderPriority, type TWorkOrderStatus, type TWorkSessionStatus, UpdateCompanyRequestSchema, UpdateCurrentUserRequestSchema, UpdatePropertyAccessInformationRequestSchema, UpdatePropertyRequestSchema, UpdateRoomRequestSchema, UpdateUserRequestSchema, WORK_ORDER_PRIORITY, WORK_ORDER_STATUS, WORK_SESSION_STATUS, isAuthError, isMissingFieldsError, isRateLimitError, isValidationError };
|