@tailor-platform/sdk 1.76.2 → 1.79.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.
Files changed (103) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist/application-BB6BlUfk.mjs +3 -0
  3. package/dist/{application-CqjCcZ2n.mjs → application-fjqb-Gh8.mjs} +57 -10
  4. package/dist/application-fjqb-Gh8.mjs.map +1 -0
  5. package/dist/cli/commands/deploy/deploy.d.mts +8 -3
  6. package/dist/cli/commands/show.d.mts +9 -3
  7. package/dist/cli/commands/workspace/create.d.mts +3 -0
  8. package/dist/cli/commands/workspace/list.d.mts +1 -0
  9. package/dist/cli/commands/workspace/transform.d.mts +2 -0
  10. package/dist/cli/index.mjs +47 -22
  11. package/dist/cli/index.mjs.map +1 -1
  12. package/dist/cli/lib.d.mts +2 -2
  13. package/dist/cli/lib.mjs +2 -2
  14. package/dist/cli/lib.mjs.map +1 -1
  15. package/dist/cli/shared/workspace-name.d.mts +1 -0
  16. package/dist/cli/skills.mjs +1 -1
  17. package/dist/completion/zsh-worker.zsh +18 -1
  18. package/dist/configure/index.mjs +202 -7
  19. package/dist/configure/index.mjs.map +1 -1
  20. package/dist/configure/services/idp/index.d.mts +1 -4
  21. package/dist/configure/services/tailordb/schema.d.mts +1 -7
  22. package/dist/configure/services/workflow/execution-policy.d.mts +2 -2
  23. package/dist/configure/types/type.d.mts +1 -9
  24. package/dist/{crashreport-DZDr-TvH.mjs → crashreport-BNWUM6Kf.mjs} +2 -2
  25. package/dist/{crashreport-DZDr-TvH.mjs.map → crashreport-BNWUM6Kf.mjs.map} +1 -1
  26. package/dist/{crashreport-np4-_DX2.mjs → crashreport-BafWvjjX.mjs} +1 -1
  27. package/dist/errors-DVFS0AZk.mjs +100 -0
  28. package/dist/errors-DVFS0AZk.mjs.map +1 -0
  29. package/dist/{globals-z6zYMjlr.mjs → globals-B-n_3uYu.mjs} +11 -5
  30. package/dist/globals-B-n_3uYu.mjs.map +1 -0
  31. package/dist/{logger-BEiZZ3qT.mjs → logger-BwS4ppwO.mjs} +3 -3
  32. package/dist/logger-BwS4ppwO.mjs.map +1 -0
  33. package/dist/{registry-CTgoVWc_.mjs → registry-CXi7rJq7.mjs} +4 -3
  34. package/dist/registry-CXi7rJq7.mjs.map +1 -0
  35. package/dist/runtime/field-parse.d.mts +11 -0
  36. package/dist/runtime/globals.d.mts +4 -1
  37. package/dist/runtime/index.mjs +1 -1
  38. package/dist/runtime/workflow.d.mts +79 -15
  39. package/dist/runtime/workflow.mjs +2 -2
  40. package/dist/{runtime-DlklyuHN.mjs → runtime-CjMeYuPA.mjs} +1169 -539
  41. package/dist/runtime-CjMeYuPA.mjs.map +1 -0
  42. package/dist/{schema-DbTR1c6M.mjs → schema-CYrle8JZ.mjs} +222 -4
  43. package/dist/schema-CYrle8JZ.mjs.map +1 -0
  44. package/dist/{secretmanager-Bd45j7an.mjs → secretmanager-IY4UvinW.mjs} +42 -9
  45. package/dist/secretmanager-IY4UvinW.mjs.map +1 -0
  46. package/dist/service-CghpdV-9.mjs +3 -0
  47. package/dist/{service-DBFZQloR.mjs → service-Cp0I7ZFe.mjs} +3 -3
  48. package/dist/{service-DBFZQloR.mjs.map → service-Cp0I7ZFe.mjs.map} +1 -1
  49. package/dist/{service-BCRJ-3NV.mjs → service-D12iQGcS.mjs} +2 -2
  50. package/dist/{service-BCRJ-3NV.mjs.map → service-D12iQGcS.mjs.map} +1 -1
  51. package/dist/{test-env-key-IPapa1KJ.mjs → test-env-key-DuZycyWM.mjs} +2 -2
  52. package/dist/{test-env-key-IPapa1KJ.mjs.map → test-env-key-DuZycyWM.mjs.map} +1 -1
  53. package/dist/types/auth.generated.d.mts +9 -36
  54. package/dist/types/executor.generated.d.mts +19 -59
  55. package/dist/types/idp.generated.d.mts +518 -517
  56. package/dist/types/resolver.generated.d.mts +6 -2
  57. package/dist/types/tailordb.generated.d.mts +8 -7
  58. package/dist/utils/test/index.mjs +1 -1
  59. package/dist/vitest/environment.mjs +1 -1
  60. package/dist/vitest/index.d.mts +8 -8
  61. package/dist/vitest/index.mjs +635 -195
  62. package/dist/vitest/index.mjs.map +1 -1
  63. package/dist/vitest/mock.d.mts +8 -8
  64. package/dist/vitest/mocks/aigateway.d.mts +14 -4
  65. package/dist/vitest/mocks/authconnection.d.mts +14 -4
  66. package/dist/vitest/mocks/file.d.mts +24 -6
  67. package/dist/vitest/mocks/iconv.d.mts +28 -4
  68. package/dist/vitest/mocks/idp.d.mts +25 -9
  69. package/dist/vitest/mocks/secretmanager.d.mts +13 -4
  70. package/dist/vitest/mocks/tailordb.d.mts +48 -7
  71. package/dist/vitest/mocks/workflow.d.mts +68 -22
  72. package/dist/vitest/setup.mjs +2 -2
  73. package/dist/workflow-CkIDJpdg.mjs +69 -0
  74. package/dist/workflow-CkIDJpdg.mjs.map +1 -0
  75. package/docs/cli/application.md +58 -11
  76. package/docs/cli/setup.md +1 -1
  77. package/docs/cli/workspace.md +6 -4
  78. package/docs/cli-reference.md +12 -8
  79. package/docs/runtime.md +5 -6
  80. package/docs/services/aigateway.md +2 -0
  81. package/docs/services/tailordb.md +44 -0
  82. package/docs/services/workflow.md +3 -3
  83. package/docs/testing.md +105 -91
  84. package/package.json +7 -7
  85. package/dist/application-6zsDLGKv.mjs +0 -3
  86. package/dist/application-CqjCcZ2n.mjs.map +0 -1
  87. package/dist/configure/types/field-runtime.d.mts +0 -17
  88. package/dist/errors-Dtf2WPaW.mjs +0 -42
  89. package/dist/errors-Dtf2WPaW.mjs.map +0 -1
  90. package/dist/field-runtime-D4QWRiB1.mjs +0 -203
  91. package/dist/field-runtime-D4QWRiB1.mjs.map +0 -1
  92. package/dist/globals-z6zYMjlr.mjs.map +0 -1
  93. package/dist/logger-BEiZZ3qT.mjs.map +0 -1
  94. package/dist/registry-CTgoVWc_.mjs.map +0 -1
  95. package/dist/runtime-DlklyuHN.mjs.map +0 -1
  96. package/dist/schema-DbTR1c6M.mjs.map +0 -1
  97. package/dist/secretmanager-Bd45j7an.mjs.map +0 -1
  98. package/dist/service-CPMlIg3X.mjs +0 -3
  99. package/dist/types-BzJ7A_fn.mjs +0 -199
  100. package/dist/types-BzJ7A_fn.mjs.map +0 -1
  101. package/dist/types-CG9H7HuE.mjs +0 -4
  102. package/dist/workflow-DSwnYPPP.mjs +0 -45
  103. package/dist/workflow-DSwnYPPP.mjs.map +0 -1
@@ -30,6 +30,521 @@ type IdPEmailConfig = {
30
30
  /** Default subject for password reset emails */
31
31
  passwordResetSubject?: string | undefined;
32
32
  };
33
+ /**
34
+ * Per-operation permission policies for IdP users
35
+ */
36
+ type IdPPermission = {
37
+ create: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
38
+ user: string;
39
+ } | {
40
+ idpUser: "id" | "name" | "disabled";
41
+ } | {
42
+ oldIdpUser: "id" | "name" | "disabled";
43
+ } | {
44
+ newIdpUser: "id" | "name" | "disabled";
45
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
46
+ user: string;
47
+ } | {
48
+ idpUser: "id" | "name" | "disabled";
49
+ } | {
50
+ oldIdpUser: "id" | "name" | "disabled";
51
+ } | {
52
+ newIdpUser: "id" | "name" | "disabled";
53
+ })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
54
+ user: string;
55
+ } | {
56
+ idpUser: "id" | "name" | "disabled";
57
+ } | {
58
+ oldIdpUser: "id" | "name" | "disabled";
59
+ } | {
60
+ newIdpUser: "id" | "name" | "disabled";
61
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
62
+ user: string;
63
+ } | {
64
+ idpUser: "id" | "name" | "disabled";
65
+ } | {
66
+ oldIdpUser: "id" | "name" | "disabled";
67
+ } | {
68
+ newIdpUser: "id" | "name" | "disabled";
69
+ }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
70
+ user: string;
71
+ } | {
72
+ idpUser: "id" | "name" | "disabled";
73
+ } | {
74
+ oldIdpUser: "id" | "name" | "disabled";
75
+ } | {
76
+ newIdpUser: "id" | "name" | "disabled";
77
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
78
+ user: string;
79
+ } | {
80
+ idpUser: "id" | "name" | "disabled";
81
+ } | {
82
+ oldIdpUser: "id" | "name" | "disabled";
83
+ } | {
84
+ newIdpUser: "id" | "name" | "disabled";
85
+ })])[] | {
86
+ conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
87
+ user: string;
88
+ } | {
89
+ idpUser: "id" | "name" | "disabled";
90
+ } | {
91
+ oldIdpUser: "id" | "name" | "disabled";
92
+ } | {
93
+ newIdpUser: "id" | "name" | "disabled";
94
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
95
+ user: string;
96
+ } | {
97
+ idpUser: "id" | "name" | "disabled";
98
+ } | {
99
+ oldIdpUser: "id" | "name" | "disabled";
100
+ } | {
101
+ newIdpUser: "id" | "name" | "disabled";
102
+ })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
103
+ user: string;
104
+ } | {
105
+ idpUser: "id" | "name" | "disabled";
106
+ } | {
107
+ oldIdpUser: "id" | "name" | "disabled";
108
+ } | {
109
+ newIdpUser: "id" | "name" | "disabled";
110
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
111
+ user: string;
112
+ } | {
113
+ idpUser: "id" | "name" | "disabled";
114
+ } | {
115
+ oldIdpUser: "id" | "name" | "disabled";
116
+ } | {
117
+ newIdpUser: "id" | "name" | "disabled";
118
+ })])[];
119
+ description?: string | undefined;
120
+ permit?: boolean | undefined;
121
+ })[];
122
+ read: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
123
+ user: string;
124
+ } | {
125
+ idpUser: "id" | "name" | "disabled";
126
+ } | {
127
+ oldIdpUser: "id" | "name" | "disabled";
128
+ } | {
129
+ newIdpUser: "id" | "name" | "disabled";
130
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
131
+ user: string;
132
+ } | {
133
+ idpUser: "id" | "name" | "disabled";
134
+ } | {
135
+ oldIdpUser: "id" | "name" | "disabled";
136
+ } | {
137
+ newIdpUser: "id" | "name" | "disabled";
138
+ })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
139
+ user: string;
140
+ } | {
141
+ idpUser: "id" | "name" | "disabled";
142
+ } | {
143
+ oldIdpUser: "id" | "name" | "disabled";
144
+ } | {
145
+ newIdpUser: "id" | "name" | "disabled";
146
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
147
+ user: string;
148
+ } | {
149
+ idpUser: "id" | "name" | "disabled";
150
+ } | {
151
+ oldIdpUser: "id" | "name" | "disabled";
152
+ } | {
153
+ newIdpUser: "id" | "name" | "disabled";
154
+ }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
155
+ user: string;
156
+ } | {
157
+ idpUser: "id" | "name" | "disabled";
158
+ } | {
159
+ oldIdpUser: "id" | "name" | "disabled";
160
+ } | {
161
+ newIdpUser: "id" | "name" | "disabled";
162
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
163
+ user: string;
164
+ } | {
165
+ idpUser: "id" | "name" | "disabled";
166
+ } | {
167
+ oldIdpUser: "id" | "name" | "disabled";
168
+ } | {
169
+ newIdpUser: "id" | "name" | "disabled";
170
+ })])[] | {
171
+ conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
172
+ user: string;
173
+ } | {
174
+ idpUser: "id" | "name" | "disabled";
175
+ } | {
176
+ oldIdpUser: "id" | "name" | "disabled";
177
+ } | {
178
+ newIdpUser: "id" | "name" | "disabled";
179
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
180
+ user: string;
181
+ } | {
182
+ idpUser: "id" | "name" | "disabled";
183
+ } | {
184
+ oldIdpUser: "id" | "name" | "disabled";
185
+ } | {
186
+ newIdpUser: "id" | "name" | "disabled";
187
+ })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
188
+ user: string;
189
+ } | {
190
+ idpUser: "id" | "name" | "disabled";
191
+ } | {
192
+ oldIdpUser: "id" | "name" | "disabled";
193
+ } | {
194
+ newIdpUser: "id" | "name" | "disabled";
195
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
196
+ user: string;
197
+ } | {
198
+ idpUser: "id" | "name" | "disabled";
199
+ } | {
200
+ oldIdpUser: "id" | "name" | "disabled";
201
+ } | {
202
+ newIdpUser: "id" | "name" | "disabled";
203
+ })])[];
204
+ description?: string | undefined;
205
+ permit?: boolean | undefined;
206
+ })[];
207
+ update: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
208
+ user: string;
209
+ } | {
210
+ idpUser: "id" | "name" | "disabled";
211
+ } | {
212
+ oldIdpUser: "id" | "name" | "disabled";
213
+ } | {
214
+ newIdpUser: "id" | "name" | "disabled";
215
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
216
+ user: string;
217
+ } | {
218
+ idpUser: "id" | "name" | "disabled";
219
+ } | {
220
+ oldIdpUser: "id" | "name" | "disabled";
221
+ } | {
222
+ newIdpUser: "id" | "name" | "disabled";
223
+ })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
224
+ user: string;
225
+ } | {
226
+ idpUser: "id" | "name" | "disabled";
227
+ } | {
228
+ oldIdpUser: "id" | "name" | "disabled";
229
+ } | {
230
+ newIdpUser: "id" | "name" | "disabled";
231
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
232
+ user: string;
233
+ } | {
234
+ idpUser: "id" | "name" | "disabled";
235
+ } | {
236
+ oldIdpUser: "id" | "name" | "disabled";
237
+ } | {
238
+ newIdpUser: "id" | "name" | "disabled";
239
+ }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
240
+ user: string;
241
+ } | {
242
+ idpUser: "id" | "name" | "disabled";
243
+ } | {
244
+ oldIdpUser: "id" | "name" | "disabled";
245
+ } | {
246
+ newIdpUser: "id" | "name" | "disabled";
247
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
248
+ user: string;
249
+ } | {
250
+ idpUser: "id" | "name" | "disabled";
251
+ } | {
252
+ oldIdpUser: "id" | "name" | "disabled";
253
+ } | {
254
+ newIdpUser: "id" | "name" | "disabled";
255
+ })])[] | {
256
+ conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
257
+ user: string;
258
+ } | {
259
+ idpUser: "id" | "name" | "disabled";
260
+ } | {
261
+ oldIdpUser: "id" | "name" | "disabled";
262
+ } | {
263
+ newIdpUser: "id" | "name" | "disabled";
264
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
265
+ user: string;
266
+ } | {
267
+ idpUser: "id" | "name" | "disabled";
268
+ } | {
269
+ oldIdpUser: "id" | "name" | "disabled";
270
+ } | {
271
+ newIdpUser: "id" | "name" | "disabled";
272
+ })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
273
+ user: string;
274
+ } | {
275
+ idpUser: "id" | "name" | "disabled";
276
+ } | {
277
+ oldIdpUser: "id" | "name" | "disabled";
278
+ } | {
279
+ newIdpUser: "id" | "name" | "disabled";
280
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
281
+ user: string;
282
+ } | {
283
+ idpUser: "id" | "name" | "disabled";
284
+ } | {
285
+ oldIdpUser: "id" | "name" | "disabled";
286
+ } | {
287
+ newIdpUser: "id" | "name" | "disabled";
288
+ })])[];
289
+ description?: string | undefined;
290
+ permit?: boolean | undefined;
291
+ })[];
292
+ delete: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
293
+ user: string;
294
+ } | {
295
+ idpUser: "id" | "name" | "disabled";
296
+ } | {
297
+ oldIdpUser: "id" | "name" | "disabled";
298
+ } | {
299
+ newIdpUser: "id" | "name" | "disabled";
300
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
301
+ user: string;
302
+ } | {
303
+ idpUser: "id" | "name" | "disabled";
304
+ } | {
305
+ oldIdpUser: "id" | "name" | "disabled";
306
+ } | {
307
+ newIdpUser: "id" | "name" | "disabled";
308
+ })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
309
+ user: string;
310
+ } | {
311
+ idpUser: "id" | "name" | "disabled";
312
+ } | {
313
+ oldIdpUser: "id" | "name" | "disabled";
314
+ } | {
315
+ newIdpUser: "id" | "name" | "disabled";
316
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
317
+ user: string;
318
+ } | {
319
+ idpUser: "id" | "name" | "disabled";
320
+ } | {
321
+ oldIdpUser: "id" | "name" | "disabled";
322
+ } | {
323
+ newIdpUser: "id" | "name" | "disabled";
324
+ }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
325
+ user: string;
326
+ } | {
327
+ idpUser: "id" | "name" | "disabled";
328
+ } | {
329
+ oldIdpUser: "id" | "name" | "disabled";
330
+ } | {
331
+ newIdpUser: "id" | "name" | "disabled";
332
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
333
+ user: string;
334
+ } | {
335
+ idpUser: "id" | "name" | "disabled";
336
+ } | {
337
+ oldIdpUser: "id" | "name" | "disabled";
338
+ } | {
339
+ newIdpUser: "id" | "name" | "disabled";
340
+ })])[] | {
341
+ conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
342
+ user: string;
343
+ } | {
344
+ idpUser: "id" | "name" | "disabled";
345
+ } | {
346
+ oldIdpUser: "id" | "name" | "disabled";
347
+ } | {
348
+ newIdpUser: "id" | "name" | "disabled";
349
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
350
+ user: string;
351
+ } | {
352
+ idpUser: "id" | "name" | "disabled";
353
+ } | {
354
+ oldIdpUser: "id" | "name" | "disabled";
355
+ } | {
356
+ newIdpUser: "id" | "name" | "disabled";
357
+ })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
358
+ user: string;
359
+ } | {
360
+ idpUser: "id" | "name" | "disabled";
361
+ } | {
362
+ oldIdpUser: "id" | "name" | "disabled";
363
+ } | {
364
+ newIdpUser: "id" | "name" | "disabled";
365
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
366
+ user: string;
367
+ } | {
368
+ idpUser: "id" | "name" | "disabled";
369
+ } | {
370
+ oldIdpUser: "id" | "name" | "disabled";
371
+ } | {
372
+ newIdpUser: "id" | "name" | "disabled";
373
+ })])[];
374
+ description?: string | undefined;
375
+ permit?: boolean | undefined;
376
+ })[];
377
+ sendPasswordResetEmail?: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
378
+ user: string;
379
+ } | {
380
+ idpUser: "id" | "name" | "disabled";
381
+ } | {
382
+ oldIdpUser: "id" | "name" | "disabled";
383
+ } | {
384
+ newIdpUser: "id" | "name" | "disabled";
385
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
386
+ user: string;
387
+ } | {
388
+ idpUser: "id" | "name" | "disabled";
389
+ } | {
390
+ oldIdpUser: "id" | "name" | "disabled";
391
+ } | {
392
+ newIdpUser: "id" | "name" | "disabled";
393
+ })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
394
+ user: string;
395
+ } | {
396
+ idpUser: "id" | "name" | "disabled";
397
+ } | {
398
+ oldIdpUser: "id" | "name" | "disabled";
399
+ } | {
400
+ newIdpUser: "id" | "name" | "disabled";
401
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
402
+ user: string;
403
+ } | {
404
+ idpUser: "id" | "name" | "disabled";
405
+ } | {
406
+ oldIdpUser: "id" | "name" | "disabled";
407
+ } | {
408
+ newIdpUser: "id" | "name" | "disabled";
409
+ }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
410
+ user: string;
411
+ } | {
412
+ idpUser: "id" | "name" | "disabled";
413
+ } | {
414
+ oldIdpUser: "id" | "name" | "disabled";
415
+ } | {
416
+ newIdpUser: "id" | "name" | "disabled";
417
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
418
+ user: string;
419
+ } | {
420
+ idpUser: "id" | "name" | "disabled";
421
+ } | {
422
+ oldIdpUser: "id" | "name" | "disabled";
423
+ } | {
424
+ newIdpUser: "id" | "name" | "disabled";
425
+ })])[] | {
426
+ conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
427
+ user: string;
428
+ } | {
429
+ idpUser: "id" | "name" | "disabled";
430
+ } | {
431
+ oldIdpUser: "id" | "name" | "disabled";
432
+ } | {
433
+ newIdpUser: "id" | "name" | "disabled";
434
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
435
+ user: string;
436
+ } | {
437
+ idpUser: "id" | "name" | "disabled";
438
+ } | {
439
+ oldIdpUser: "id" | "name" | "disabled";
440
+ } | {
441
+ newIdpUser: "id" | "name" | "disabled";
442
+ })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
443
+ user: string;
444
+ } | {
445
+ idpUser: "id" | "name" | "disabled";
446
+ } | {
447
+ oldIdpUser: "id" | "name" | "disabled";
448
+ } | {
449
+ newIdpUser: "id" | "name" | "disabled";
450
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
451
+ user: string;
452
+ } | {
453
+ idpUser: "id" | "name" | "disabled";
454
+ } | {
455
+ oldIdpUser: "id" | "name" | "disabled";
456
+ } | {
457
+ newIdpUser: "id" | "name" | "disabled";
458
+ })])[];
459
+ description?: string | undefined;
460
+ permit?: boolean | undefined;
461
+ })[] | undefined;
462
+ unenrollMfa?: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
463
+ user: string;
464
+ } | {
465
+ idpUser: "id" | "name" | "disabled";
466
+ } | {
467
+ oldIdpUser: "id" | "name" | "disabled";
468
+ } | {
469
+ newIdpUser: "id" | "name" | "disabled";
470
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
471
+ user: string;
472
+ } | {
473
+ idpUser: "id" | "name" | "disabled";
474
+ } | {
475
+ oldIdpUser: "id" | "name" | "disabled";
476
+ } | {
477
+ newIdpUser: "id" | "name" | "disabled";
478
+ })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
479
+ user: string;
480
+ } | {
481
+ idpUser: "id" | "name" | "disabled";
482
+ } | {
483
+ oldIdpUser: "id" | "name" | "disabled";
484
+ } | {
485
+ newIdpUser: "id" | "name" | "disabled";
486
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
487
+ user: string;
488
+ } | {
489
+ idpUser: "id" | "name" | "disabled";
490
+ } | {
491
+ oldIdpUser: "id" | "name" | "disabled";
492
+ } | {
493
+ newIdpUser: "id" | "name" | "disabled";
494
+ }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
495
+ user: string;
496
+ } | {
497
+ idpUser: "id" | "name" | "disabled";
498
+ } | {
499
+ oldIdpUser: "id" | "name" | "disabled";
500
+ } | {
501
+ newIdpUser: "id" | "name" | "disabled";
502
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
503
+ user: string;
504
+ } | {
505
+ idpUser: "id" | "name" | "disabled";
506
+ } | {
507
+ oldIdpUser: "id" | "name" | "disabled";
508
+ } | {
509
+ newIdpUser: "id" | "name" | "disabled";
510
+ })])[] | {
511
+ conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
512
+ user: string;
513
+ } | {
514
+ idpUser: "id" | "name" | "disabled";
515
+ } | {
516
+ oldIdpUser: "id" | "name" | "disabled";
517
+ } | {
518
+ newIdpUser: "id" | "name" | "disabled";
519
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
520
+ user: string;
521
+ } | {
522
+ idpUser: "id" | "name" | "disabled";
523
+ } | {
524
+ oldIdpUser: "id" | "name" | "disabled";
525
+ } | {
526
+ newIdpUser: "id" | "name" | "disabled";
527
+ })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
528
+ user: string;
529
+ } | {
530
+ idpUser: "id" | "name" | "disabled";
531
+ } | {
532
+ oldIdpUser: "id" | "name" | "disabled";
533
+ } | {
534
+ newIdpUser: "id" | "name" | "disabled";
535
+ }), "=" | "!=" | "in" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
536
+ user: string;
537
+ } | {
538
+ idpUser: "id" | "name" | "disabled";
539
+ } | {
540
+ oldIdpUser: "id" | "name" | "disabled";
541
+ } | {
542
+ newIdpUser: "id" | "name" | "disabled";
543
+ })])[];
544
+ description?: string | undefined;
545
+ permit?: boolean | undefined;
546
+ })[] | undefined;
547
+ };
33
548
  type IdPInput = {
34
549
  /** IdP service name */
35
550
  name: string;
@@ -73,523 +588,9 @@ type IdPInput = {
73
588
  unenrollMfa?: boolean | undefined;
74
589
  } | undefined;
75
590
  /** Namespace-level email configuration defaults */
76
- emailConfig?: {
77
- fromName?: string | undefined;
78
- passwordResetSubject?: string | undefined;
79
- } | undefined;
591
+ emailConfig?: IdPEmailConfig;
80
592
  /** Per-operation permission policies for IdP users */
81
- permission?: {
82
- create: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
83
- user: string;
84
- } | {
85
- idpUser: "name" | "id" | "disabled";
86
- } | {
87
- oldIdpUser: "name" | "id" | "disabled";
88
- } | {
89
- newIdpUser: "name" | "id" | "disabled";
90
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
91
- user: string;
92
- } | {
93
- idpUser: "name" | "id" | "disabled";
94
- } | {
95
- oldIdpUser: "name" | "id" | "disabled";
96
- } | {
97
- newIdpUser: "name" | "id" | "disabled";
98
- })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
99
- user: string;
100
- } | {
101
- idpUser: "name" | "id" | "disabled";
102
- } | {
103
- oldIdpUser: "name" | "id" | "disabled";
104
- } | {
105
- newIdpUser: "name" | "id" | "disabled";
106
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
107
- user: string;
108
- } | {
109
- idpUser: "name" | "id" | "disabled";
110
- } | {
111
- oldIdpUser: "name" | "id" | "disabled";
112
- } | {
113
- newIdpUser: "name" | "id" | "disabled";
114
- }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
115
- user: string;
116
- } | {
117
- idpUser: "name" | "id" | "disabled";
118
- } | {
119
- oldIdpUser: "name" | "id" | "disabled";
120
- } | {
121
- newIdpUser: "name" | "id" | "disabled";
122
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
123
- user: string;
124
- } | {
125
- idpUser: "name" | "id" | "disabled";
126
- } | {
127
- oldIdpUser: "name" | "id" | "disabled";
128
- } | {
129
- newIdpUser: "name" | "id" | "disabled";
130
- })])[] | {
131
- conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
132
- user: string;
133
- } | {
134
- idpUser: "name" | "id" | "disabled";
135
- } | {
136
- oldIdpUser: "name" | "id" | "disabled";
137
- } | {
138
- newIdpUser: "name" | "id" | "disabled";
139
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
140
- user: string;
141
- } | {
142
- idpUser: "name" | "id" | "disabled";
143
- } | {
144
- oldIdpUser: "name" | "id" | "disabled";
145
- } | {
146
- newIdpUser: "name" | "id" | "disabled";
147
- })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
148
- user: string;
149
- } | {
150
- idpUser: "name" | "id" | "disabled";
151
- } | {
152
- oldIdpUser: "name" | "id" | "disabled";
153
- } | {
154
- newIdpUser: "name" | "id" | "disabled";
155
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
156
- user: string;
157
- } | {
158
- idpUser: "name" | "id" | "disabled";
159
- } | {
160
- oldIdpUser: "name" | "id" | "disabled";
161
- } | {
162
- newIdpUser: "name" | "id" | "disabled";
163
- })])[];
164
- description?: string | undefined;
165
- permit?: boolean | undefined;
166
- })[];
167
- read: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
168
- user: string;
169
- } | {
170
- idpUser: "name" | "id" | "disabled";
171
- } | {
172
- oldIdpUser: "name" | "id" | "disabled";
173
- } | {
174
- newIdpUser: "name" | "id" | "disabled";
175
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
176
- user: string;
177
- } | {
178
- idpUser: "name" | "id" | "disabled";
179
- } | {
180
- oldIdpUser: "name" | "id" | "disabled";
181
- } | {
182
- newIdpUser: "name" | "id" | "disabled";
183
- })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
184
- user: string;
185
- } | {
186
- idpUser: "name" | "id" | "disabled";
187
- } | {
188
- oldIdpUser: "name" | "id" | "disabled";
189
- } | {
190
- newIdpUser: "name" | "id" | "disabled";
191
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
192
- user: string;
193
- } | {
194
- idpUser: "name" | "id" | "disabled";
195
- } | {
196
- oldIdpUser: "name" | "id" | "disabled";
197
- } | {
198
- newIdpUser: "name" | "id" | "disabled";
199
- }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
200
- user: string;
201
- } | {
202
- idpUser: "name" | "id" | "disabled";
203
- } | {
204
- oldIdpUser: "name" | "id" | "disabled";
205
- } | {
206
- newIdpUser: "name" | "id" | "disabled";
207
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
208
- user: string;
209
- } | {
210
- idpUser: "name" | "id" | "disabled";
211
- } | {
212
- oldIdpUser: "name" | "id" | "disabled";
213
- } | {
214
- newIdpUser: "name" | "id" | "disabled";
215
- })])[] | {
216
- conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
217
- user: string;
218
- } | {
219
- idpUser: "name" | "id" | "disabled";
220
- } | {
221
- oldIdpUser: "name" | "id" | "disabled";
222
- } | {
223
- newIdpUser: "name" | "id" | "disabled";
224
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
225
- user: string;
226
- } | {
227
- idpUser: "name" | "id" | "disabled";
228
- } | {
229
- oldIdpUser: "name" | "id" | "disabled";
230
- } | {
231
- newIdpUser: "name" | "id" | "disabled";
232
- })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
233
- user: string;
234
- } | {
235
- idpUser: "name" | "id" | "disabled";
236
- } | {
237
- oldIdpUser: "name" | "id" | "disabled";
238
- } | {
239
- newIdpUser: "name" | "id" | "disabled";
240
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
241
- user: string;
242
- } | {
243
- idpUser: "name" | "id" | "disabled";
244
- } | {
245
- oldIdpUser: "name" | "id" | "disabled";
246
- } | {
247
- newIdpUser: "name" | "id" | "disabled";
248
- })])[];
249
- description?: string | undefined;
250
- permit?: boolean | undefined;
251
- })[];
252
- update: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
253
- user: string;
254
- } | {
255
- idpUser: "name" | "id" | "disabled";
256
- } | {
257
- oldIdpUser: "name" | "id" | "disabled";
258
- } | {
259
- newIdpUser: "name" | "id" | "disabled";
260
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
261
- user: string;
262
- } | {
263
- idpUser: "name" | "id" | "disabled";
264
- } | {
265
- oldIdpUser: "name" | "id" | "disabled";
266
- } | {
267
- newIdpUser: "name" | "id" | "disabled";
268
- })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
269
- user: string;
270
- } | {
271
- idpUser: "name" | "id" | "disabled";
272
- } | {
273
- oldIdpUser: "name" | "id" | "disabled";
274
- } | {
275
- newIdpUser: "name" | "id" | "disabled";
276
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
277
- user: string;
278
- } | {
279
- idpUser: "name" | "id" | "disabled";
280
- } | {
281
- oldIdpUser: "name" | "id" | "disabled";
282
- } | {
283
- newIdpUser: "name" | "id" | "disabled";
284
- }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
285
- user: string;
286
- } | {
287
- idpUser: "name" | "id" | "disabled";
288
- } | {
289
- oldIdpUser: "name" | "id" | "disabled";
290
- } | {
291
- newIdpUser: "name" | "id" | "disabled";
292
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
293
- user: string;
294
- } | {
295
- idpUser: "name" | "id" | "disabled";
296
- } | {
297
- oldIdpUser: "name" | "id" | "disabled";
298
- } | {
299
- newIdpUser: "name" | "id" | "disabled";
300
- })])[] | {
301
- conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
302
- user: string;
303
- } | {
304
- idpUser: "name" | "id" | "disabled";
305
- } | {
306
- oldIdpUser: "name" | "id" | "disabled";
307
- } | {
308
- newIdpUser: "name" | "id" | "disabled";
309
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
310
- user: string;
311
- } | {
312
- idpUser: "name" | "id" | "disabled";
313
- } | {
314
- oldIdpUser: "name" | "id" | "disabled";
315
- } | {
316
- newIdpUser: "name" | "id" | "disabled";
317
- })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
318
- user: string;
319
- } | {
320
- idpUser: "name" | "id" | "disabled";
321
- } | {
322
- oldIdpUser: "name" | "id" | "disabled";
323
- } | {
324
- newIdpUser: "name" | "id" | "disabled";
325
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
326
- user: string;
327
- } | {
328
- idpUser: "name" | "id" | "disabled";
329
- } | {
330
- oldIdpUser: "name" | "id" | "disabled";
331
- } | {
332
- newIdpUser: "name" | "id" | "disabled";
333
- })])[];
334
- description?: string | undefined;
335
- permit?: boolean | undefined;
336
- })[];
337
- delete: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
338
- user: string;
339
- } | {
340
- idpUser: "name" | "id" | "disabled";
341
- } | {
342
- oldIdpUser: "name" | "id" | "disabled";
343
- } | {
344
- newIdpUser: "name" | "id" | "disabled";
345
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
346
- user: string;
347
- } | {
348
- idpUser: "name" | "id" | "disabled";
349
- } | {
350
- oldIdpUser: "name" | "id" | "disabled";
351
- } | {
352
- newIdpUser: "name" | "id" | "disabled";
353
- })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
354
- user: string;
355
- } | {
356
- idpUser: "name" | "id" | "disabled";
357
- } | {
358
- oldIdpUser: "name" | "id" | "disabled";
359
- } | {
360
- newIdpUser: "name" | "id" | "disabled";
361
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
362
- user: string;
363
- } | {
364
- idpUser: "name" | "id" | "disabled";
365
- } | {
366
- oldIdpUser: "name" | "id" | "disabled";
367
- } | {
368
- newIdpUser: "name" | "id" | "disabled";
369
- }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
370
- user: string;
371
- } | {
372
- idpUser: "name" | "id" | "disabled";
373
- } | {
374
- oldIdpUser: "name" | "id" | "disabled";
375
- } | {
376
- newIdpUser: "name" | "id" | "disabled";
377
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
378
- user: string;
379
- } | {
380
- idpUser: "name" | "id" | "disabled";
381
- } | {
382
- oldIdpUser: "name" | "id" | "disabled";
383
- } | {
384
- newIdpUser: "name" | "id" | "disabled";
385
- })])[] | {
386
- conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
387
- user: string;
388
- } | {
389
- idpUser: "name" | "id" | "disabled";
390
- } | {
391
- oldIdpUser: "name" | "id" | "disabled";
392
- } | {
393
- newIdpUser: "name" | "id" | "disabled";
394
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
395
- user: string;
396
- } | {
397
- idpUser: "name" | "id" | "disabled";
398
- } | {
399
- oldIdpUser: "name" | "id" | "disabled";
400
- } | {
401
- newIdpUser: "name" | "id" | "disabled";
402
- })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
403
- user: string;
404
- } | {
405
- idpUser: "name" | "id" | "disabled";
406
- } | {
407
- oldIdpUser: "name" | "id" | "disabled";
408
- } | {
409
- newIdpUser: "name" | "id" | "disabled";
410
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
411
- user: string;
412
- } | {
413
- idpUser: "name" | "id" | "disabled";
414
- } | {
415
- oldIdpUser: "name" | "id" | "disabled";
416
- } | {
417
- newIdpUser: "name" | "id" | "disabled";
418
- })])[];
419
- description?: string | undefined;
420
- permit?: boolean | undefined;
421
- })[];
422
- sendPasswordResetEmail?: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
423
- user: string;
424
- } | {
425
- idpUser: "name" | "id" | "disabled";
426
- } | {
427
- oldIdpUser: "name" | "id" | "disabled";
428
- } | {
429
- newIdpUser: "name" | "id" | "disabled";
430
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
431
- user: string;
432
- } | {
433
- idpUser: "name" | "id" | "disabled";
434
- } | {
435
- oldIdpUser: "name" | "id" | "disabled";
436
- } | {
437
- newIdpUser: "name" | "id" | "disabled";
438
- })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
439
- user: string;
440
- } | {
441
- idpUser: "name" | "id" | "disabled";
442
- } | {
443
- oldIdpUser: "name" | "id" | "disabled";
444
- } | {
445
- newIdpUser: "name" | "id" | "disabled";
446
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
447
- user: string;
448
- } | {
449
- idpUser: "name" | "id" | "disabled";
450
- } | {
451
- oldIdpUser: "name" | "id" | "disabled";
452
- } | {
453
- newIdpUser: "name" | "id" | "disabled";
454
- }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
455
- user: string;
456
- } | {
457
- idpUser: "name" | "id" | "disabled";
458
- } | {
459
- oldIdpUser: "name" | "id" | "disabled";
460
- } | {
461
- newIdpUser: "name" | "id" | "disabled";
462
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
463
- user: string;
464
- } | {
465
- idpUser: "name" | "id" | "disabled";
466
- } | {
467
- oldIdpUser: "name" | "id" | "disabled";
468
- } | {
469
- newIdpUser: "name" | "id" | "disabled";
470
- })])[] | {
471
- conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
472
- user: string;
473
- } | {
474
- idpUser: "name" | "id" | "disabled";
475
- } | {
476
- oldIdpUser: "name" | "id" | "disabled";
477
- } | {
478
- newIdpUser: "name" | "id" | "disabled";
479
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
480
- user: string;
481
- } | {
482
- idpUser: "name" | "id" | "disabled";
483
- } | {
484
- oldIdpUser: "name" | "id" | "disabled";
485
- } | {
486
- newIdpUser: "name" | "id" | "disabled";
487
- })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
488
- user: string;
489
- } | {
490
- idpUser: "name" | "id" | "disabled";
491
- } | {
492
- oldIdpUser: "name" | "id" | "disabled";
493
- } | {
494
- newIdpUser: "name" | "id" | "disabled";
495
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
496
- user: string;
497
- } | {
498
- idpUser: "name" | "id" | "disabled";
499
- } | {
500
- oldIdpUser: "name" | "id" | "disabled";
501
- } | {
502
- newIdpUser: "name" | "id" | "disabled";
503
- })])[];
504
- description?: string | undefined;
505
- permit?: boolean | undefined;
506
- })[] | undefined;
507
- unenrollMfa?: readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
508
- user: string;
509
- } | {
510
- idpUser: "name" | "id" | "disabled";
511
- } | {
512
- oldIdpUser: "name" | "id" | "disabled";
513
- } | {
514
- newIdpUser: "name" | "id" | "disabled";
515
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
516
- user: string;
517
- } | {
518
- idpUser: "name" | "id" | "disabled";
519
- } | {
520
- oldIdpUser: "name" | "id" | "disabled";
521
- } | {
522
- newIdpUser: "name" | "id" | "disabled";
523
- })] | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
524
- user: string;
525
- } | {
526
- idpUser: "name" | "id" | "disabled";
527
- } | {
528
- oldIdpUser: "name" | "id" | "disabled";
529
- } | {
530
- newIdpUser: "name" | "id" | "disabled";
531
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
532
- user: string;
533
- } | {
534
- idpUser: "name" | "id" | "disabled";
535
- } | {
536
- oldIdpUser: "name" | "id" | "disabled";
537
- } | {
538
- newIdpUser: "name" | "id" | "disabled";
539
- }), boolean] | readonly (boolean | readonly [(string | boolean | readonly string[] | readonly boolean[] | {
540
- user: string;
541
- } | {
542
- idpUser: "name" | "id" | "disabled";
543
- } | {
544
- oldIdpUser: "name" | "id" | "disabled";
545
- } | {
546
- newIdpUser: "name" | "id" | "disabled";
547
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
548
- user: string;
549
- } | {
550
- idpUser: "name" | "id" | "disabled";
551
- } | {
552
- oldIdpUser: "name" | "id" | "disabled";
553
- } | {
554
- newIdpUser: "name" | "id" | "disabled";
555
- })])[] | {
556
- conditions: readonly [(string | boolean | readonly string[] | readonly boolean[] | {
557
- user: string;
558
- } | {
559
- idpUser: "name" | "id" | "disabled";
560
- } | {
561
- oldIdpUser: "name" | "id" | "disabled";
562
- } | {
563
- newIdpUser: "name" | "id" | "disabled";
564
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
565
- user: string;
566
- } | {
567
- idpUser: "name" | "id" | "disabled";
568
- } | {
569
- oldIdpUser: "name" | "id" | "disabled";
570
- } | {
571
- newIdpUser: "name" | "id" | "disabled";
572
- })] | readonly (readonly [(string | boolean | readonly string[] | readonly boolean[] | {
573
- user: string;
574
- } | {
575
- idpUser: "name" | "id" | "disabled";
576
- } | {
577
- oldIdpUser: "name" | "id" | "disabled";
578
- } | {
579
- newIdpUser: "name" | "id" | "disabled";
580
- }), "in" | "=" | "!=" | "not in", (string | boolean | readonly string[] | readonly boolean[] | {
581
- user: string;
582
- } | {
583
- idpUser: "name" | "id" | "disabled";
584
- } | {
585
- oldIdpUser: "name" | "id" | "disabled";
586
- } | {
587
- newIdpUser: "name" | "id" | "disabled";
588
- })])[];
589
- description?: string | undefined;
590
- permit?: boolean | undefined;
591
- })[] | undefined;
592
- } | undefined;
593
+ permission?: IdPPermission;
593
594
  };
594
595
  //#endregion
595
- export { IdPEmailConfig, IdPGqlOperations, IdPGqlOperationsInput, IdPInput };
596
+ export { IdPEmailConfig, IdPGqlOperations, IdPGqlOperationsInput, IdPInput, IdPPermission };