@burdenoff/microfe-admin 2026.529.1 → 2026.530.2
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/admin/components/TenantMembersPanel.js +218 -0
- package/dist/admin/components/TenantMembersPanel.js.map +1 -0
- package/dist/admin/pages/TenantDetailPage.js +35 -29
- package/dist/admin/pages/TenantDetailPage.js.map +1 -1
- package/dist/generated/global-operations.js +193 -123
- package/dist/generated/global-operations.js.map +1 -1
- package/dist/generated/global-types.js +4 -2
- package/dist/generated/global-types.js.map +1 -1
- package/package.json +1 -1
|
@@ -22,6 +22,16 @@ var n = {}, r = e`
|
|
|
22
22
|
metadata
|
|
23
23
|
}
|
|
24
24
|
`, i = e`
|
|
25
|
+
fragment TenantMemberFields on TenantMember {
|
|
26
|
+
id
|
|
27
|
+
tenantId
|
|
28
|
+
userId
|
|
29
|
+
role
|
|
30
|
+
addedBy
|
|
31
|
+
createdAt
|
|
32
|
+
updatedAt
|
|
33
|
+
}
|
|
34
|
+
`, a = e`
|
|
25
35
|
fragment AuditLogFields on AuditLog {
|
|
26
36
|
id
|
|
27
37
|
action
|
|
@@ -51,7 +61,7 @@ var n = {}, r = e`
|
|
|
51
61
|
metadata
|
|
52
62
|
createdAt
|
|
53
63
|
}
|
|
54
|
-
`,
|
|
64
|
+
`, o = e`
|
|
55
65
|
fragment PlatformProductFields on PlatformProduct {
|
|
56
66
|
id
|
|
57
67
|
name
|
|
@@ -66,7 +76,7 @@ var n = {}, r = e`
|
|
|
66
76
|
createdAt
|
|
67
77
|
updatedAt
|
|
68
78
|
}
|
|
69
|
-
`,
|
|
79
|
+
`, s = e`
|
|
70
80
|
fragment SupportTicketFields on SupportTicket {
|
|
71
81
|
id
|
|
72
82
|
subject
|
|
@@ -89,7 +99,7 @@ var n = {}, r = e`
|
|
|
89
99
|
source
|
|
90
100
|
slaBreachStatus
|
|
91
101
|
}
|
|
92
|
-
`,
|
|
102
|
+
`, c = e`
|
|
93
103
|
fragment UserFields on User {
|
|
94
104
|
id
|
|
95
105
|
email
|
|
@@ -107,21 +117,21 @@ var n = {}, r = e`
|
|
|
107
117
|
lastLoginAt
|
|
108
118
|
defaultWorkspaceId
|
|
109
119
|
}
|
|
110
|
-
`,
|
|
120
|
+
`, l = e`
|
|
111
121
|
mutation CreateTenant($input: CreateTenantInput!) {
|
|
112
122
|
createTenant(input: $input) {
|
|
113
123
|
...TenantFields
|
|
114
124
|
}
|
|
115
125
|
}
|
|
116
126
|
${r}`;
|
|
117
|
-
function
|
|
127
|
+
function u(e) {
|
|
118
128
|
let r = {
|
|
119
129
|
...n,
|
|
120
130
|
...e
|
|
121
131
|
};
|
|
122
|
-
return t.useMutation(
|
|
132
|
+
return t.useMutation(l, r);
|
|
123
133
|
}
|
|
124
|
-
var
|
|
134
|
+
var d = e`
|
|
125
135
|
query GetTenant($id: ID!) {
|
|
126
136
|
tenant(id: $id) {
|
|
127
137
|
...TenantFields
|
|
@@ -139,12 +149,12 @@ var u = e`
|
|
|
139
149
|
}
|
|
140
150
|
}
|
|
141
151
|
${r}`;
|
|
142
|
-
function
|
|
152
|
+
function f(e) {
|
|
143
153
|
let r = {
|
|
144
154
|
...n,
|
|
145
155
|
...e
|
|
146
156
|
};
|
|
147
|
-
return t.useQuery(
|
|
157
|
+
return t.useQuery(d, r);
|
|
148
158
|
}
|
|
149
159
|
e`
|
|
150
160
|
query GetTenantBySlug($slug: String!) {
|
|
@@ -162,7 +172,7 @@ e`
|
|
|
162
172
|
}
|
|
163
173
|
}
|
|
164
174
|
`;
|
|
165
|
-
var
|
|
175
|
+
var p = e`
|
|
166
176
|
mutation SuspendTenant($id: ID!) {
|
|
167
177
|
suspendTenant(id: $id) {
|
|
168
178
|
id
|
|
@@ -170,14 +180,14 @@ var f = e`
|
|
|
170
180
|
}
|
|
171
181
|
}
|
|
172
182
|
`;
|
|
173
|
-
function
|
|
183
|
+
function m(e) {
|
|
174
184
|
let r = {
|
|
175
185
|
...n,
|
|
176
186
|
...e
|
|
177
187
|
};
|
|
178
|
-
return t.useMutation(
|
|
188
|
+
return t.useMutation(p, r);
|
|
179
189
|
}
|
|
180
|
-
var
|
|
190
|
+
var h = e`
|
|
181
191
|
mutation ActivateTenant($id: ID!) {
|
|
182
192
|
activateTenant(id: $id) {
|
|
183
193
|
id
|
|
@@ -185,12 +195,12 @@ var m = e`
|
|
|
185
195
|
}
|
|
186
196
|
}
|
|
187
197
|
`;
|
|
188
|
-
function
|
|
198
|
+
function g(e) {
|
|
189
199
|
let r = {
|
|
190
200
|
...n,
|
|
191
201
|
...e
|
|
192
202
|
};
|
|
193
|
-
return t.useMutation(
|
|
203
|
+
return t.useMutation(h, r);
|
|
194
204
|
}
|
|
195
205
|
e`
|
|
196
206
|
mutation ConfigureTenant($id: ID!, $input: ConfigureTenantInput!) {
|
|
@@ -199,7 +209,7 @@ e`
|
|
|
199
209
|
}
|
|
200
210
|
}
|
|
201
211
|
${r}`;
|
|
202
|
-
var
|
|
212
|
+
var _ = e`
|
|
203
213
|
query ListTenants($filter: TenantFilterInput, $limit: Int, $offset: Int) {
|
|
204
214
|
tenants(filter: $filter, limit: $limit, offset: $offset) {
|
|
205
215
|
items {
|
|
@@ -212,12 +222,12 @@ var g = e`
|
|
|
212
222
|
}
|
|
213
223
|
}
|
|
214
224
|
${r}`;
|
|
215
|
-
function
|
|
225
|
+
function v(e) {
|
|
216
226
|
let r = {
|
|
217
227
|
...n,
|
|
218
228
|
...e
|
|
219
229
|
};
|
|
220
|
-
return t.useQuery(
|
|
230
|
+
return t.useQuery(_, r);
|
|
221
231
|
}
|
|
222
232
|
e`
|
|
223
233
|
mutation ProvisionDedicatedTenant($input: ProvisionDedicatedTenantInput!) {
|
|
@@ -232,21 +242,81 @@ e`
|
|
|
232
242
|
}
|
|
233
243
|
}
|
|
234
244
|
${r}`;
|
|
235
|
-
var
|
|
245
|
+
var y = e`
|
|
246
|
+
query ListTenantMembers($tenantId: ID!, $limit: Int = 50, $offset: Int = 0) {
|
|
247
|
+
tenantMembers(tenantId: $tenantId, limit: $limit, offset: $offset) {
|
|
248
|
+
items {
|
|
249
|
+
...TenantMemberFields
|
|
250
|
+
}
|
|
251
|
+
total
|
|
252
|
+
limit
|
|
253
|
+
offset
|
|
254
|
+
hasMore
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
${i}`;
|
|
258
|
+
function b(e) {
|
|
259
|
+
let r = {
|
|
260
|
+
...n,
|
|
261
|
+
...e
|
|
262
|
+
};
|
|
263
|
+
return t.useQuery(y, r);
|
|
264
|
+
}
|
|
265
|
+
var x = e`
|
|
266
|
+
mutation AddTenantMember($input: AddTenantMemberInput!) {
|
|
267
|
+
addTenantMember(input: $input) {
|
|
268
|
+
...TenantMemberFields
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
${i}`;
|
|
272
|
+
function S(e) {
|
|
273
|
+
let r = {
|
|
274
|
+
...n,
|
|
275
|
+
...e
|
|
276
|
+
};
|
|
277
|
+
return t.useMutation(x, r);
|
|
278
|
+
}
|
|
279
|
+
var C = e`
|
|
280
|
+
mutation RemoveTenantMember($tenantId: ID!, $userId: ID!) {
|
|
281
|
+
removeTenantMember(tenantId: $tenantId, userId: $userId)
|
|
282
|
+
}
|
|
283
|
+
`;
|
|
284
|
+
function w(e) {
|
|
285
|
+
let r = {
|
|
286
|
+
...n,
|
|
287
|
+
...e
|
|
288
|
+
};
|
|
289
|
+
return t.useMutation(C, r);
|
|
290
|
+
}
|
|
291
|
+
var T = e`
|
|
292
|
+
mutation UpdateTenantMemberRole($tenantId: ID!, $userId: ID!, $role: TenantMemberRole!) {
|
|
293
|
+
updateTenantMemberRole(tenantId: $tenantId, userId: $userId, role: $role) {
|
|
294
|
+
...TenantMemberFields
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
${i}`;
|
|
298
|
+
function E(e) {
|
|
299
|
+
let r = {
|
|
300
|
+
...n,
|
|
301
|
+
...e
|
|
302
|
+
};
|
|
303
|
+
return t.useMutation(T, r);
|
|
304
|
+
}
|
|
305
|
+
var D = e`
|
|
236
306
|
mutation UpdateTenant($id: ID!, $input: UpdateTenantInput!) {
|
|
237
307
|
updateTenant(id: $id, input: $input) {
|
|
238
308
|
...TenantFields
|
|
239
309
|
}
|
|
240
310
|
}
|
|
241
311
|
${r}`;
|
|
242
|
-
function
|
|
312
|
+
function O(e) {
|
|
243
313
|
let r = {
|
|
244
314
|
...n,
|
|
245
315
|
...e
|
|
246
316
|
};
|
|
247
|
-
return t.useMutation(
|
|
317
|
+
return t.useMutation(D, r);
|
|
248
318
|
}
|
|
249
|
-
var
|
|
319
|
+
var k = e`
|
|
250
320
|
query ListAuditLogs($actorId: ID, $resource: String, $resourceId: ID, $limit: Int, $offset: Int) {
|
|
251
321
|
auditLogs(
|
|
252
322
|
actorId: $actorId
|
|
@@ -270,13 +340,13 @@ var b = e`
|
|
|
270
340
|
totalCount
|
|
271
341
|
}
|
|
272
342
|
}
|
|
273
|
-
${
|
|
274
|
-
function
|
|
343
|
+
${a}`;
|
|
344
|
+
function A(e) {
|
|
275
345
|
let r = {
|
|
276
346
|
...n,
|
|
277
347
|
...e
|
|
278
348
|
};
|
|
279
|
-
return t.useQuery(
|
|
349
|
+
return t.useQuery(k, r);
|
|
280
350
|
}
|
|
281
351
|
e`
|
|
282
352
|
query ListActivityLogs($filter: ActivityFilterInput, $limit: Int, $offset: Int) {
|
|
@@ -289,7 +359,7 @@ e`
|
|
|
289
359
|
}
|
|
290
360
|
}
|
|
291
361
|
${ee}`;
|
|
292
|
-
var
|
|
362
|
+
var j = e`
|
|
293
363
|
query ListAllPlans {
|
|
294
364
|
getAllPlans {
|
|
295
365
|
id
|
|
@@ -302,14 +372,14 @@ var S = e`
|
|
|
302
372
|
}
|
|
303
373
|
}
|
|
304
374
|
`;
|
|
305
|
-
function
|
|
375
|
+
function M(e) {
|
|
306
376
|
let r = {
|
|
307
377
|
...n,
|
|
308
378
|
...e
|
|
309
379
|
};
|
|
310
|
-
return t.useQuery(
|
|
380
|
+
return t.useQuery(j, r);
|
|
311
381
|
}
|
|
312
|
-
var
|
|
382
|
+
var N = e`
|
|
313
383
|
query ListAllQuotas {
|
|
314
384
|
getAllQuotas {
|
|
315
385
|
id
|
|
@@ -319,14 +389,14 @@ var w = e`
|
|
|
319
389
|
}
|
|
320
390
|
}
|
|
321
391
|
`;
|
|
322
|
-
function
|
|
392
|
+
function P(e) {
|
|
323
393
|
let r = {
|
|
324
394
|
...n,
|
|
325
395
|
...e
|
|
326
396
|
};
|
|
327
|
-
return t.useQuery(
|
|
397
|
+
return t.useQuery(N, r);
|
|
328
398
|
}
|
|
329
|
-
var
|
|
399
|
+
var F = e`
|
|
330
400
|
query ListRefundRecords($orgIdFilter: String, $page: Int, $pageSize: Int) {
|
|
331
401
|
getRefundRecords(orgIdFilter: $orgIdFilter, page: $page, pageSize: $pageSize) {
|
|
332
402
|
records {
|
|
@@ -342,12 +412,12 @@ var E = e`
|
|
|
342
412
|
}
|
|
343
413
|
}
|
|
344
414
|
`;
|
|
345
|
-
function
|
|
415
|
+
function I(e) {
|
|
346
416
|
let r = {
|
|
347
417
|
...n,
|
|
348
418
|
...e
|
|
349
419
|
};
|
|
350
|
-
return t.useQuery(
|
|
420
|
+
return t.useQuery(F, r);
|
|
351
421
|
}
|
|
352
422
|
e`
|
|
353
423
|
query ListTaxRates($active: Boolean) {
|
|
@@ -378,7 +448,7 @@ e`
|
|
|
378
448
|
}
|
|
379
449
|
}
|
|
380
450
|
`;
|
|
381
|
-
var
|
|
451
|
+
var L = e`
|
|
382
452
|
query ListNewsletters($filter: NewsletterFilterInput, $limit: Int, $offset: Int) {
|
|
383
453
|
newsletters(filter: $filter, limit: $limit, offset: $offset) {
|
|
384
454
|
id
|
|
@@ -390,14 +460,14 @@ var O = e`
|
|
|
390
460
|
}
|
|
391
461
|
}
|
|
392
462
|
`;
|
|
393
|
-
function
|
|
463
|
+
function R(e) {
|
|
394
464
|
let r = {
|
|
395
465
|
...n,
|
|
396
466
|
...e
|
|
397
467
|
};
|
|
398
|
-
return t.useQuery(
|
|
468
|
+
return t.useQuery(L, r);
|
|
399
469
|
}
|
|
400
|
-
var
|
|
470
|
+
var z = e`
|
|
401
471
|
query GetNewsletterStats {
|
|
402
472
|
newsletterStats {
|
|
403
473
|
totalNewsletters
|
|
@@ -408,12 +478,12 @@ var A = e`
|
|
|
408
478
|
}
|
|
409
479
|
}
|
|
410
480
|
`;
|
|
411
|
-
function
|
|
481
|
+
function B(e) {
|
|
412
482
|
let r = {
|
|
413
483
|
...n,
|
|
414
484
|
...e
|
|
415
485
|
};
|
|
416
|
-
return t.useQuery(
|
|
486
|
+
return t.useQuery(z, r);
|
|
417
487
|
}
|
|
418
488
|
e`
|
|
419
489
|
mutation CreateNewsletter($input: CreateNewsletterInput!) {
|
|
@@ -423,7 +493,7 @@ e`
|
|
|
423
493
|
}
|
|
424
494
|
}
|
|
425
495
|
`;
|
|
426
|
-
var
|
|
496
|
+
var V = e`
|
|
427
497
|
mutation SendNewsletter($id: ID!) {
|
|
428
498
|
sendNewsletter(id: $id) {
|
|
429
499
|
id
|
|
@@ -432,66 +502,66 @@ var M = e`
|
|
|
432
502
|
}
|
|
433
503
|
}
|
|
434
504
|
`;
|
|
435
|
-
function
|
|
505
|
+
function H(e) {
|
|
436
506
|
let r = {
|
|
437
507
|
...n,
|
|
438
508
|
...e
|
|
439
509
|
};
|
|
440
|
-
return t.useMutation(
|
|
510
|
+
return t.useMutation(V, r);
|
|
441
511
|
}
|
|
442
|
-
var
|
|
512
|
+
var U = e`
|
|
443
513
|
query GetDashboardTenantCount {
|
|
444
514
|
tenants(limit: 1, offset: 0) {
|
|
445
515
|
total
|
|
446
516
|
}
|
|
447
517
|
}
|
|
448
518
|
`;
|
|
449
|
-
function
|
|
519
|
+
function W(e) {
|
|
450
520
|
let r = {
|
|
451
521
|
...n,
|
|
452
522
|
...e
|
|
453
523
|
};
|
|
454
|
-
return t.useQuery(
|
|
524
|
+
return t.useQuery(U, r);
|
|
455
525
|
}
|
|
456
|
-
var
|
|
526
|
+
var G = e`
|
|
457
527
|
query GetDashboardOrganizationCount {
|
|
458
528
|
allOrganizations(limit: 1, offset: 0) {
|
|
459
529
|
total
|
|
460
530
|
}
|
|
461
531
|
}
|
|
462
532
|
`;
|
|
463
|
-
function
|
|
533
|
+
function K(e) {
|
|
464
534
|
let r = {
|
|
465
535
|
...n,
|
|
466
536
|
...e
|
|
467
537
|
};
|
|
468
|
-
return t.useQuery(
|
|
538
|
+
return t.useQuery(G, r);
|
|
469
539
|
}
|
|
470
|
-
var
|
|
540
|
+
var q = e`
|
|
471
541
|
query GetDashboardActiveWorkspaceCount {
|
|
472
542
|
allWorkspaces(filter: {status: ACTIVE}, limit: 1, offset: 0) {
|
|
473
543
|
total
|
|
474
544
|
}
|
|
475
545
|
}
|
|
476
546
|
`;
|
|
477
|
-
function
|
|
547
|
+
function J(e) {
|
|
478
548
|
let r = {
|
|
479
549
|
...n,
|
|
480
550
|
...e
|
|
481
551
|
};
|
|
482
|
-
return t.useQuery(
|
|
552
|
+
return t.useQuery(q, r);
|
|
483
553
|
}
|
|
484
|
-
var
|
|
554
|
+
var Y = e`
|
|
485
555
|
query GetDashboardUserCount {
|
|
486
556
|
userCount
|
|
487
557
|
}
|
|
488
558
|
`;
|
|
489
|
-
function
|
|
559
|
+
function X(e) {
|
|
490
560
|
let r = {
|
|
491
561
|
...n,
|
|
492
562
|
...e
|
|
493
563
|
};
|
|
494
|
-
return t.useQuery(
|
|
564
|
+
return t.useQuery(Y, r);
|
|
495
565
|
}
|
|
496
566
|
e`
|
|
497
567
|
query GetDashboardSupportStats {
|
|
@@ -516,7 +586,7 @@ e`
|
|
|
516
586
|
}
|
|
517
587
|
}
|
|
518
588
|
`;
|
|
519
|
-
var
|
|
589
|
+
var Z = e`
|
|
520
590
|
query GetRecentActivityLogs($limit: Int) {
|
|
521
591
|
activityLogs(limit: $limit, offset: 0) {
|
|
522
592
|
nodes {
|
|
@@ -536,14 +606,14 @@ var H = e`
|
|
|
536
606
|
}
|
|
537
607
|
}
|
|
538
608
|
`;
|
|
539
|
-
function
|
|
609
|
+
function te(e) {
|
|
540
610
|
let r = {
|
|
541
611
|
...n,
|
|
542
612
|
...e
|
|
543
613
|
};
|
|
544
|
-
return t.useQuery(
|
|
614
|
+
return t.useQuery(Z, r);
|
|
545
615
|
}
|
|
546
|
-
var
|
|
616
|
+
var Q = e`
|
|
547
617
|
query ListFeatureFlags($filter: FeatureFlagFilterInput, $limit: Int, $offset: Int) {
|
|
548
618
|
featureFlags(filter: $filter, limit: $limit, offset: $offset) {
|
|
549
619
|
items {
|
|
@@ -560,12 +630,12 @@ var W = e`
|
|
|
560
630
|
}
|
|
561
631
|
}
|
|
562
632
|
`;
|
|
563
|
-
function
|
|
633
|
+
function ne(e) {
|
|
564
634
|
let r = {
|
|
565
635
|
...n,
|
|
566
636
|
...e
|
|
567
637
|
};
|
|
568
|
-
return t.useQuery(
|
|
638
|
+
return t.useQuery(Q, r);
|
|
569
639
|
}
|
|
570
640
|
e`
|
|
571
641
|
query GetFeatureFlag($id: ID!) {
|
|
@@ -590,7 +660,7 @@ e`
|
|
|
590
660
|
}
|
|
591
661
|
}
|
|
592
662
|
`;
|
|
593
|
-
var
|
|
663
|
+
var re = e`
|
|
594
664
|
mutation UpdateFeatureFlag($id: ID!, $input: UpdateFeatureFlagInput!) {
|
|
595
665
|
updateFeatureFlag(id: $id, input: $input) {
|
|
596
666
|
id
|
|
@@ -599,26 +669,26 @@ var K = e`
|
|
|
599
669
|
}
|
|
600
670
|
}
|
|
601
671
|
`;
|
|
602
|
-
function
|
|
672
|
+
function ie(e) {
|
|
603
673
|
let r = {
|
|
604
674
|
...n,
|
|
605
675
|
...e
|
|
606
676
|
};
|
|
607
|
-
return t.useMutation(
|
|
677
|
+
return t.useMutation(re, r);
|
|
608
678
|
}
|
|
609
|
-
var
|
|
679
|
+
var ae = e`
|
|
610
680
|
mutation DeleteFeatureFlag($id: ID!) {
|
|
611
681
|
deleteFeatureFlag(id: $id)
|
|
612
682
|
}
|
|
613
683
|
`;
|
|
614
|
-
function
|
|
684
|
+
function oe(e) {
|
|
615
685
|
let r = {
|
|
616
686
|
...n,
|
|
617
687
|
...e
|
|
618
688
|
};
|
|
619
|
-
return t.useMutation(
|
|
689
|
+
return t.useMutation(ae, r);
|
|
620
690
|
}
|
|
621
|
-
var
|
|
691
|
+
var se = e`
|
|
622
692
|
query ListOrganizations($filter: OrganizationFilterInput, $limit: Int, $offset: Int) {
|
|
623
693
|
allOrganizations(filter: $filter, limit: $limit, offset: $offset) {
|
|
624
694
|
items {
|
|
@@ -636,14 +706,14 @@ var Y = e`
|
|
|
636
706
|
}
|
|
637
707
|
}
|
|
638
708
|
`;
|
|
639
|
-
function
|
|
709
|
+
function ce(e) {
|
|
640
710
|
let r = {
|
|
641
711
|
...n,
|
|
642
712
|
...e
|
|
643
713
|
};
|
|
644
|
-
return t.useQuery(
|
|
714
|
+
return t.useQuery(se, r);
|
|
645
715
|
}
|
|
646
|
-
var
|
|
716
|
+
var le = e`
|
|
647
717
|
mutation UpdateOrganization($id: ID!, $input: UpdateOrganizationInput!) {
|
|
648
718
|
updateOrganization(id: $id, input: $input) {
|
|
649
719
|
id
|
|
@@ -652,14 +722,14 @@ var Z = e`
|
|
|
652
722
|
}
|
|
653
723
|
}
|
|
654
724
|
`;
|
|
655
|
-
function
|
|
725
|
+
function ue(e) {
|
|
656
726
|
let r = {
|
|
657
727
|
...n,
|
|
658
728
|
...e
|
|
659
729
|
};
|
|
660
|
-
return t.useMutation(
|
|
730
|
+
return t.useMutation(le, r);
|
|
661
731
|
}
|
|
662
|
-
var
|
|
732
|
+
var de = e`
|
|
663
733
|
query ListPlatformProducts($filter: PlatformProductFilterInput, $limit: Int, $offset: Int) {
|
|
664
734
|
platformProducts(filter: $filter, limit: $limit, offset: $offset) {
|
|
665
735
|
items {
|
|
@@ -669,13 +739,13 @@ var ne = e`
|
|
|
669
739
|
hasMore
|
|
670
740
|
}
|
|
671
741
|
}
|
|
672
|
-
${
|
|
673
|
-
function
|
|
742
|
+
${o}`;
|
|
743
|
+
function fe(e) {
|
|
674
744
|
let r = {
|
|
675
745
|
...n,
|
|
676
746
|
...e
|
|
677
747
|
};
|
|
678
|
-
return t.useQuery(
|
|
748
|
+
return t.useQuery(de, r);
|
|
679
749
|
}
|
|
680
750
|
e`
|
|
681
751
|
query GetPlatformProduct($id: ID!) {
|
|
@@ -683,14 +753,14 @@ e`
|
|
|
683
753
|
...PlatformProductFields
|
|
684
754
|
}
|
|
685
755
|
}
|
|
686
|
-
${
|
|
756
|
+
${o}`, e`
|
|
687
757
|
query GetPlatformProductBySlug($slug: String!) {
|
|
688
758
|
platformProductBySlug(slug: $slug) {
|
|
689
759
|
...PlatformProductFields
|
|
690
760
|
}
|
|
691
761
|
}
|
|
692
|
-
${
|
|
693
|
-
var
|
|
762
|
+
${o}`;
|
|
763
|
+
var pe = e`
|
|
694
764
|
query GetPlatformProductStats {
|
|
695
765
|
platformProductStats {
|
|
696
766
|
total
|
|
@@ -701,14 +771,14 @@ var ie = e`
|
|
|
701
771
|
}
|
|
702
772
|
}
|
|
703
773
|
`;
|
|
704
|
-
function
|
|
774
|
+
function me(e) {
|
|
705
775
|
let r = {
|
|
706
776
|
...n,
|
|
707
777
|
...e
|
|
708
778
|
};
|
|
709
|
-
return t.useQuery(
|
|
779
|
+
return t.useQuery(pe, r);
|
|
710
780
|
}
|
|
711
|
-
var
|
|
781
|
+
var he = e`
|
|
712
782
|
query ListRoles($scopeId: String!) {
|
|
713
783
|
roles(scopeId: $scopeId) {
|
|
714
784
|
id
|
|
@@ -725,24 +795,24 @@ var oe = e`
|
|
|
725
795
|
}
|
|
726
796
|
}
|
|
727
797
|
`;
|
|
728
|
-
function
|
|
798
|
+
function ge(e) {
|
|
729
799
|
let r = {
|
|
730
800
|
...n,
|
|
731
801
|
...e
|
|
732
802
|
};
|
|
733
|
-
return t.useQuery(
|
|
803
|
+
return t.useQuery(he, r);
|
|
734
804
|
}
|
|
735
|
-
var
|
|
805
|
+
var _e = e`
|
|
736
806
|
query GetResourceTypes {
|
|
737
807
|
resourceTypes
|
|
738
808
|
}
|
|
739
809
|
`;
|
|
740
|
-
function
|
|
810
|
+
function ve(e) {
|
|
741
811
|
let r = {
|
|
742
812
|
...n,
|
|
743
813
|
...e
|
|
744
814
|
};
|
|
745
|
-
return t.useQuery(
|
|
815
|
+
return t.useQuery(_e, r);
|
|
746
816
|
}
|
|
747
817
|
e`
|
|
748
818
|
mutation CreateRole($input: CreateRoleInput!) {
|
|
@@ -763,7 +833,7 @@ e`
|
|
|
763
833
|
deleteRole(id: $id, reassignToRoleId: $reassignToRoleId)
|
|
764
834
|
}
|
|
765
835
|
`;
|
|
766
|
-
var
|
|
836
|
+
var ye = e`
|
|
767
837
|
query AdminGetSSOConfig($tenantId: String!) {
|
|
768
838
|
getSSOConfig(tenantId: $tenantId) {
|
|
769
839
|
id
|
|
@@ -778,14 +848,14 @@ var ue = e`
|
|
|
778
848
|
}
|
|
779
849
|
}
|
|
780
850
|
`;
|
|
781
|
-
function
|
|
851
|
+
function be(e) {
|
|
782
852
|
let r = {
|
|
783
853
|
...n,
|
|
784
854
|
...e
|
|
785
855
|
};
|
|
786
|
-
return t.useQuery(
|
|
856
|
+
return t.useQuery(ye, r);
|
|
787
857
|
}
|
|
788
|
-
var
|
|
858
|
+
var xe = e`
|
|
789
859
|
mutation AdminSaveSSOConfig($tenantId: String!, $input: SSOConfigInput!) {
|
|
790
860
|
saveSSOConfig(tenantId: $tenantId, input: $input) {
|
|
791
861
|
id
|
|
@@ -800,24 +870,24 @@ var fe = e`
|
|
|
800
870
|
}
|
|
801
871
|
}
|
|
802
872
|
`;
|
|
803
|
-
function
|
|
873
|
+
function Se(e) {
|
|
804
874
|
let r = {
|
|
805
875
|
...n,
|
|
806
876
|
...e
|
|
807
877
|
};
|
|
808
|
-
return t.useMutation(
|
|
878
|
+
return t.useMutation(xe, r);
|
|
809
879
|
}
|
|
810
|
-
var
|
|
880
|
+
var Ce = e`
|
|
811
881
|
mutation AdminDeleteSSOConfig($tenantId: String!) {
|
|
812
882
|
deleteSSOConfig(tenantId: $tenantId)
|
|
813
883
|
}
|
|
814
884
|
`;
|
|
815
|
-
function
|
|
885
|
+
function we(e) {
|
|
816
886
|
let r = {
|
|
817
887
|
...n,
|
|
818
888
|
...e
|
|
819
889
|
};
|
|
820
|
-
return t.useMutation(
|
|
890
|
+
return t.useMutation(Ce, r);
|
|
821
891
|
}
|
|
822
892
|
e`
|
|
823
893
|
query ListSupportTickets($filter: SupportTicketFilterInput, $limit: Int, $offset: Int) {
|
|
@@ -829,7 +899,7 @@ e`
|
|
|
829
899
|
hasMore
|
|
830
900
|
}
|
|
831
901
|
}
|
|
832
|
-
${
|
|
902
|
+
${s}`, e`
|
|
833
903
|
query GetSupportTicket($id: ID!) {
|
|
834
904
|
supportTicket(id: $id) {
|
|
835
905
|
...SupportTicketFields
|
|
@@ -845,7 +915,7 @@ e`
|
|
|
845
915
|
}
|
|
846
916
|
}
|
|
847
917
|
}
|
|
848
|
-
${
|
|
918
|
+
${s}`, e`
|
|
849
919
|
query GetSupportStats($filter: SupportTicketFilterInput) {
|
|
850
920
|
supportStats(filter: $filter) {
|
|
851
921
|
totalTickets
|
|
@@ -867,7 +937,7 @@ e`
|
|
|
867
937
|
...SupportTicketFields
|
|
868
938
|
}
|
|
869
939
|
}
|
|
870
|
-
${
|
|
940
|
+
${s}`, e`
|
|
871
941
|
mutation AssignSupportTicket($id: ID!, $assignedTo: String!) {
|
|
872
942
|
assignSupportTicket(id: $id, assignedTo: $assignedTo) {
|
|
873
943
|
id
|
|
@@ -890,7 +960,7 @@ e`
|
|
|
890
960
|
}
|
|
891
961
|
}
|
|
892
962
|
`;
|
|
893
|
-
var
|
|
963
|
+
var Te = e`
|
|
894
964
|
query ListSyncOutboxEntries($filter: SyncOutboxFilterInput, $limit: Int, $offset: Int) {
|
|
895
965
|
listSyncOutboxEntries(filter: $filter, limit: $limit, offset: $offset) {
|
|
896
966
|
items {
|
|
@@ -910,14 +980,14 @@ var ge = e`
|
|
|
910
980
|
}
|
|
911
981
|
}
|
|
912
982
|
`;
|
|
913
|
-
function
|
|
983
|
+
function Ee(e) {
|
|
914
984
|
let r = {
|
|
915
985
|
...n,
|
|
916
986
|
...e
|
|
917
987
|
};
|
|
918
|
-
return t.useQuery(
|
|
988
|
+
return t.useQuery(Te, r);
|
|
919
989
|
}
|
|
920
|
-
var
|
|
990
|
+
var De = e`
|
|
921
991
|
query SyncOutboxStats {
|
|
922
992
|
syncOutboxStats {
|
|
923
993
|
pending
|
|
@@ -927,14 +997,14 @@ var ve = e`
|
|
|
927
997
|
}
|
|
928
998
|
}
|
|
929
999
|
`;
|
|
930
|
-
function
|
|
1000
|
+
function $(e) {
|
|
931
1001
|
let r = {
|
|
932
1002
|
...n,
|
|
933
1003
|
...e
|
|
934
1004
|
};
|
|
935
|
-
return t.useQuery(
|
|
1005
|
+
return t.useQuery(De, r);
|
|
936
1006
|
}
|
|
937
|
-
var
|
|
1007
|
+
var Oe = e`
|
|
938
1008
|
mutation RetrySyncOutboxEntry($id: ID!) {
|
|
939
1009
|
retrySyncOutboxEntry(id: $id) {
|
|
940
1010
|
success
|
|
@@ -948,14 +1018,14 @@ var be = e`
|
|
|
948
1018
|
}
|
|
949
1019
|
}
|
|
950
1020
|
`;
|
|
951
|
-
function
|
|
1021
|
+
function ke(e) {
|
|
952
1022
|
let r = {
|
|
953
1023
|
...n,
|
|
954
1024
|
...e
|
|
955
1025
|
};
|
|
956
|
-
return t.useMutation(
|
|
1026
|
+
return t.useMutation(Oe, r);
|
|
957
1027
|
}
|
|
958
|
-
var
|
|
1028
|
+
var Ae = e`
|
|
959
1029
|
query ListUsers($filter: UserFilterInput, $pagination: PaginationInput) {
|
|
960
1030
|
users(filter: $filter, pagination: $pagination) {
|
|
961
1031
|
users {
|
|
@@ -965,13 +1035,13 @@ var xe = e`
|
|
|
965
1035
|
hasMore
|
|
966
1036
|
}
|
|
967
1037
|
}
|
|
968
|
-
${
|
|
969
|
-
function
|
|
1038
|
+
${c}`;
|
|
1039
|
+
function je(e) {
|
|
970
1040
|
let r = {
|
|
971
1041
|
...n,
|
|
972
1042
|
...e
|
|
973
1043
|
};
|
|
974
|
-
return t.useQuery(
|
|
1044
|
+
return t.useQuery(Ae, r);
|
|
975
1045
|
}
|
|
976
1046
|
e`
|
|
977
1047
|
query GetUser($id: ID!) {
|
|
@@ -979,7 +1049,7 @@ e`
|
|
|
979
1049
|
...UserFields
|
|
980
1050
|
}
|
|
981
1051
|
}
|
|
982
|
-
${
|
|
1052
|
+
${c}`, e`
|
|
983
1053
|
query GetUserCount {
|
|
984
1054
|
userCount
|
|
985
1055
|
}
|
|
@@ -989,22 +1059,22 @@ e`
|
|
|
989
1059
|
...UserFields
|
|
990
1060
|
}
|
|
991
1061
|
}
|
|
992
|
-
${
|
|
993
|
-
var
|
|
1062
|
+
${c}`;
|
|
1063
|
+
var Me = e`
|
|
994
1064
|
mutation UpdateUser($id: ID!, $input: AdminUpdateUserInput!) {
|
|
995
1065
|
updateUser(id: $id, input: $input) {
|
|
996
1066
|
...UserFields
|
|
997
1067
|
}
|
|
998
1068
|
}
|
|
999
|
-
${
|
|
1000
|
-
function
|
|
1069
|
+
${c}`;
|
|
1070
|
+
function Ne(e) {
|
|
1001
1071
|
let r = {
|
|
1002
1072
|
...n,
|
|
1003
1073
|
...e
|
|
1004
1074
|
};
|
|
1005
|
-
return t.useMutation(
|
|
1075
|
+
return t.useMutation(Me, r);
|
|
1006
1076
|
}
|
|
1007
|
-
var
|
|
1077
|
+
var Pe = e`
|
|
1008
1078
|
query ListWorkspaces($limit: Int, $offset: Int) {
|
|
1009
1079
|
allWorkspaces(limit: $limit, offset: $offset) {
|
|
1010
1080
|
items {
|
|
@@ -1016,14 +1086,14 @@ var Te = e`
|
|
|
1016
1086
|
}
|
|
1017
1087
|
}
|
|
1018
1088
|
`;
|
|
1019
|
-
function
|
|
1089
|
+
function Fe(e) {
|
|
1020
1090
|
let r = {
|
|
1021
1091
|
...n,
|
|
1022
1092
|
...e
|
|
1023
1093
|
};
|
|
1024
|
-
return t.useQuery(
|
|
1094
|
+
return t.useQuery(Pe, r);
|
|
1025
1095
|
}
|
|
1026
1096
|
//#endregion
|
|
1027
|
-
export {
|
|
1097
|
+
export { g as useActivateTenantMutation, S as useAddTenantMemberMutation, we as useAdminDeleteSsoConfigMutation, be as useAdminGetSsoConfigQuery, Se as useAdminSaveSsoConfigMutation, u as useCreateTenantMutation, oe as useDeleteFeatureFlagMutation, J as useGetDashboardActiveWorkspaceCountQuery, K as useGetDashboardOrganizationCountQuery, W as useGetDashboardTenantCountQuery, X as useGetDashboardUserCountQuery, B as useGetNewsletterStatsQuery, me as useGetPlatformProductStatsQuery, te as useGetRecentActivityLogsQuery, ve as useGetResourceTypesQuery, f as useGetTenantQuery, M as useListAllPlansQuery, P as useListAllQuotasQuery, A as useListAuditLogsQuery, ne as useListFeatureFlagsQuery, R as useListNewslettersQuery, ce as useListOrganizationsQuery, fe as useListPlatformProductsQuery, I as useListRefundRecordsQuery, ge as useListRolesQuery, Ee as useListSyncOutboxEntriesQuery, b as useListTenantMembersQuery, v as useListTenantsQuery, je as useListUsersQuery, Fe as useListWorkspacesQuery, w as useRemoveTenantMemberMutation, ke as useRetrySyncOutboxEntryMutation, H as useSendNewsletterMutation, m as useSuspendTenantMutation, $ as useSyncOutboxStatsQuery, ie as useUpdateFeatureFlagMutation, ue as useUpdateOrganizationMutation, E as useUpdateTenantMemberRoleMutation, O as useUpdateTenantMutation, Ne as useUpdateUserMutation };
|
|
1028
1098
|
|
|
1029
1099
|
//# sourceMappingURL=global-operations.js.map
|