@tellescope/react-components 1.162.0 → 1.164.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/Forms/inputs.d.ts +2 -1
- package/lib/cjs/Forms/inputs.d.ts.map +1 -1
- package/lib/cjs/Forms/inputs.js +23 -7
- package/lib/cjs/Forms/inputs.js.map +1 -1
- package/lib/cjs/inputs.js +1 -1
- package/lib/cjs/inputs.js.map +1 -1
- package/lib/cjs/state.d.ts +115 -0
- package/lib/cjs/state.d.ts.map +1 -1
- package/lib/cjs/state.js +19 -3
- package/lib/cjs/state.js.map +1 -1
- package/lib/esm/Forms/inputs.d.ts +2 -1
- package/lib/esm/Forms/inputs.d.ts.map +1 -1
- package/lib/esm/Forms/inputs.js +21 -6
- package/lib/esm/Forms/inputs.js.map +1 -1
- package/lib/esm/inputs.js +1 -1
- package/lib/esm/inputs.js.map +1 -1
- package/lib/esm/inputs.native.d.ts +0 -1
- package/lib/esm/inputs.native.d.ts.map +1 -1
- package/lib/esm/state.d.ts +119 -4
- package/lib/esm/state.d.ts.map +1 -1
- package/lib/esm/state.js +15 -0
- package/lib/esm/state.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/Forms/inputs.tsx +43 -4
- package/src/inputs.tsx +1 -1
- package/src/state.tsx +22 -0
package/lib/esm/state.d.ts
CHANGED
|
@@ -7,6 +7,10 @@ import { LoadFunction, Session, EnduserSession } from '@tellescope/sdk';
|
|
|
7
7
|
import { ReadFilter, SortBy } from '@tellescope/types-models';
|
|
8
8
|
export declare const resetStateAction: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"cache/reset">;
|
|
9
9
|
export declare const TellescopeStoreContext: React.Context<ReactReduxContextValue<import("@reduxjs/toolkit").ThunkDispatch<{
|
|
10
|
+
enduser_eligibility_results: LoadedData<(import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
11
|
+
id: string;
|
|
12
|
+
createdAt: Date;
|
|
13
|
+
})[]>;
|
|
10
14
|
integration_logs: LoadedData<(import("@tellescope/types-models").IntegrationLog & {
|
|
11
15
|
id: string;
|
|
12
16
|
createdAt: Date;
|
|
@@ -331,6 +335,10 @@ export declare const TellescopeStoreContext: React.Context<ReactReduxContextValu
|
|
|
331
335
|
})[]>;
|
|
332
336
|
}, undefined, import("redux").AnyAction> & import("redux").Dispatch<import("redux").AnyAction>, import("redux").AnyAction>>;
|
|
333
337
|
export declare const createTellescopeSelector: () => <Selected extends unknown>(selector: (state: import("@reduxjs/toolkit").ThunkDispatch<{
|
|
338
|
+
enduser_eligibility_results: LoadedData<(import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
339
|
+
id: string;
|
|
340
|
+
createdAt: Date;
|
|
341
|
+
})[]>;
|
|
334
342
|
integration_logs: LoadedData<(import("@tellescope/types-models").IntegrationLog & {
|
|
335
343
|
id: string;
|
|
336
344
|
createdAt: Date;
|
|
@@ -756,6 +764,10 @@ export type ChatRoomDisplayInfo = {
|
|
|
756
764
|
};
|
|
757
765
|
export declare const sharedConfig: {
|
|
758
766
|
reducer: {
|
|
767
|
+
enduser_eligibility_results: import("redux").Reducer<LoadedData<(import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
768
|
+
id: string;
|
|
769
|
+
createdAt: Date;
|
|
770
|
+
})[]>, import("redux").AnyAction>;
|
|
759
771
|
integration_logs: import("redux").Reducer<LoadedData<(import("@tellescope/types-models").IntegrationLog & {
|
|
760
772
|
id: string;
|
|
761
773
|
createdAt: Date;
|
|
@@ -1118,7 +1130,10 @@ export declare const lastActiveForSync: {
|
|
|
1118
1130
|
export declare const useDataSync____internal: () => {
|
|
1119
1131
|
setLoadTiming: (key: string, loadTimeInMS: number) => void;
|
|
1120
1132
|
setHandler: (key: string, handler: undefined | (() => void)) => void;
|
|
1121
|
-
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").
|
|
1133
|
+
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
1134
|
+
id: string;
|
|
1135
|
+
createdAt: Date;
|
|
1136
|
+
}) | (import("@tellescope/types-models").CallHoldQueue & {
|
|
1122
1137
|
id: string;
|
|
1123
1138
|
createdAt: Date;
|
|
1124
1139
|
}) | (import("@tellescope/types-models").EnduserEncounter & {
|
|
@@ -1369,7 +1384,10 @@ export declare const useDataSync____internal: () => {
|
|
|
1369
1384
|
createdAt: Date;
|
|
1370
1385
|
}))[];
|
|
1371
1386
|
getDeleted: <T_1 extends string>(modelName: T_1) => string[];
|
|
1372
|
-
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").
|
|
1387
|
+
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
1388
|
+
id: string;
|
|
1389
|
+
createdAt: Date;
|
|
1390
|
+
}) | (import("@tellescope/types-models").CallHoldQueue & {
|
|
1373
1391
|
id: string;
|
|
1374
1392
|
createdAt: Date;
|
|
1375
1393
|
}) | (import("@tellescope/types-models").EnduserEncounter & {
|
|
@@ -1627,7 +1645,10 @@ export declare const WithDataSync: ({ children }: {
|
|
|
1627
1645
|
export declare const useSyncContext: () => {
|
|
1628
1646
|
setLoadTiming: (key: string, loadTimeInMS: number) => void;
|
|
1629
1647
|
setHandler: (key: string, handler: undefined | (() => void)) => void;
|
|
1630
|
-
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").
|
|
1648
|
+
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
1649
|
+
id: string;
|
|
1650
|
+
createdAt: Date;
|
|
1651
|
+
}) | (import("@tellescope/types-models").CallHoldQueue & {
|
|
1631
1652
|
id: string;
|
|
1632
1653
|
createdAt: Date;
|
|
1633
1654
|
}) | (import("@tellescope/types-models").EnduserEncounter & {
|
|
@@ -1878,7 +1899,10 @@ export declare const useSyncContext: () => {
|
|
|
1878
1899
|
createdAt: Date;
|
|
1879
1900
|
}))[];
|
|
1880
1901
|
getDeleted: <T_1 extends string>(modelName: T_1) => string[];
|
|
1881
|
-
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").
|
|
1902
|
+
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
1903
|
+
id: string;
|
|
1904
|
+
createdAt: Date;
|
|
1905
|
+
}) | (import("@tellescope/types-models").CallHoldQueue & {
|
|
1882
1906
|
id: string;
|
|
1883
1907
|
createdAt: Date;
|
|
1884
1908
|
}) | (import("@tellescope/types-models").EnduserEncounter & {
|
|
@@ -2204,6 +2228,19 @@ export declare const useChatRoomDisplayInfo: (roomId: string, options?: HookOpti
|
|
|
2204
2228
|
[index: string]: UserDisplayInfo;
|
|
2205
2229
|
}>];
|
|
2206
2230
|
export declare const useUserAndEnduserDisplayInfo: () => Indexable<UserDisplayInfo>;
|
|
2231
|
+
export declare const useEnduserEligibilityResults: (options?: HookOptions<import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
2232
|
+
id: string;
|
|
2233
|
+
createdAt: Date;
|
|
2234
|
+
}>) => ListStateReturnType<import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
2235
|
+
id: string;
|
|
2236
|
+
createdAt: Date;
|
|
2237
|
+
}, import("@tellescope/types-client").CreateFields<"enduser_eligibility_results", import("@tellescope/types-models").EnduserEligibilityResult & {
|
|
2238
|
+
id: string;
|
|
2239
|
+
createdAt: Date;
|
|
2240
|
+
}> & {
|
|
2241
|
+
sharedWithOrganizations?: string[][] | undefined;
|
|
2242
|
+
_overrideUnique?: boolean | undefined;
|
|
2243
|
+
}>;
|
|
2207
2244
|
export declare const useSuggestedContacts: (options?: HookOptions<import("@tellescope/types-models").SuggestedContact & {
|
|
2208
2245
|
id: string;
|
|
2209
2246
|
createdAt: Date;
|
|
@@ -2215,6 +2252,7 @@ export declare const useSuggestedContacts: (options?: HookOptions<import("@telle
|
|
|
2215
2252
|
createdAt: Date;
|
|
2216
2253
|
}> & {
|
|
2217
2254
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2255
|
+
_overrideUnique?: boolean | undefined;
|
|
2218
2256
|
}>;
|
|
2219
2257
|
export declare const useFaxLogs: (options?: HookOptions<import("@tellescope/types-models").FaxLog & {
|
|
2220
2258
|
id: string;
|
|
@@ -2227,6 +2265,7 @@ export declare const useFaxLogs: (options?: HookOptions<import("@tellescope/type
|
|
|
2227
2265
|
createdAt: Date;
|
|
2228
2266
|
}> & {
|
|
2229
2267
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2268
|
+
_overrideUnique?: boolean | undefined;
|
|
2230
2269
|
}>;
|
|
2231
2270
|
export declare const useMessageTemplateSnippets: (options?: HookOptions<import("@tellescope/types-models").MessageTemplateSnippet & {
|
|
2232
2271
|
id: string;
|
|
@@ -2239,6 +2278,7 @@ export declare const useMessageTemplateSnippets: (options?: HookOptions<import("
|
|
|
2239
2278
|
createdAt: Date;
|
|
2240
2279
|
}> & {
|
|
2241
2280
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2281
|
+
_overrideUnique?: boolean | undefined;
|
|
2242
2282
|
}>;
|
|
2243
2283
|
export declare const usePortalBrandings: (options?: HookOptions<import("@tellescope/types-models").PortalBranding & {
|
|
2244
2284
|
id: string;
|
|
@@ -2251,6 +2291,7 @@ export declare const usePortalBrandings: (options?: HookOptions<import("@tellesc
|
|
|
2251
2291
|
createdAt: Date;
|
|
2252
2292
|
}> & {
|
|
2253
2293
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2294
|
+
_overrideUnique?: boolean | undefined;
|
|
2254
2295
|
}>;
|
|
2255
2296
|
export declare const useAllergyCodes: (options?: HookOptions<import("@tellescope/types-models").AllergyCode & {
|
|
2256
2297
|
id: string;
|
|
@@ -2263,6 +2304,7 @@ export declare const useAllergyCodes: (options?: HookOptions<import("@tellescope
|
|
|
2263
2304
|
createdAt: Date;
|
|
2264
2305
|
}> & {
|
|
2265
2306
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2307
|
+
_overrideUnique?: boolean | undefined;
|
|
2266
2308
|
}>;
|
|
2267
2309
|
export declare const useDiagnosisCodes: (options?: HookOptions<import("@tellescope/types-models").DiagnosisCode & {
|
|
2268
2310
|
id: string;
|
|
@@ -2275,6 +2317,7 @@ export declare const useDiagnosisCodes: (options?: HookOptions<import("@tellesco
|
|
|
2275
2317
|
createdAt: Date;
|
|
2276
2318
|
}> & {
|
|
2277
2319
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2320
|
+
_overrideUnique?: boolean | undefined;
|
|
2278
2321
|
}>;
|
|
2279
2322
|
export declare const useEnduserProblems: (options?: HookOptions<import("@tellescope/types-models").EnduserProblem & {
|
|
2280
2323
|
id: string;
|
|
@@ -2287,6 +2330,7 @@ export declare const useEnduserProblems: (options?: HookOptions<import("@tellesc
|
|
|
2287
2330
|
createdAt: Date;
|
|
2288
2331
|
}> & {
|
|
2289
2332
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2333
|
+
_overrideUnique?: boolean | undefined;
|
|
2290
2334
|
}>;
|
|
2291
2335
|
export declare const useEnduserMedications: (options?: HookOptions<import("@tellescope/types-models").EnduserMedication & {
|
|
2292
2336
|
id: string;
|
|
@@ -2299,6 +2343,7 @@ export declare const useEnduserMedications: (options?: HookOptions<import("@tell
|
|
|
2299
2343
|
createdAt: Date;
|
|
2300
2344
|
}> & {
|
|
2301
2345
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2346
|
+
_overrideUnique?: boolean | undefined;
|
|
2302
2347
|
}>;
|
|
2303
2348
|
export declare const useEnduserOrders: (options?: HookOptions<import("@tellescope/types-models").EnduserOrder & {
|
|
2304
2349
|
id: string;
|
|
@@ -2311,6 +2356,7 @@ export declare const useEnduserOrders: (options?: HookOptions<import("@tellescop
|
|
|
2311
2356
|
createdAt: Date;
|
|
2312
2357
|
}> & {
|
|
2313
2358
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2359
|
+
_overrideUnique?: boolean | undefined;
|
|
2314
2360
|
}>;
|
|
2315
2361
|
export declare const useIntegrationLogs: (options?: HookOptions<import("@tellescope/types-models").IntegrationLog & {
|
|
2316
2362
|
id: string;
|
|
@@ -2323,6 +2369,7 @@ export declare const useIntegrationLogs: (options?: HookOptions<import("@tellesc
|
|
|
2323
2369
|
createdAt: Date;
|
|
2324
2370
|
}> & {
|
|
2325
2371
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2372
|
+
_overrideUnique?: boolean | undefined;
|
|
2326
2373
|
}>;
|
|
2327
2374
|
export declare const useWebhookLogs: (options?: HookOptions<import("@tellescope/types-models").WebhookLog & {
|
|
2328
2375
|
id: string;
|
|
@@ -2335,6 +2382,7 @@ export declare const useWebhookLogs: (options?: HookOptions<import("@tellescope/
|
|
|
2335
2382
|
createdAt: Date;
|
|
2336
2383
|
}> & {
|
|
2337
2384
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2385
|
+
_overrideUnique?: boolean | undefined;
|
|
2338
2386
|
}>;
|
|
2339
2387
|
export declare const useFormGroups: (options?: HookOptions<import("@tellescope/types-models").FormGroup & {
|
|
2340
2388
|
id: string;
|
|
@@ -2347,6 +2395,7 @@ export declare const useFormGroups: (options?: HookOptions<import("@tellescope/t
|
|
|
2347
2395
|
createdAt: Date;
|
|
2348
2396
|
}> & {
|
|
2349
2397
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2398
|
+
_overrideUnique?: boolean | undefined;
|
|
2350
2399
|
}>;
|
|
2351
2400
|
export declare const useFlowchartNotes: (options?: HookOptions<import("@tellescope/types-models").FlowchartNote & {
|
|
2352
2401
|
id: string;
|
|
@@ -2359,6 +2408,7 @@ export declare const useFlowchartNotes: (options?: HookOptions<import("@tellesco
|
|
|
2359
2408
|
createdAt: Date;
|
|
2360
2409
|
}> & {
|
|
2361
2410
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2411
|
+
_overrideUnique?: boolean | undefined;
|
|
2362
2412
|
}>;
|
|
2363
2413
|
export declare const useEnduserEncounters: (options?: HookOptions<import("@tellescope/types-models").EnduserEncounter & {
|
|
2364
2414
|
id: string;
|
|
@@ -2371,6 +2421,7 @@ export declare const useEnduserEncounters: (options?: HookOptions<import("@telle
|
|
|
2371
2421
|
createdAt: Date;
|
|
2372
2422
|
}> & {
|
|
2373
2423
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2424
|
+
_overrideUnique?: boolean | undefined;
|
|
2374
2425
|
}>;
|
|
2375
2426
|
export declare const useVitalConfigurations: (options?: HookOptions<import("@tellescope/types-models").VitalConfiguration & {
|
|
2376
2427
|
id: string;
|
|
@@ -2383,6 +2434,7 @@ export declare const useVitalConfigurations: (options?: HookOptions<import("@tel
|
|
|
2383
2434
|
createdAt: Date;
|
|
2384
2435
|
}> & {
|
|
2385
2436
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2437
|
+
_overrideUnique?: boolean | undefined;
|
|
2386
2438
|
}>;
|
|
2387
2439
|
export declare const useCalendarEvents: (options?: HookOptions<import("@tellescope/types-models").CalendarEvent & {
|
|
2388
2440
|
id: string;
|
|
@@ -2395,6 +2447,7 @@ export declare const useCalendarEvents: (options?: HookOptions<import("@tellesco
|
|
|
2395
2447
|
createdAt: Date;
|
|
2396
2448
|
}> & {
|
|
2397
2449
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2450
|
+
_overrideUnique?: boolean | undefined;
|
|
2398
2451
|
}>;
|
|
2399
2452
|
export declare const useEngagementEvents: (options?: HookOptions<import("@tellescope/types-models").EngagementEvent & {
|
|
2400
2453
|
id: string;
|
|
@@ -2407,6 +2460,7 @@ export declare const useEngagementEvents: (options?: HookOptions<import("@telles
|
|
|
2407
2460
|
createdAt: Date;
|
|
2408
2461
|
}> & {
|
|
2409
2462
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2463
|
+
_overrideUnique?: boolean | undefined;
|
|
2410
2464
|
}>;
|
|
2411
2465
|
export declare const useGroupMMSConversations: (options?: HookOptions<import("@tellescope/types-models").GroupMMSConversation & {
|
|
2412
2466
|
id: string;
|
|
@@ -2419,6 +2473,7 @@ export declare const useGroupMMSConversations: (options?: HookOptions<import("@t
|
|
|
2419
2473
|
createdAt: Date;
|
|
2420
2474
|
}> & {
|
|
2421
2475
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2476
|
+
_overrideUnique?: boolean | undefined;
|
|
2422
2477
|
}>;
|
|
2423
2478
|
export declare const useEnduserProfileViews: (options?: HookOptions<import("@tellescope/types-models").EnduserProfileView & {
|
|
2424
2479
|
id: string;
|
|
@@ -2431,6 +2486,7 @@ export declare const useEnduserProfileViews: (options?: HookOptions<import("@tel
|
|
|
2431
2486
|
createdAt: Date;
|
|
2432
2487
|
}> & {
|
|
2433
2488
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2489
|
+
_overrideUnique?: boolean | undefined;
|
|
2434
2490
|
}>;
|
|
2435
2491
|
export declare const useCallHoldQueues: (options?: HookOptions<import("@tellescope/types-models").CallHoldQueue & {
|
|
2436
2492
|
id: string;
|
|
@@ -2443,6 +2499,7 @@ export declare const useCallHoldQueues: (options?: HookOptions<import("@tellesco
|
|
|
2443
2499
|
createdAt: Date;
|
|
2444
2500
|
}> & {
|
|
2445
2501
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2502
|
+
_overrideUnique?: boolean | undefined;
|
|
2446
2503
|
}>;
|
|
2447
2504
|
export declare const useTicketQueues: (options?: HookOptions<import("@tellescope/types-models").TicketQueue & {
|
|
2448
2505
|
id: string;
|
|
@@ -2455,6 +2512,7 @@ export declare const useTicketQueues: (options?: HookOptions<import("@tellescope
|
|
|
2455
2512
|
createdAt: Date;
|
|
2456
2513
|
}> & {
|
|
2457
2514
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2515
|
+
_overrideUnique?: boolean | undefined;
|
|
2458
2516
|
}>;
|
|
2459
2517
|
export declare const useConfigurations: (options?: HookOptions<import("@tellescope/types-models").Configuration & {
|
|
2460
2518
|
id: string;
|
|
@@ -2467,6 +2525,7 @@ export declare const useConfigurations: (options?: HookOptions<import("@tellesco
|
|
|
2467
2525
|
createdAt: Date;
|
|
2468
2526
|
}> & {
|
|
2469
2527
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2528
|
+
_overrideUnique?: boolean | undefined;
|
|
2470
2529
|
}>;
|
|
2471
2530
|
export declare const usePhoneTrees: (options?: HookOptions<import("@tellescope/types-models").PhoneTree & {
|
|
2472
2531
|
id: string;
|
|
@@ -2479,6 +2538,7 @@ export declare const usePhoneTrees: (options?: HookOptions<import("@tellescope/t
|
|
|
2479
2538
|
createdAt: Date;
|
|
2480
2539
|
}> & {
|
|
2481
2540
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2541
|
+
_overrideUnique?: boolean | undefined;
|
|
2482
2542
|
}>;
|
|
2483
2543
|
export declare const useAutomationTriggers: (options?: HookOptions<import("@tellescope/types-models").AutomationTrigger & {
|
|
2484
2544
|
id: string;
|
|
@@ -2491,6 +2551,7 @@ export declare const useAutomationTriggers: (options?: HookOptions<import("@tell
|
|
|
2491
2551
|
createdAt: Date;
|
|
2492
2552
|
}> & {
|
|
2493
2553
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2554
|
+
_overrideUnique?: boolean | undefined;
|
|
2494
2555
|
}>;
|
|
2495
2556
|
export declare const useAutomatedActions: (options?: HookOptions<import("@tellescope/types-models").AutomatedAction & {
|
|
2496
2557
|
id: string;
|
|
@@ -2503,6 +2564,7 @@ export declare const useAutomatedActions: (options?: HookOptions<import("@telles
|
|
|
2503
2564
|
createdAt: Date;
|
|
2504
2565
|
}> & {
|
|
2505
2566
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2567
|
+
_overrideUnique?: boolean | undefined;
|
|
2506
2568
|
}>;
|
|
2507
2569
|
export declare const useEmails: (options?: HookOptions<import("@tellescope/types-models").Email & {
|
|
2508
2570
|
id: string;
|
|
@@ -2515,6 +2577,7 @@ export declare const useEmails: (options?: HookOptions<import("@tellescope/types
|
|
|
2515
2577
|
createdAt: Date;
|
|
2516
2578
|
}> & {
|
|
2517
2579
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2580
|
+
_overrideUnique?: boolean | undefined;
|
|
2518
2581
|
}>;
|
|
2519
2582
|
export declare const useSmsMessages: (options?: HookOptions<import("@tellescope/types-models").SMSMessage & {
|
|
2520
2583
|
id: string;
|
|
@@ -2527,6 +2590,7 @@ export declare const useSmsMessages: (options?: HookOptions<import("@tellescope/
|
|
|
2527
2590
|
createdAt: Date;
|
|
2528
2591
|
}> & {
|
|
2529
2592
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2593
|
+
_overrideUnique?: boolean | undefined;
|
|
2530
2594
|
}>;
|
|
2531
2595
|
export declare const useNotifications: (options?: HookOptions<import("@tellescope/types-models").UserNotification & {
|
|
2532
2596
|
id: string;
|
|
@@ -2539,6 +2603,7 @@ export declare const useNotifications: (options?: HookOptions<import("@tellescop
|
|
|
2539
2603
|
createdAt: Date;
|
|
2540
2604
|
}> & {
|
|
2541
2605
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2606
|
+
_overrideUnique?: boolean | undefined;
|
|
2542
2607
|
}>;
|
|
2543
2608
|
export declare const useUserLogs: (options?: HookOptions<import("@tellescope/types-models").UserLog & {
|
|
2544
2609
|
id: string;
|
|
@@ -2551,6 +2616,7 @@ export declare const useUserLogs: (options?: HookOptions<import("@tellescope/typ
|
|
|
2551
2616
|
createdAt: Date;
|
|
2552
2617
|
}> & {
|
|
2553
2618
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2619
|
+
_overrideUnique?: boolean | undefined;
|
|
2554
2620
|
}>;
|
|
2555
2621
|
export declare const useAnalyticsFrames: (options?: HookOptions<import("@tellescope/types-models").AnalyticsFrame & {
|
|
2556
2622
|
id: string;
|
|
@@ -2563,6 +2629,7 @@ export declare const useAnalyticsFrames: (options?: HookOptions<import("@tellesc
|
|
|
2563
2629
|
createdAt: Date;
|
|
2564
2630
|
}> & {
|
|
2565
2631
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2632
|
+
_overrideUnique?: boolean | undefined;
|
|
2566
2633
|
}>;
|
|
2567
2634
|
export declare const useEnduserCustomTypes: (options?: HookOptions<import("@tellescope/types-models").EnduserCustomType & {
|
|
2568
2635
|
id: string;
|
|
@@ -2575,6 +2642,7 @@ export declare const useEnduserCustomTypes: (options?: HookOptions<import("@tell
|
|
|
2575
2642
|
createdAt: Date;
|
|
2576
2643
|
}> & {
|
|
2577
2644
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2645
|
+
_overrideUnique?: boolean | undefined;
|
|
2578
2646
|
}>;
|
|
2579
2647
|
export declare const useChatRooms: (options?: HookOptions<import("@tellescope/types-models").ChatRoom & {
|
|
2580
2648
|
id: string;
|
|
@@ -2587,6 +2655,7 @@ export declare const useChatRooms: (options?: HookOptions<import("@tellescope/ty
|
|
|
2587
2655
|
createdAt: Date;
|
|
2588
2656
|
}> & {
|
|
2589
2657
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2658
|
+
_overrideUnique?: boolean | undefined;
|
|
2590
2659
|
}>;
|
|
2591
2660
|
export declare const useChats: (roomId?: string, options?: HookOptions<import("@tellescope/types-models").ChatMessage & {
|
|
2592
2661
|
id: string;
|
|
@@ -2599,6 +2668,7 @@ export declare const useChats: (roomId?: string, options?: HookOptions<import("@
|
|
|
2599
2668
|
createdAt: Date;
|
|
2600
2669
|
}> & {
|
|
2601
2670
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2671
|
+
_overrideUnique?: boolean | undefined;
|
|
2602
2672
|
}>;
|
|
2603
2673
|
export declare const useEndusers: (options?: HookOptions<import("@tellescope/types-models").Enduser & {
|
|
2604
2674
|
id: string;
|
|
@@ -2611,6 +2681,7 @@ export declare const useEndusers: (options?: HookOptions<import("@tellescope/typ
|
|
|
2611
2681
|
createdAt: Date;
|
|
2612
2682
|
}> & {
|
|
2613
2683
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2684
|
+
_overrideUnique?: boolean | undefined;
|
|
2614
2685
|
}>;
|
|
2615
2686
|
export declare const useTickets: (options?: HookOptions<import("@tellescope/types-models").Ticket & {
|
|
2616
2687
|
id: string;
|
|
@@ -2623,6 +2694,7 @@ export declare const useTickets: (options?: HookOptions<import("@tellescope/type
|
|
|
2623
2694
|
createdAt: Date;
|
|
2624
2695
|
}> & {
|
|
2625
2696
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2697
|
+
_overrideUnique?: boolean | undefined;
|
|
2626
2698
|
}>;
|
|
2627
2699
|
export declare const useMeetings: (options?: HookOptions<import("@tellescope/types-models").Meeting & {
|
|
2628
2700
|
id: string;
|
|
@@ -2635,6 +2707,7 @@ export declare const useMeetings: (options?: HookOptions<import("@tellescope/typ
|
|
|
2635
2707
|
createdAt: Date;
|
|
2636
2708
|
}> & {
|
|
2637
2709
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2710
|
+
_overrideUnique?: boolean | undefined;
|
|
2638
2711
|
}>;
|
|
2639
2712
|
export declare const useFiles: (options?: HookOptions<import("@tellescope/types-models").File & {
|
|
2640
2713
|
id: string;
|
|
@@ -2657,6 +2730,7 @@ export declare const useJourneys: (options?: HookOptions<import("@tellescope/typ
|
|
|
2657
2730
|
createdAt: Date;
|
|
2658
2731
|
}> & {
|
|
2659
2732
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2733
|
+
_overrideUnique?: boolean | undefined;
|
|
2660
2734
|
}>;
|
|
2661
2735
|
export declare const useUsers: (options?: HookOptions<import("@tellescope/types-models").User & {
|
|
2662
2736
|
id: string;
|
|
@@ -2669,6 +2743,7 @@ export declare const useUsers: (options?: HookOptions<import("@tellescope/types-
|
|
|
2669
2743
|
createdAt: Date;
|
|
2670
2744
|
}> & {
|
|
2671
2745
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2746
|
+
_overrideUnique?: boolean | undefined;
|
|
2672
2747
|
}>;
|
|
2673
2748
|
export declare const useAutomationSteps: (options?: HookOptions<import("@tellescope/types-models").AutomationStep & {
|
|
2674
2749
|
id: string;
|
|
@@ -2681,6 +2756,7 @@ export declare const useAutomationSteps: (options?: HookOptions<import("@tellesc
|
|
|
2681
2756
|
createdAt: Date;
|
|
2682
2757
|
}> & {
|
|
2683
2758
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2759
|
+
_overrideUnique?: boolean | undefined;
|
|
2684
2760
|
}>;
|
|
2685
2761
|
export declare const useNotes: (options?: HookOptions<import("@tellescope/types-models").Note & {
|
|
2686
2762
|
id: string;
|
|
@@ -2693,6 +2769,7 @@ export declare const useNotes: (options?: HookOptions<import("@tellescope/types-
|
|
|
2693
2769
|
createdAt: Date;
|
|
2694
2770
|
}> & {
|
|
2695
2771
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2772
|
+
_overrideUnique?: boolean | undefined;
|
|
2696
2773
|
}>;
|
|
2697
2774
|
export declare const useAvailabilityBlocks: (options?: HookOptions<import("@tellescope/types-models").AvailabilityBlock & {
|
|
2698
2775
|
id: string;
|
|
@@ -2705,6 +2782,7 @@ export declare const useAvailabilityBlocks: (options?: HookOptions<import("@tell
|
|
|
2705
2782
|
createdAt: Date;
|
|
2706
2783
|
}> & {
|
|
2707
2784
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2785
|
+
_overrideUnique?: boolean | undefined;
|
|
2708
2786
|
}>;
|
|
2709
2787
|
export declare const useTemplates: (options?: HookOptions<import("@tellescope/types-models").MessageTemplate & {
|
|
2710
2788
|
id: string;
|
|
@@ -2717,6 +2795,7 @@ export declare const useTemplates: (options?: HookOptions<import("@tellescope/ty
|
|
|
2717
2795
|
createdAt: Date;
|
|
2718
2796
|
}> & {
|
|
2719
2797
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2798
|
+
_overrideUnique?: boolean | undefined;
|
|
2720
2799
|
}>;
|
|
2721
2800
|
export declare const useForms: (options?: HookOptions<import("@tellescope/types-models").Form & {
|
|
2722
2801
|
id: string;
|
|
@@ -2729,6 +2808,7 @@ export declare const useForms: (options?: HookOptions<import("@tellescope/types-
|
|
|
2729
2808
|
createdAt: Date;
|
|
2730
2809
|
}> & {
|
|
2731
2810
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2811
|
+
_overrideUnique?: boolean | undefined;
|
|
2732
2812
|
}>;
|
|
2733
2813
|
export declare const useFormFields: (options?: HookOptions<import("@tellescope/types-models").FormField & {
|
|
2734
2814
|
id: string;
|
|
@@ -2741,6 +2821,7 @@ export declare const useFormFields: (options?: HookOptions<import("@tellescope/t
|
|
|
2741
2821
|
createdAt: Date;
|
|
2742
2822
|
}> & {
|
|
2743
2823
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2824
|
+
_overrideUnique?: boolean | undefined;
|
|
2744
2825
|
}>;
|
|
2745
2826
|
export declare const useFormResponses: (options?: HookOptions<import("@tellescope/types-models").FormResponse & {
|
|
2746
2827
|
id: string;
|
|
@@ -2753,6 +2834,7 @@ export declare const useFormResponses: (options?: HookOptions<import("@tellescop
|
|
|
2753
2834
|
createdAt: Date;
|
|
2754
2835
|
}> & {
|
|
2755
2836
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2837
|
+
_overrideUnique?: boolean | undefined;
|
|
2756
2838
|
}>;
|
|
2757
2839
|
/** @deprecated */
|
|
2758
2840
|
export declare const useUserDisplayInfo: (options?: HookOptions<UserDisplayInfo>) => ListStateReturnType<UserDisplayInfo, Partial<UserDisplayInfo>>;
|
|
@@ -2767,6 +2849,7 @@ export declare const useEnduserObservations: (options?: HookOptions<import("@tel
|
|
|
2767
2849
|
createdAt: Date;
|
|
2768
2850
|
}> & {
|
|
2769
2851
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2852
|
+
_overrideUnique?: boolean | undefined;
|
|
2770
2853
|
}>;
|
|
2771
2854
|
export declare const useManagedContentRecords: (options?: HookOptions<import("@tellescope/types-models").ManagedContentRecord & {
|
|
2772
2855
|
id: string;
|
|
@@ -2779,6 +2862,7 @@ export declare const useManagedContentRecords: (options?: HookOptions<import("@t
|
|
|
2779
2862
|
createdAt: Date;
|
|
2780
2863
|
}> & {
|
|
2781
2864
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2865
|
+
_overrideUnique?: boolean | undefined;
|
|
2782
2866
|
}>;
|
|
2783
2867
|
export declare const useManagedContentRecordAssignments: (options?: HookOptions<import("@tellescope/types-models").ManagedContentRecordAssignment & {
|
|
2784
2868
|
id: string;
|
|
@@ -2791,6 +2875,7 @@ export declare const useManagedContentRecordAssignments: (options?: HookOptions<
|
|
|
2791
2875
|
createdAt: Date;
|
|
2792
2876
|
}> & {
|
|
2793
2877
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2878
|
+
_overrideUnique?: boolean | undefined;
|
|
2794
2879
|
}>;
|
|
2795
2880
|
export declare const useAssignedManagedContentRecords: () => LoadedData<(import("@tellescope/types-models").ManagedContentRecord & {
|
|
2796
2881
|
id: string;
|
|
@@ -2807,6 +2892,7 @@ export declare const useForums: (options?: HookOptions<import("@tellescope/types
|
|
|
2807
2892
|
createdAt: Date;
|
|
2808
2893
|
}> & {
|
|
2809
2894
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2895
|
+
_overrideUnique?: boolean | undefined;
|
|
2810
2896
|
}>;
|
|
2811
2897
|
export declare const useForumPosts: (options?: HookOptions<import("@tellescope/types-models").ForumPost & {
|
|
2812
2898
|
id: string;
|
|
@@ -2819,6 +2905,7 @@ export declare const useForumPosts: (options?: HookOptions<import("@tellescope/t
|
|
|
2819
2905
|
createdAt: Date;
|
|
2820
2906
|
}> & {
|
|
2821
2907
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2908
|
+
_overrideUnique?: boolean | undefined;
|
|
2822
2909
|
}>;
|
|
2823
2910
|
export declare const usePostComments: (options?: HookOptions<import("@tellescope/types-models").PostComment & {
|
|
2824
2911
|
id: string;
|
|
@@ -2831,6 +2918,7 @@ export declare const usePostComments: (options?: HookOptions<import("@tellescope
|
|
|
2831
2918
|
createdAt: Date;
|
|
2832
2919
|
}> & {
|
|
2833
2920
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2921
|
+
_overrideUnique?: boolean | undefined;
|
|
2834
2922
|
}>;
|
|
2835
2923
|
export declare const usePostLikes: (options?: HookOptions<import("@tellescope/types-models").PostLike & {
|
|
2836
2924
|
id: string;
|
|
@@ -2843,6 +2931,7 @@ export declare const usePostLikes: (options?: HookOptions<import("@tellescope/ty
|
|
|
2843
2931
|
createdAt: Date;
|
|
2844
2932
|
}> & {
|
|
2845
2933
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2934
|
+
_overrideUnique?: boolean | undefined;
|
|
2846
2935
|
}>;
|
|
2847
2936
|
export declare const useCommentLikes: (options?: HookOptions<import("@tellescope/types-models").CommentLike & {
|
|
2848
2937
|
id: string;
|
|
@@ -2855,6 +2944,7 @@ export declare const useCommentLikes: (options?: HookOptions<import("@tellescope
|
|
|
2855
2944
|
createdAt: Date;
|
|
2856
2945
|
}> & {
|
|
2857
2946
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2947
|
+
_overrideUnique?: boolean | undefined;
|
|
2858
2948
|
}>;
|
|
2859
2949
|
export declare const useCalendarEventRSVPs: (options?: HookOptions<import("@tellescope/types-models").CalendarEventRSVP & {
|
|
2860
2950
|
id: string;
|
|
@@ -2867,6 +2957,7 @@ export declare const useCalendarEventRSVPs: (options?: HookOptions<import("@tell
|
|
|
2867
2957
|
createdAt: Date;
|
|
2868
2958
|
}> & {
|
|
2869
2959
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2960
|
+
_overrideUnique?: boolean | undefined;
|
|
2870
2961
|
}>;
|
|
2871
2962
|
export declare const useRoleBasedAccessPermissions: (options?: HookOptions<import("@tellescope/types-models").Organization & {
|
|
2872
2963
|
id: string;
|
|
@@ -2879,6 +2970,7 @@ export declare const useRoleBasedAccessPermissions: (options?: HookOptions<impor
|
|
|
2879
2970
|
createdAt: Date;
|
|
2880
2971
|
}> & {
|
|
2881
2972
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2973
|
+
_overrideUnique?: boolean | undefined;
|
|
2882
2974
|
}>;
|
|
2883
2975
|
export declare const useTicketThreads: (options?: HookOptions<import("@tellescope/types-models").TicketThread & {
|
|
2884
2976
|
id: string;
|
|
@@ -2891,6 +2983,7 @@ export declare const useTicketThreads: (options?: HookOptions<import("@tellescop
|
|
|
2891
2983
|
createdAt: Date;
|
|
2892
2984
|
}> & {
|
|
2893
2985
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2986
|
+
_overrideUnique?: boolean | undefined;
|
|
2894
2987
|
}>;
|
|
2895
2988
|
export declare const useTicketThreadComments: (options?: HookOptions<import("@tellescope/types-models").TicketThreadComment & {
|
|
2896
2989
|
id: string;
|
|
@@ -2903,6 +2996,7 @@ export declare const useTicketThreadComments: (options?: HookOptions<import("@te
|
|
|
2903
2996
|
createdAt: Date;
|
|
2904
2997
|
}> & {
|
|
2905
2998
|
sharedWithOrganizations?: string[][] | undefined;
|
|
2999
|
+
_overrideUnique?: boolean | undefined;
|
|
2906
3000
|
}>;
|
|
2907
3001
|
export declare const useSuperbills: (options?: HookOptions<import("@tellescope/types-models").Superbill & {
|
|
2908
3002
|
id: string;
|
|
@@ -2915,6 +3009,7 @@ export declare const useSuperbills: (options?: HookOptions<import("@tellescope/t
|
|
|
2915
3009
|
createdAt: Date;
|
|
2916
3010
|
}> & {
|
|
2917
3011
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3012
|
+
_overrideUnique?: boolean | undefined;
|
|
2918
3013
|
}>;
|
|
2919
3014
|
export declare const useSuperbillProviders: (options?: HookOptions<import("@tellescope/types-models").SuperbillProvider & {
|
|
2920
3015
|
id: string;
|
|
@@ -2927,6 +3022,7 @@ export declare const useSuperbillProviders: (options?: HookOptions<import("@tell
|
|
|
2927
3022
|
createdAt: Date;
|
|
2928
3023
|
}> & {
|
|
2929
3024
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3025
|
+
_overrideUnique?: boolean | undefined;
|
|
2930
3026
|
}>;
|
|
2931
3027
|
export declare const useTableViews: (options?: HookOptions<import("@tellescope/types-models").TableView & {
|
|
2932
3028
|
id: string;
|
|
@@ -2939,6 +3035,7 @@ export declare const useTableViews: (options?: HookOptions<import("@tellescope/t
|
|
|
2939
3035
|
createdAt: Date;
|
|
2940
3036
|
}> & {
|
|
2941
3037
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3038
|
+
_overrideUnique?: boolean | undefined;
|
|
2942
3039
|
}>;
|
|
2943
3040
|
export declare const useEmailSyncDenials: (options?: HookOptions<import("@tellescope/types-models").EmailSyncDenial & {
|
|
2944
3041
|
id: string;
|
|
@@ -2951,6 +3048,7 @@ export declare const useEmailSyncDenials: (options?: HookOptions<import("@telles
|
|
|
2951
3048
|
createdAt: Date;
|
|
2952
3049
|
}> & {
|
|
2953
3050
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3051
|
+
_overrideUnique?: boolean | undefined;
|
|
2954
3052
|
}>;
|
|
2955
3053
|
export declare const usePhoneCalls: (options?: HookOptions<import("@tellescope/types-models").PhoneCall & {
|
|
2956
3054
|
id: string;
|
|
@@ -2963,6 +3061,7 @@ export declare const usePhoneCalls: (options?: HookOptions<import("@tellescope/t
|
|
|
2963
3061
|
createdAt: Date;
|
|
2964
3062
|
}> & {
|
|
2965
3063
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3064
|
+
_overrideUnique?: boolean | undefined;
|
|
2966
3065
|
}>;
|
|
2967
3066
|
export declare const useOrganizations: (options?: HookOptions<import("@tellescope/types-models").Organization & {
|
|
2968
3067
|
id: string;
|
|
@@ -2998,6 +3097,7 @@ export declare const useIntegrations: (options?: HookOptions<import("@tellescope
|
|
|
2998
3097
|
createdAt: Date;
|
|
2999
3098
|
}> & {
|
|
3000
3099
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3100
|
+
_overrideUnique?: boolean | undefined;
|
|
3001
3101
|
}>;
|
|
3002
3102
|
export declare const usePortalCustomizations: (options?: HookOptions<import("@tellescope/types-models").PortalCustomization & {
|
|
3003
3103
|
id: string;
|
|
@@ -3010,6 +3110,7 @@ export declare const usePortalCustomizations: (options?: HookOptions<import("@te
|
|
|
3010
3110
|
createdAt: Date;
|
|
3011
3111
|
}> & {
|
|
3012
3112
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3113
|
+
_overrideUnique?: boolean | undefined;
|
|
3013
3114
|
}>;
|
|
3014
3115
|
export declare const useCarePlans: (options?: HookOptions<import("@tellescope/types-models").CarePlan & {
|
|
3015
3116
|
id: string;
|
|
@@ -3022,6 +3123,7 @@ export declare const useCarePlans: (options?: HookOptions<import("@tellescope/ty
|
|
|
3022
3123
|
createdAt: Date;
|
|
3023
3124
|
}> & {
|
|
3024
3125
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3126
|
+
_overrideUnique?: boolean | undefined;
|
|
3025
3127
|
}>;
|
|
3026
3128
|
export declare const useEnduserTasks: (options?: HookOptions<import("@tellescope/types-models").EnduserTask & {
|
|
3027
3129
|
id: string;
|
|
@@ -3034,6 +3136,7 @@ export declare const useEnduserTasks: (options?: HookOptions<import("@tellescope
|
|
|
3034
3136
|
createdAt: Date;
|
|
3035
3137
|
}> & {
|
|
3036
3138
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3139
|
+
_overrideUnique?: boolean | undefined;
|
|
3037
3140
|
}>;
|
|
3038
3141
|
export declare const useCalendarEventTemplates: (options?: HookOptions<import("@tellescope/types-models").CalendarEventTemplate & {
|
|
3039
3142
|
id: string;
|
|
@@ -3046,6 +3149,7 @@ export declare const useCalendarEventTemplates: (options?: HookOptions<import("@
|
|
|
3046
3149
|
createdAt: Date;
|
|
3047
3150
|
}> & {
|
|
3048
3151
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3152
|
+
_overrideUnique?: boolean | undefined;
|
|
3049
3153
|
}>;
|
|
3050
3154
|
export declare const useAppointmentBookingPages: (options?: HookOptions<import("@tellescope/types-models").AppointmentBookingPage & {
|
|
3051
3155
|
id: string;
|
|
@@ -3058,6 +3162,7 @@ export declare const useAppointmentBookingPages: (options?: HookOptions<import("
|
|
|
3058
3162
|
createdAt: Date;
|
|
3059
3163
|
}> & {
|
|
3060
3164
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3165
|
+
_overrideUnique?: boolean | undefined;
|
|
3061
3166
|
}>;
|
|
3062
3167
|
export declare const useEnduserViews: (options?: HookOptions<import("@tellescope/types-models").EnduserView & {
|
|
3063
3168
|
id: string;
|
|
@@ -3070,6 +3175,7 @@ export declare const useEnduserViews: (options?: HookOptions<import("@tellescope
|
|
|
3070
3175
|
createdAt: Date;
|
|
3071
3176
|
}> & {
|
|
3072
3177
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3178
|
+
_overrideUnique?: boolean | undefined;
|
|
3073
3179
|
}>;
|
|
3074
3180
|
export declare const useBackgroundErrors: (options?: HookOptions<import("@tellescope/types-models").BackgroundError & {
|
|
3075
3181
|
id: string;
|
|
@@ -3082,6 +3188,7 @@ export declare const useBackgroundErrors: (options?: HookOptions<import("@telles
|
|
|
3082
3188
|
createdAt: Date;
|
|
3083
3189
|
}> & {
|
|
3084
3190
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3191
|
+
_overrideUnique?: boolean | undefined;
|
|
3085
3192
|
}>;
|
|
3086
3193
|
export declare const useAppointmentLocations: (options?: HookOptions<import("@tellescope/types-models").AppointmentLocation & {
|
|
3087
3194
|
id: string;
|
|
@@ -3094,6 +3201,7 @@ export declare const useAppointmentLocations: (options?: HookOptions<import("@te
|
|
|
3094
3201
|
createdAt: Date;
|
|
3095
3202
|
}> & {
|
|
3096
3203
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3204
|
+
_overrideUnique?: boolean | undefined;
|
|
3097
3205
|
}>;
|
|
3098
3206
|
export declare const useDatabases: (options?: HookOptions<import("@tellescope/types-models").Database & {
|
|
3099
3207
|
id: string;
|
|
@@ -3106,6 +3214,7 @@ export declare const useDatabases: (options?: HookOptions<import("@tellescope/ty
|
|
|
3106
3214
|
createdAt: Date;
|
|
3107
3215
|
}> & {
|
|
3108
3216
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3217
|
+
_overrideUnique?: boolean | undefined;
|
|
3109
3218
|
}>;
|
|
3110
3219
|
export declare const useDatabaseRecords: (options?: HookOptions<import("@tellescope/types-models").DatabaseRecord & {
|
|
3111
3220
|
id: string;
|
|
@@ -3118,6 +3227,7 @@ export declare const useDatabaseRecords: (options?: HookOptions<import("@tellesc
|
|
|
3118
3227
|
createdAt: Date;
|
|
3119
3228
|
}> & {
|
|
3120
3229
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3230
|
+
_overrideUnique?: boolean | undefined;
|
|
3121
3231
|
}>;
|
|
3122
3232
|
export declare const useProducts: (options?: HookOptions<import("@tellescope/types-models").Product & {
|
|
3123
3233
|
id: string;
|
|
@@ -3130,6 +3240,7 @@ export declare const useProducts: (options?: HookOptions<import("@tellescope/typ
|
|
|
3130
3240
|
createdAt: Date;
|
|
3131
3241
|
}> & {
|
|
3132
3242
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3243
|
+
_overrideUnique?: boolean | undefined;
|
|
3133
3244
|
}>;
|
|
3134
3245
|
export declare const usePurchases: (options?: HookOptions<import("@tellescope/types-models").Purchase & {
|
|
3135
3246
|
id: string;
|
|
@@ -3142,6 +3253,7 @@ export declare const usePurchases: (options?: HookOptions<import("@tellescope/ty
|
|
|
3142
3253
|
createdAt: Date;
|
|
3143
3254
|
}> & {
|
|
3144
3255
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3256
|
+
_overrideUnique?: boolean | undefined;
|
|
3145
3257
|
}>;
|
|
3146
3258
|
export declare const usePurchaseCredits: (options?: HookOptions<import("@tellescope/types-models").PurchaseCredit & {
|
|
3147
3259
|
id: string;
|
|
@@ -3154,6 +3266,7 @@ export declare const usePurchaseCredits: (options?: HookOptions<import("@tellesc
|
|
|
3154
3266
|
createdAt: Date;
|
|
3155
3267
|
}> & {
|
|
3156
3268
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3269
|
+
_overrideUnique?: boolean | undefined;
|
|
3157
3270
|
}>;
|
|
3158
3271
|
export declare const useBlockedPhones: (options?: HookOptions<import("@tellescope/types-models").BlockedPhone & {
|
|
3159
3272
|
id: string;
|
|
@@ -3166,6 +3279,7 @@ export declare const useBlockedPhones: (options?: HookOptions<import("@tellescop
|
|
|
3166
3279
|
createdAt: Date;
|
|
3167
3280
|
}> & {
|
|
3168
3281
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3282
|
+
_overrideUnique?: boolean | undefined;
|
|
3169
3283
|
}>;
|
|
3170
3284
|
export declare const usePrescriptionRoutes: (options?: HookOptions<import("@tellescope/types-models").PrescriptionRoute & {
|
|
3171
3285
|
id: string;
|
|
@@ -3178,6 +3292,7 @@ export declare const usePrescriptionRoutes: (options?: HookOptions<import("@tell
|
|
|
3178
3292
|
createdAt: Date;
|
|
3179
3293
|
}> & {
|
|
3180
3294
|
sharedWithOrganizations?: string[][] | undefined;
|
|
3295
|
+
_overrideUnique?: boolean | undefined;
|
|
3181
3296
|
}>;
|
|
3182
3297
|
interface LoadEventOptions {
|
|
3183
3298
|
userId?: string;
|