@mindline/sync 1.0.92 → 1.0.95
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/.vs/VSWorkspaceState.json +1 -1
- package/.vs/slnx.sqlite +0 -0
- package/.vs/sync/CopilotIndices/17.14.260.54502/CodeChunks.db +0 -0
- package/.vs/sync/CopilotIndices/17.14.260.54502/SemanticSymbols.db +0 -0
- package/.vs/sync/FileContentIndex/2ba49e62-100e-498d-ab09-f417d49a9725.vsidx +0 -0
- package/.vs/sync/FileContentIndex/49e6f471-0ac6-4a06-8312-e820e7fac4c6.vsidx +0 -0
- package/.vs/sync/FileContentIndex/e0a3e09d-eab1-4de8-a273-cbf145b692b7.vsidx +0 -0
- package/.vs/sync/FileContentIndex/fbdc1c8b-cd95-4f09-8525-d6d1db68192f.vsidx +0 -0
- package/.vs/sync/v17/.wsuo +0 -0
- package/.vs/sync/v17/DocumentLayout.backup.json +89 -41
- package/.vs/sync/v17/DocumentLayout.json +101 -4
- package/dist/index.d.ts +2 -348
- package/dist/src/index.d.ts +349 -0
- package/dist/sync.es.js +42 -36
- package/dist/sync.es.js.map +1 -1
- package/dist/sync.umd.js +2 -2
- package/dist/sync.umd.js.map +1 -1
- package/index.test.ts +1 -1
- package/package.json +3 -2
- package/src/index.d.ts +1 -0
- package/src/index.ts +13 -8
- package/tsconfig.json +1 -1
- package/vite.config.ts +24 -1
- package/.vs/sync/FileContentIndex/11f04bb9-c8c3-49b8-b9b0-23b59361ea60.vsidx +0 -0
- package/.vs/sync/FileContentIndex/32415761-521c-4586-b2be-358aa800c295.vsidx +0 -0
- package/.vs/sync/FileContentIndex/5f0eff90-00ed-4490-92bb-d2c0bedd89b6.vsidx +0 -0
- package/.vs/sync/FileContentIndex/cb5cf66e-d79f-4452-9b8b-b759f711e4af.vsidx +0 -0
- /package/.vs/sync/FileContentIndex/{fee90bf7-9f86-4fc9-a06e-ccbbe7777bfe.vsidx → 29a49992-9853-4bc2-be0a-3c72e0dd42f6.vsidx} +0 -0
- /package/dist/{actors.json.d.ts → src/actors.json.d.ts} +0 -0
- /package/dist/{configs.json.d.ts → src/configs.json.d.ts} +0 -0
- /package/dist/{resources.json.d.ts → src/resources.json.d.ts} +0 -0
- /package/dist/{syncmilestones.json.d.ts → src/syncmilestones.json.d.ts} +0 -0
- /package/dist/{tenants.json.d.ts → src/tenants.json.d.ts} +0 -0
- /package/dist/{users.json.d.ts → src/users.json.d.ts} +0 -0
- /package/dist/{workspaces.json.d.ts → src/workspaces.json.d.ts} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,348 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export declare function helloNpm(): string;
|
|
4
|
-
export declare class APIResult {
|
|
5
|
-
result: boolean;
|
|
6
|
-
status: number;
|
|
7
|
-
error: string;
|
|
8
|
-
version: string;
|
|
9
|
-
array: Array<Object> | null;
|
|
10
|
-
constructor();
|
|
11
|
-
}
|
|
12
|
-
export declare class azureConfig {
|
|
13
|
-
static azureElevateAccess: string;
|
|
14
|
-
static azureListRootAssignments: string;
|
|
15
|
-
}
|
|
16
|
-
export declare class mindlineConfig {
|
|
17
|
-
static environmentTag: string;
|
|
18
|
-
static adminEndpoint(): string;
|
|
19
|
-
static adminIncompleteEndpoint(): string;
|
|
20
|
-
static adminsEndpoint(): string;
|
|
21
|
-
static configConsentEndpoint(): string;
|
|
22
|
-
static configEnabledEndpoint(): string;
|
|
23
|
-
static configEndpoint(): string;
|
|
24
|
-
static configsEndpoint(): string;
|
|
25
|
-
static initEndpoint(): string;
|
|
26
|
-
static readerStartSyncEndpoint(): string;
|
|
27
|
-
static tenantEndpoint(): string;
|
|
28
|
-
static tenantsEndpoint(): string;
|
|
29
|
-
static workspaceEndpoint(): string;
|
|
30
|
-
static workspacesEndpoint(): string;
|
|
31
|
-
static signalREndpoint(): string;
|
|
32
|
-
}
|
|
33
|
-
export declare class graphConfig {
|
|
34
|
-
static graphGroupsPredicate: string;
|
|
35
|
-
static graphMailPredicate: string;
|
|
36
|
-
static graphMePredicate: string;
|
|
37
|
-
static graphOauth2PermissionGrantsPredicate: string;
|
|
38
|
-
static graphServicePrincipalsPredicate: string;
|
|
39
|
-
static graphUsersPredicate: string;
|
|
40
|
-
static graphTenantByDomainPredicate: string;
|
|
41
|
-
static graphTenantByIdPredicate: string;
|
|
42
|
-
static authorityWW: string;
|
|
43
|
-
static authorityWWRegex: RegExp;
|
|
44
|
-
static authorityUS: string;
|
|
45
|
-
static authorityUSRegex: RegExp;
|
|
46
|
-
static authorityCN: string;
|
|
47
|
-
static authorityCNRegex: RegExp;
|
|
48
|
-
}
|
|
49
|
-
export declare class Group {
|
|
50
|
-
id: string;
|
|
51
|
-
displayName: string;
|
|
52
|
-
description: string;
|
|
53
|
-
}
|
|
54
|
-
export declare class UserScope {
|
|
55
|
-
group: string;
|
|
56
|
-
value: string;
|
|
57
|
-
consented: boolean;
|
|
58
|
-
removable: boolean;
|
|
59
|
-
expanded: string;
|
|
60
|
-
static compareByValue(a: UserScope, b: UserScope): number;
|
|
61
|
-
static compareByGroup(a: UserScope, b: UserScope): number;
|
|
62
|
-
}
|
|
63
|
-
export declare class User {
|
|
64
|
-
oid: string;
|
|
65
|
-
name: string;
|
|
66
|
-
mail: string;
|
|
67
|
-
authority: string;
|
|
68
|
-
tid: string;
|
|
69
|
-
companyName: string;
|
|
70
|
-
companyDomain: string;
|
|
71
|
-
workspaceIDs: string;
|
|
72
|
-
session: string;
|
|
73
|
-
spacode: string;
|
|
74
|
-
graphAccessToken: string;
|
|
75
|
-
mindlineAccessToken: string;
|
|
76
|
-
azureAccessToken: string;
|
|
77
|
-
loginHint: string;
|
|
78
|
-
scopes: string[];
|
|
79
|
-
authTS: Date;
|
|
80
|
-
sel: boolean;
|
|
81
|
-
loggingIn: boolean;
|
|
82
|
-
constructor();
|
|
83
|
-
}
|
|
84
|
-
export declare enum TenantType {
|
|
85
|
-
invalid = 0,
|
|
86
|
-
aad = 1,
|
|
87
|
-
ad = 2,
|
|
88
|
-
googleworkspace = 3
|
|
89
|
-
}
|
|
90
|
-
type TenantTypeStrings = keyof typeof TenantType;
|
|
91
|
-
export declare enum TenantPermissionType {
|
|
92
|
-
read = 1,
|
|
93
|
-
write = 2,
|
|
94
|
-
notassigned = 3
|
|
95
|
-
}
|
|
96
|
-
export type TenantPermissionTypeStrings = keyof typeof TenantPermissionType;
|
|
97
|
-
export declare class Tenant {
|
|
98
|
-
tid: string;
|
|
99
|
-
name: string;
|
|
100
|
-
domain: string;
|
|
101
|
-
tenantType: TenantTypeStrings;
|
|
102
|
-
authority: string;
|
|
103
|
-
workspaceIDs: string;
|
|
104
|
-
sel: boolean;
|
|
105
|
-
graphSP: string;
|
|
106
|
-
lookupfield: string;
|
|
107
|
-
constructor();
|
|
108
|
-
}
|
|
109
|
-
export declare enum TenantConfigType {
|
|
110
|
-
source = 1,
|
|
111
|
-
target = 2,
|
|
112
|
-
sourcetarget = 3
|
|
113
|
-
}
|
|
114
|
-
export type TenantConfigTypeStrings = keyof typeof TenantConfigType;
|
|
115
|
-
export declare class TenantConfigInfo {
|
|
116
|
-
tid: string;
|
|
117
|
-
sourceGroupId: string;
|
|
118
|
-
sourceGroupName: string;
|
|
119
|
-
targetGroupId: string;
|
|
120
|
-
targetGroupName: string;
|
|
121
|
-
configurationTenantType: TenantConfigTypeStrings;
|
|
122
|
-
deltaToken: string;
|
|
123
|
-
usersWritten: number;
|
|
124
|
-
configId: string;
|
|
125
|
-
batchId: string;
|
|
126
|
-
isReadPermissionConsented: boolean;
|
|
127
|
-
isWritePermissionConsented: boolean;
|
|
128
|
-
constructor();
|
|
129
|
-
}
|
|
130
|
-
export declare class Config {
|
|
131
|
-
id: string;
|
|
132
|
-
workspaceId: string;
|
|
133
|
-
name: string;
|
|
134
|
-
description: string;
|
|
135
|
-
tenants: TenantConfigInfo[];
|
|
136
|
-
isEnabled: boolean;
|
|
137
|
-
workspaceIDs: string;
|
|
138
|
-
sel: boolean;
|
|
139
|
-
constructor();
|
|
140
|
-
}
|
|
141
|
-
export declare class Workspace {
|
|
142
|
-
id: string;
|
|
143
|
-
name: string;
|
|
144
|
-
ownerid: string;
|
|
145
|
-
associatedUsers: string[];
|
|
146
|
-
associatedTenants: string[];
|
|
147
|
-
associatedConfigs: string[];
|
|
148
|
-
sel: boolean;
|
|
149
|
-
constructor();
|
|
150
|
-
}
|
|
151
|
-
export declare class InitInfo {
|
|
152
|
-
#private;
|
|
153
|
-
version: string;
|
|
154
|
-
tab: number;
|
|
155
|
-
us: User[];
|
|
156
|
-
ts: Tenant[];
|
|
157
|
-
cs: Config[];
|
|
158
|
-
ws: Workspace[];
|
|
159
|
-
configlevelconsent_configid: string;
|
|
160
|
-
configlevelconsent_access: TenantConfigType;
|
|
161
|
-
constructor(bClearLocalStorage?: boolean);
|
|
162
|
-
init(bClearLocalStorage: boolean): void;
|
|
163
|
-
save(): void;
|
|
164
|
-
tagWithWorkspaces(): boolean;
|
|
165
|
-
}
|
|
166
|
-
export type TaskType = "initialization" | "authenticate user" | "reload React" | "GET tenant details" | "POST config init" | "GET workspaces";
|
|
167
|
-
export declare class TaskArray {
|
|
168
|
-
#private;
|
|
169
|
-
tasks: Task[];
|
|
170
|
-
constructor(bClearLocalStorage: boolean);
|
|
171
|
-
init(bClearLocalStorage: boolean): void;
|
|
172
|
-
setTaskStart(taskType: TaskType, startDate: Date): void;
|
|
173
|
-
setTaskEnd(taskType: TaskType, endDate: Date, status: string): void;
|
|
174
|
-
}
|
|
175
|
-
export declare class Task {
|
|
176
|
-
id: number;
|
|
177
|
-
task: string;
|
|
178
|
-
start: Date;
|
|
179
|
-
startDisplay: string;
|
|
180
|
-
end: Date;
|
|
181
|
-
endDisplay: string;
|
|
182
|
-
elapsedDisplay: string;
|
|
183
|
-
expected: number;
|
|
184
|
-
status: string;
|
|
185
|
-
expanded: boolean;
|
|
186
|
-
subtasks: Task[];
|
|
187
|
-
setEnd(endDate: Date): void;
|
|
188
|
-
setStart(startDate: Date): void;
|
|
189
|
-
}
|
|
190
|
-
export declare class Milestone {
|
|
191
|
-
Run: number;
|
|
192
|
-
Start: Date;
|
|
193
|
-
startDisplay: string;
|
|
194
|
-
POST: Date;
|
|
195
|
-
postDisplay: string;
|
|
196
|
-
Read: Date;
|
|
197
|
-
readDisplay: string;
|
|
198
|
-
Write: Date;
|
|
199
|
-
writeDisplay: string;
|
|
200
|
-
Duration: Date;
|
|
201
|
-
durationDisplay: string;
|
|
202
|
-
constructor(run: number);
|
|
203
|
-
start(start: string): void;
|
|
204
|
-
post(post: string): void;
|
|
205
|
-
read(read: string): void;
|
|
206
|
-
write(write: string): void;
|
|
207
|
-
}
|
|
208
|
-
export declare class MilestoneArray {
|
|
209
|
-
#private;
|
|
210
|
-
milestones: Milestone[];
|
|
211
|
-
constructor(bClearLocalStorage: boolean);
|
|
212
|
-
init(bClearLocalStorage: boolean): void;
|
|
213
|
-
save(): void;
|
|
214
|
-
start(setMilestones: (milestones: Milestone[]) => void): void;
|
|
215
|
-
unstart(setMilestones: (milestones: Milestone[]) => void): void;
|
|
216
|
-
post(setMilestones: (milestones: Milestone[]) => void): void;
|
|
217
|
-
read(setMilestones: (milestones: Milestone[]) => void): void;
|
|
218
|
-
write(setMilestones: (milestones: Milestone[]) => void): void;
|
|
219
|
-
}
|
|
220
|
-
export declare class BatchArray {
|
|
221
|
-
tenantNodes: TenantNode[];
|
|
222
|
-
pb_startTS: number;
|
|
223
|
-
pb_progress: number;
|
|
224
|
-
pb_increment: number;
|
|
225
|
-
pb_idle: number;
|
|
226
|
-
pb_idleMax: number;
|
|
227
|
-
pb_total: number;
|
|
228
|
-
pb_timer: NodeJS.Timeout | null;
|
|
229
|
-
milestoneArray: MilestoneArray;
|
|
230
|
-
constructor(config: Config | null, syncPortalGlobalState: InitInfo | null, bClearLocalStorage: boolean);
|
|
231
|
-
init(config: Config | null | undefined, syncPortalGlobalState: InitInfo | null, bClearLocalStorage: boolean): void;
|
|
232
|
-
initializeProgressBar(setSyncProgress: (progress: number) => void, setConfigSyncResult: (result: string) => void, setIdleText: (idleText: string) => void, setMilestones: (milestones: Milestone[]) => void): void;
|
|
233
|
-
uninitializeProgressBar(setSyncProgress: (progress: number) => void, setConfigSyncResult: (result: string) => void, setIdleText: (idleText: string) => void, setMilestones: (milestones: Milestone[]) => void): void;
|
|
234
|
-
initializeSignalR(config: Config | null | undefined, syncPortalGlobalState: InitInfo | null, batchIdArray: Array<Object>, setRefreshDeltaTrigger: (workspace: string) => void, setReadersTotal: (readersTotal: number) => void, setReadersCurrent: (readersCurrent: number) => void, setWritersTotal: (writersTotal: number) => void, setWritersCurrent: (writersCurrent: number) => void, setMilestones: (milestones: Milestone[]) => void, setConfigSyncResult: (result: string) => void, bClearLocalStorage: boolean): void;
|
|
235
|
-
startSync(instance: IPublicClientApplication, authorizedUser: User | null | undefined, config: Config | null | undefined): Promise<APIResult>;
|
|
236
|
-
}
|
|
237
|
-
export declare class TenantNode {
|
|
238
|
-
expanded: boolean;
|
|
239
|
-
status: string;
|
|
240
|
-
name: string;
|
|
241
|
-
tid: string;
|
|
242
|
-
batchId: string;
|
|
243
|
-
total: number;
|
|
244
|
-
read: number;
|
|
245
|
-
written: number;
|
|
246
|
-
deferred: number;
|
|
247
|
-
nothingtosync: boolean;
|
|
248
|
-
targets: TenantNode[];
|
|
249
|
-
constructor(tid: string, name: string, batchId: string);
|
|
250
|
-
update(total: number, read: number, written: number, deferred: number): void;
|
|
251
|
-
}
|
|
252
|
-
export declare class ResourceArray {
|
|
253
|
-
resourceNodes: ResourceNode[];
|
|
254
|
-
constructor(bInitialize: boolean, bClearLocalStorage: boolean);
|
|
255
|
-
init(bClearLocalStorage: boolean): void;
|
|
256
|
-
read(instance: IPublicClientApplication, user: User): Promise<ResourceArray>;
|
|
257
|
-
save(): void;
|
|
258
|
-
}
|
|
259
|
-
export declare class ResourceNode {
|
|
260
|
-
type: string;
|
|
261
|
-
resource: string;
|
|
262
|
-
cost: number;
|
|
263
|
-
expanded: boolean;
|
|
264
|
-
resources: ResourceNode[];
|
|
265
|
-
constructor(type: string, resource: string, cost: number);
|
|
266
|
-
}
|
|
267
|
-
export declare class ActorArray {
|
|
268
|
-
actorNodes: ActorNode[];
|
|
269
|
-
constructor(bClearLocalStorage: boolean);
|
|
270
|
-
init(bClearLocalStorage: boolean): void;
|
|
271
|
-
}
|
|
272
|
-
export declare class ActorNode {
|
|
273
|
-
type: string;
|
|
274
|
-
actor: string;
|
|
275
|
-
resource: string;
|
|
276
|
-
role: string;
|
|
277
|
-
updatedby: string;
|
|
278
|
-
updatedon: string;
|
|
279
|
-
actors: ActorNode[];
|
|
280
|
-
constructor(type: string, actor: string, resource: string, role: string, updatedby: string, updatedon: string);
|
|
281
|
-
}
|
|
282
|
-
export declare function groupsGet(instance: IPublicClientApplication, user: User | undefined, groupSearchString: string): Promise<{
|
|
283
|
-
groups: Group[];
|
|
284
|
-
error: string;
|
|
285
|
-
}>;
|
|
286
|
-
export declare function oauth2PermissionGrantsGet(options: RequestInit, user: User, spid: string, oid: string): Promise<{
|
|
287
|
-
grants: string | null;
|
|
288
|
-
id: string | null;
|
|
289
|
-
error: string;
|
|
290
|
-
}>;
|
|
291
|
-
export declare function oauth2PermissionGrantsSet(instance: IPublicClientApplication, loggedInUser: User, id: string, scopes: string): Promise<boolean>;
|
|
292
|
-
export declare function requestAdminConsent(admin: User, tct: TenantConfigType): void;
|
|
293
|
-
export declare function servicePrincipalGet(options: RequestInit, user: User, appid: string): Promise<{
|
|
294
|
-
spid: string;
|
|
295
|
-
error: string;
|
|
296
|
-
}>;
|
|
297
|
-
export declare function signIn(user: User, tasks: TaskArray): Promise<boolean>;
|
|
298
|
-
export declare function signInIncrementally(user: User, scope: string): void;
|
|
299
|
-
export declare function signOut(user: User): Promise<boolean>;
|
|
300
|
-
export declare function tenantRelationshipsGetByDomain(loggedInUser: User, tenant: Tenant, instance: IPublicClientApplication, debug: boolean): Promise<boolean>;
|
|
301
|
-
export declare function tenantRelationshipsGetById(loggedInUser: User, tenant: Tenant, ii: InitInfo, instance: IPublicClientApplication, debug: boolean): Promise<boolean>;
|
|
302
|
-
export declare function tenantUnauthenticatedLookup(tenant: Tenant, debug: boolean): Promise<boolean>;
|
|
303
|
-
export declare function userDelegatedScopesGet(instance: IPublicClientApplication, loggedInUser: User, tenant: Tenant): Promise<{
|
|
304
|
-
scopes: string | null;
|
|
305
|
-
id: string | null;
|
|
306
|
-
error: string;
|
|
307
|
-
}>;
|
|
308
|
-
export declare function userDelegatedScopesRemove(instance: IPublicClientApplication, loggedInUser: User, tenant: Tenant, scope: string): Promise<boolean>;
|
|
309
|
-
export declare function usersGet(instance: IPublicClientApplication, user: User | undefined): Promise<{
|
|
310
|
-
users: string[];
|
|
311
|
-
error: string;
|
|
312
|
-
}>;
|
|
313
|
-
export declare function configEdit(instance: IPublicClientApplication, authorizedUser: User, config: Config, setConfigId: (id: string) => void, setSelectedConfigs: (selectedConfigs: {
|
|
314
|
-
[id: string]: boolean | number[];
|
|
315
|
-
}) => void, workspace: Workspace, ii: InitInfo, debug: boolean): Promise<APIResult>;
|
|
316
|
-
export declare function configEnable(instance: IPublicClientApplication, authorizedUser: User, configurationId: string, enabled: boolean, debug: boolean): Promise<APIResult>;
|
|
317
|
-
export declare function configRemove(instance: IPublicClientApplication, authorizedUser: User, config: Config, workspaceId: string, debug: boolean): Promise<APIResult>;
|
|
318
|
-
export declare function configConsentForRead(instance: IPublicClientApplication, authorizedUser: User, configId: string, tid: string, consent: boolean): Promise<APIResult>;
|
|
319
|
-
export declare function configConsentForWrite(instance: IPublicClientApplication, authorizedUser: User, configId: string, tid: string, consent: boolean): Promise<APIResult>;
|
|
320
|
-
export declare function configsRefresh(instance: IPublicClientApplication, authorizedUser: User, workspaceId: string, ii: InitInfo, debug: boolean): Promise<APIResult>;
|
|
321
|
-
export declare function initGet(instance: IPublicClientApplication, user: User, ii: InitInfo, tasks: TaskArray, debug: boolean): Promise<APIResult>;
|
|
322
|
-
export declare function tenantAdd(instance: IPublicClientApplication, authorizedUser: User, tenant: Tenant, workspaceId: string): Promise<APIResult>;
|
|
323
|
-
export declare function tenantRemove(instance: IPublicClientApplication, authorizedUser: User, tenant: Tenant, workspaceId: string, debug: boolean): Promise<APIResult>;
|
|
324
|
-
export declare function userAdd(instance: IPublicClientApplication, authorizedUser: User, user: User, workspaceId: string): Promise<APIResult>;
|
|
325
|
-
export declare function userRemove(instance: IPublicClientApplication, authorizedUser: User, user: User, workspaceId: string): Promise<APIResult>;
|
|
326
|
-
export declare function workspaceEdit(instance: IPublicClientApplication, authorizedUser: User, workspaceId: string, workspaceName: string): Promise<APIResult>;
|
|
327
|
-
export declare function getPowerBIAccessToken(instance: IPublicClientApplication, user: User): Promise<string>;
|
|
328
|
-
export declare function canListRootAssignments(instance: IPublicClientApplication, user: User): Promise<boolean>;
|
|
329
|
-
export declare function elevateGlobalAdminToUserAccessAdmin(instance: IPublicClientApplication, user: User): Promise<boolean>;
|
|
330
|
-
export declare function processErrors(response: Response): Promise<string>;
|
|
331
|
-
export declare function adminDelete(instance: IPublicClientApplication, authorizedUser: User, user: User, workspaceId: string): Promise<APIResult>;
|
|
332
|
-
export declare function adminsGet(instance: IPublicClientApplication, user: User, workspaceID: string, debug: boolean): Promise<APIResult>;
|
|
333
|
-
export declare function adminPost(instance: IPublicClientApplication, authorizedUser: User, user: User, workspaceId: string): Promise<APIResult>;
|
|
334
|
-
export declare function configConsentReadPut(instance: IPublicClientApplication, authorizedUser: User, configId: string, tid: string, consent: boolean): Promise<APIResult>;
|
|
335
|
-
export declare function configConsentWritePut(instance: IPublicClientApplication, authorizedUser: User, configId: string, tid: string, consent: boolean): Promise<APIResult>;
|
|
336
|
-
export declare function configDelete(instance: IPublicClientApplication, authorizedUser: User, config: Config, workspaceId: string, debug: boolean): Promise<APIResult>;
|
|
337
|
-
export declare function configPatch(instance: IPublicClientApplication, authorizedUser: User, configurationId: string, enabled: boolean, debug: boolean): Promise<APIResult>;
|
|
338
|
-
export declare function configPost(instance: IPublicClientApplication, authorizedUser: User, config: Config, workspaceId: string, debug: boolean): Promise<APIResult>;
|
|
339
|
-
export declare function configPut(instance: IPublicClientApplication, authorizedUser: User, config: Config, debug: boolean): Promise<APIResult>;
|
|
340
|
-
export declare function configsGet(instance: IPublicClientApplication, user: User, workspaceID: string, debug: boolean): Promise<APIResult>;
|
|
341
|
-
export declare function initPost(instance: IPublicClientApplication, user: User, debug: boolean): Promise<APIResult>;
|
|
342
|
-
export declare function tenantDelete(instance: IPublicClientApplication, authorizedUser: User, tenant: Tenant, workspaceId: string, debug: boolean): Promise<APIResult>;
|
|
343
|
-
export declare function tenantsGet(instance: IPublicClientApplication, user: User, workspaceID: string, debug: boolean): Promise<APIResult>;
|
|
344
|
-
export declare function tenantPost(instance: IPublicClientApplication, addingUser: User, tenant: Tenant, workspaceId: string): Promise<APIResult>;
|
|
345
|
-
export declare function workspacePut(instance: IPublicClientApplication, authorizedUser: User, workspaceId: string, workspaceName: string): Promise<APIResult>;
|
|
346
|
-
export declare function workspacesGet(instance: IPublicClientApplication, user: User, debug: boolean): Promise<APIResult>;
|
|
347
|
-
export declare function readerPost(instance: IPublicClientApplication, authorizedUser: User, config: Config): Promise<APIResult>;
|
|
348
|
-
export {};
|
|
1
|
+
export * from './src/index'
|
|
2
|
+
export {}
|