@faiber/faiber-idp 0.5.0 → 0.5.1

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.
@@ -20,6 +20,16 @@ export class IdpOperations extends ServiceApi {
20
20
  routerOpenapiJsonGet(options) {
21
21
  return this.client.request({ ...options, method: "GET", url: `/api/openapi.json` });
22
22
  }
23
+ /**
24
+ * Performs the discovery operation for the oidc capability.
25
+ * Calls `GET /api/v1/.well-known/openid-configuration` through the shared IDP-aware Faiber client.
26
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
27
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
28
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
29
+ */
30
+ oidcDiscoveryGet(options) {
31
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/.well-known/openid-configuration` });
32
+ }
23
33
  /**
24
34
  * Performs the permissions index operation for the acl capability.
25
35
  * Calls `GET /api/v1/acl/permissions` through the shared IDP-aware Faiber client.
@@ -108,6 +118,61 @@ export class IdpOperations extends ServiceApi {
108
118
  authLoginAccountPost(data, options) {
109
119
  return this.client.request({ ...options, method: "POST", url: `/api/v1/auth/account-login`, data: urlEncoded(data), headers: { ...options?.headers, "Content-Type": "application/x-www-form-urlencoded" } });
110
120
  }
121
+ /**
122
+ * Performs the public show operation for the identity authority capability.
123
+ * Calls `GET /api/v1/auth/authority` through the shared IDP-aware Faiber client.
124
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
125
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
126
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
127
+ */
128
+ identityAuthorityPublicShowGet(options) {
129
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/authority` });
130
+ }
131
+ /**
132
+ * Performs the start operation for the custom oauth capability.
133
+ * Calls `GET /api/v1/auth/custom-oauth/{provider}` through the shared IDP-aware Faiber client.
134
+ * @param provider Backend path identifier `provider`.
135
+ * @param params Typed query parameters; omitted members retain backend defaults.
136
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
137
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
138
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
139
+ */
140
+ customOauthStartGet(provider, params, options) {
141
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/custom-oauth/${encodeURIComponent(provider)}`, params });
142
+ }
143
+ /**
144
+ * Performs the callback operation for the custom oauth capability.
145
+ * Calls `GET /api/v1/auth/custom-oauth/{provider}/callback` through the shared IDP-aware Faiber client.
146
+ * @param provider Backend path identifier `provider`.
147
+ * @param params Typed query parameters; omitted members retain backend defaults.
148
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
149
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
150
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
151
+ */
152
+ customOauthCallbackGet(provider, params, options) {
153
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/custom-oauth/${encodeURIComponent(provider)}/callback`, params });
154
+ }
155
+ /**
156
+ * Performs the unlink operation for the custom oauth capability.
157
+ * Calls `DELETE /api/v1/auth/custom-oauth/{provider}/link` through the shared IDP-aware Faiber client.
158
+ * @param provider Backend path identifier `provider`.
159
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
160
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
161
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
162
+ */
163
+ customOauthUnlinkDelete(provider, options) {
164
+ return this.client.request({ ...options, method: "DELETE", url: `/api/v1/auth/custom-oauth/${encodeURIComponent(provider)}/link` });
165
+ }
166
+ /**
167
+ * Performs the public providers operation for the custom oauth capability.
168
+ * Calls `GET /api/v1/auth/custom-oauth/providers` through the shared IDP-aware Faiber client.
169
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
170
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
171
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
172
+ */
173
+ customOauthPublicProvidersGet(options) {
174
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/custom-oauth/providers` });
175
+ }
111
176
  /**
112
177
  * Performs the generate one time token route operation for the auth capability.
113
178
  * Calls `POST /api/v1/auth/generate/one-time` through the shared IDP-aware Faiber client.
@@ -118,6 +183,17 @@ export class IdpOperations extends ServiceApi {
118
183
  authGenerateOneTimeTokenRoutePost(options) {
119
184
  return this.client.request({ ...options, method: "POST", url: `/api/v1/auth/generate/one-time` });
120
185
  }
186
+ /**
187
+ * Performs the browser handoff operation for the auth capability.
188
+ * Calls `GET /api/v1/auth/handoff` through the shared IDP-aware Faiber client.
189
+ * @param params Typed query parameters; omitted members retain backend defaults.
190
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
191
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
192
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
193
+ */
194
+ authBrowserHandoffGet(params, options) {
195
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/handoff`, params });
196
+ }
121
197
  /**
122
198
  * Performs the list linked identities operation for the auth capability.
123
199
  * Calls `GET /api/v1/auth/identities` through the shared IDP-aware Faiber client.
@@ -152,22 +228,24 @@ export class IdpOperations extends ServiceApi {
152
228
  /**
153
229
  * Performs the authorize operation for the auth capability.
154
230
  * Calls `GET /api/v1/auth/native/authorize` through the shared IDP-aware Faiber client.
231
+ * @param params Typed query parameters; omitted members retain backend defaults.
155
232
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
156
233
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
157
234
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
158
235
  */
159
- authAuthorizeGet(options) {
160
- return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/native/authorize` });
236
+ authAuthorizeGet(params, options) {
237
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/native/authorize`, params });
161
238
  }
162
239
  /**
163
240
  * Performs the token operation for the auth capability.
164
241
  * Calls `POST /api/v1/auth/native/token` through the shared IDP-aware Faiber client.
242
+ * @param data Typed URL-encoded form.
165
243
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
166
244
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
167
245
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
168
246
  */
169
- authTokenPost(options) {
170
- return this.client.request({ ...options, method: "POST", url: `/api/v1/auth/native/token` });
247
+ authTokenPost(data, options) {
248
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/auth/native/token`, data: urlEncoded(data), headers: { ...options?.headers, "Content-Type": "application/x-www-form-urlencoded" } });
171
249
  }
172
250
  /**
173
251
  * Performs the oauth unlink operation for the auth capability.
@@ -298,6 +376,17 @@ export class IdpOperations extends ServiceApi {
298
376
  authLoginWebPost(data, options) {
299
377
  return this.client.request({ ...options, method: "POST", url: `/api/v1/auth/web-login`, data: urlEncoded(data), headers: { ...options?.headers, "Content-Type": "application/x-www-form-urlencoded" } });
300
378
  }
379
+ /**
380
+ * Performs the enroll operation for the identity authority capability.
381
+ * Calls `POST /api/v1/federation/enroll` through the shared IDP-aware Faiber client.
382
+ * @param data Typed JSON request body.
383
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
384
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
385
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
386
+ */
387
+ identityAuthorityEnrollPost(data, options) {
388
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/federation/enroll`, data: data });
389
+ }
301
390
  /**
302
391
  * Performs the flow integration show operation for the integration capability.
303
392
  * Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
@@ -308,6 +397,209 @@ export class IdpOperations extends ServiceApi {
308
397
  integrationFlowIntegrationShowGet(options) {
309
398
  return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
310
399
  }
400
+ /**
401
+ * Performs the authorize operation for the oidc capability.
402
+ * Calls `GET /api/v1/oauth2/authorize` through the shared IDP-aware Faiber client.
403
+ * @param params Typed query parameters; omitted members retain backend defaults.
404
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
405
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
406
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
407
+ */
408
+ oidcAuthorizeGet(params, options) {
409
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/oauth2/authorize`, params });
410
+ }
411
+ /**
412
+ * Performs the backchannel logout operation for the oidc capability.
413
+ * Calls `POST /api/v1/oauth2/backchannel-logout` through the shared IDP-aware Faiber client.
414
+ * @param data Typed URL-encoded form.
415
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
416
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
417
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
418
+ */
419
+ oidcBackchannelLogoutPost(data, options) {
420
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/oauth2/backchannel-logout`, data: urlEncoded(data), headers: { ...options?.headers, "Content-Type": "application/x-www-form-urlencoded" } });
421
+ }
422
+ /**
423
+ * Performs the introspect operation for the oidc capability.
424
+ * Calls `POST /api/v1/oauth2/introspect` through the shared IDP-aware Faiber client.
425
+ * @param data Typed URL-encoded form.
426
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
427
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
428
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
429
+ */
430
+ oidcIntrospectPost(data, options) {
431
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/oauth2/introspect`, data: urlEncoded(data), headers: { ...options?.headers, "Content-Type": "application/x-www-form-urlencoded" } });
432
+ }
433
+ /**
434
+ * Performs the jwks operation for the oidc capability.
435
+ * Calls `GET /api/v1/oauth2/jwks` through the shared IDP-aware Faiber client.
436
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
437
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
438
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
439
+ */
440
+ oidcJwksGet(options) {
441
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/oauth2/jwks` });
442
+ }
443
+ /**
444
+ * Performs the logout operation for the oidc capability.
445
+ * Calls `GET /api/v1/oauth2/logout` through the shared IDP-aware Faiber client.
446
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
447
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
448
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
449
+ */
450
+ oidcLogoutGet(options) {
451
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/oauth2/logout` });
452
+ }
453
+ /**
454
+ * Performs the logout operation for the oidc capability.
455
+ * Calls `POST /api/v1/oauth2/logout` through the shared IDP-aware Faiber client.
456
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
457
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
458
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
459
+ */
460
+ oidcLogoutPost(options) {
461
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/oauth2/logout` });
462
+ }
463
+ /**
464
+ * Performs the revoke operation for the oidc capability.
465
+ * Calls `POST /api/v1/oauth2/revoke` through the shared IDP-aware Faiber client.
466
+ * @param data Typed URL-encoded form.
467
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
468
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
469
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
470
+ */
471
+ oidcRevokePost(data, options) {
472
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/oauth2/revoke`, data: urlEncoded(data), headers: { ...options?.headers, "Content-Type": "application/x-www-form-urlencoded" } });
473
+ }
474
+ /**
475
+ * Performs the token operation for the oidc capability.
476
+ * Calls `POST /api/v1/oauth2/token` through the shared IDP-aware Faiber client.
477
+ * @param data Typed URL-encoded form.
478
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
479
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
480
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
481
+ */
482
+ oidcTokenPost(data, options) {
483
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/oauth2/token`, data: urlEncoded(data), headers: { ...options?.headers, "Content-Type": "application/x-www-form-urlencoded" } });
484
+ }
485
+ /**
486
+ * Performs the userinfo operation for the oidc capability.
487
+ * Calls `GET /api/v1/oauth2/userinfo` through the shared IDP-aware Faiber client.
488
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
489
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
490
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
491
+ */
492
+ oidcUserinfoGet(options) {
493
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/oauth2/userinfo` });
494
+ }
495
+ /**
496
+ * Performs the userinfo operation for the oidc capability.
497
+ * Calls `POST /api/v1/oauth2/userinfo` through the shared IDP-aware Faiber client.
498
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
499
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
500
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
501
+ */
502
+ oidcUserinfoPost(options) {
503
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/oauth2/userinfo` });
504
+ }
505
+ /**
506
+ * Performs the list operation for the custom oauth capability.
507
+ * Calls `GET /api/v1/settings/custom-oauth` through the shared IDP-aware Faiber client.
508
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
509
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
510
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
511
+ */
512
+ customOauthListGet(options) {
513
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/settings/custom-oauth` });
514
+ }
515
+ /**
516
+ * Performs the create operation for the custom oauth capability.
517
+ * Calls `POST /api/v1/settings/custom-oauth` through the shared IDP-aware Faiber client.
518
+ * @param data Typed JSON request body.
519
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
520
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
521
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
522
+ */
523
+ customOauthCreatePost(data, options) {
524
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/settings/custom-oauth`, data: data });
525
+ }
526
+ /**
527
+ * Performs the remove operation for the custom oauth capability.
528
+ * Calls `DELETE /api/v1/settings/custom-oauth/{id}` through the shared IDP-aware Faiber client.
529
+ * @param id Backend path identifier `id`.
530
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
531
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
532
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
533
+ */
534
+ customOauthRemoveDelete(id, options) {
535
+ return this.client.request({ ...options, method: "DELETE", url: `/api/v1/settings/custom-oauth/${encodeURIComponent(id)}` });
536
+ }
537
+ /**
538
+ * Performs the update operation for the custom oauth capability.
539
+ * Calls `PUT /api/v1/settings/custom-oauth/{id}` through the shared IDP-aware Faiber client.
540
+ * @param id Backend path identifier `id`.
541
+ * @param data Typed JSON request body.
542
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
543
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
544
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
545
+ */
546
+ customOauthUpdatePut(id, data, options) {
547
+ return this.client.request({ ...options, method: "PUT", url: `/api/v1/settings/custom-oauth/${encodeURIComponent(id)}`, data: data });
548
+ }
549
+ /**
550
+ * Performs the admin show operation for the identity authority capability.
551
+ * Calls `GET /api/v1/settings/identity-authority` through the shared IDP-aware Faiber client.
552
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
553
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
554
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
555
+ */
556
+ identityAuthorityAdminShowGet(options) {
557
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/settings/identity-authority` });
558
+ }
559
+ /**
560
+ * Performs the update operation for the identity authority capability.
561
+ * Calls `PUT /api/v1/settings/identity-authority` through the shared IDP-aware Faiber client.
562
+ * @param data Typed JSON request body.
563
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
564
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
565
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
566
+ */
567
+ identityAuthorityUpdatePut(data, options) {
568
+ return this.client.request({ ...options, method: "PUT", url: `/api/v1/settings/identity-authority`, data: data });
569
+ }
570
+ /**
571
+ * Performs the discover operation for the identity authority capability.
572
+ * Calls `POST /api/v1/settings/identity-authority/discover` through the shared IDP-aware Faiber client.
573
+ * @param data Typed JSON request body.
574
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
575
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
576
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
577
+ */
578
+ identityAuthorityDiscoverPost(data, options) {
579
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/settings/identity-authority/discover`, data: data });
580
+ }
581
+ /**
582
+ * Performs the pair canonical operation for the identity authority capability.
583
+ * Calls `POST /api/v1/settings/identity-authority/pair` through the shared IDP-aware Faiber client.
584
+ * @param data Typed JSON request body.
585
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
586
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
587
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
588
+ */
589
+ identityAuthorityPairCanonicalPost(data, options) {
590
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/settings/identity-authority/pair`, data: data });
591
+ }
592
+ /**
593
+ * Performs the create pairing invitation operation for the identity authority capability.
594
+ * Calls `POST /api/v1/settings/identity-authority/pairing-invitations` through the shared IDP-aware Faiber client.
595
+ * @param data Typed JSON request body.
596
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
597
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
598
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
599
+ */
600
+ identityAuthorityCreatePairingInvitationPost(data, options) {
601
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/settings/identity-authority/pairing-invitations`, data: data });
602
+ }
311
603
  /**
312
604
  * Performs the oauth settings show operation for the settings capability.
313
605
  * Calls `GET /api/v1/settings/oauth` through the shared IDP-aware Faiber client.
@@ -329,6 +621,61 @@ export class IdpOperations extends ServiceApi {
329
621
  settingsOauthSettingsUpdatePut(data, options) {
330
622
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/settings/oauth`, data: data });
331
623
  }
624
+ /**
625
+ * Performs the list operation for the oauth clients capability.
626
+ * Calls `GET /api/v1/settings/oauth-clients` through the shared IDP-aware Faiber client.
627
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
628
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
629
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
630
+ */
631
+ oauthClientsListGet(options) {
632
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/settings/oauth-clients` });
633
+ }
634
+ /**
635
+ * Performs the create operation for the oauth clients capability.
636
+ * Calls `POST /api/v1/settings/oauth-clients` through the shared IDP-aware Faiber client.
637
+ * @param data Typed JSON request body.
638
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
639
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
640
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
641
+ */
642
+ oauthClientsCreatePost(data, options) {
643
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/settings/oauth-clients`, data: data });
644
+ }
645
+ /**
646
+ * Performs the remove operation for the oauth clients capability.
647
+ * Calls `DELETE /api/v1/settings/oauth-clients/{id}` through the shared IDP-aware Faiber client.
648
+ * @param id Backend path identifier `id`.
649
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
650
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
651
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
652
+ */
653
+ oauthClientsRemoveDelete(id, options) {
654
+ return this.client.request({ ...options, method: "DELETE", url: `/api/v1/settings/oauth-clients/${encodeURIComponent(id)}` });
655
+ }
656
+ /**
657
+ * Performs the update operation for the oauth clients capability.
658
+ * Calls `PUT /api/v1/settings/oauth-clients/{id}` through the shared IDP-aware Faiber client.
659
+ * @param id Backend path identifier `id`.
660
+ * @param data Typed JSON request body.
661
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
662
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
663
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
664
+ */
665
+ oauthClientsUpdatePut(id, data, options) {
666
+ return this.client.request({ ...options, method: "PUT", url: `/api/v1/settings/oauth-clients/${encodeURIComponent(id)}`, data: data });
667
+ }
668
+ /**
669
+ * Performs the rotate operation for the oauth clients capability.
670
+ * Calls `POST /api/v1/settings/oauth-clients/{id}/rotate-secret` through the shared IDP-aware Faiber client.
671
+ * @param id Backend path identifier `id`.
672
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
673
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
674
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
675
+ */
676
+ oauthClientsRotatePost(id, options) {
677
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/settings/oauth-clients/${encodeURIComponent(id)}/rotate-secret` });
678
+ }
332
679
  /**
333
680
  * Performs the users index operation for the user capability.
334
681
  * Calls `GET /api/v1/users` through the shared IDP-aware Faiber client.
@@ -480,6 +827,17 @@ export class IdpOperations extends ServiceApi {
480
827
  userUserSetStatusPut(userId, data, options) {
481
828
  return this.client.request({ ...options, method: "PUT", url: `/api/v1/users/${encodeURIComponent(userId)}/status`, data: data });
482
829
  }
830
+ /**
831
+ * Performs the users directory operation for the user capability.
832
+ * Calls `GET /api/v1/users/directory` through the shared IDP-aware Faiber client.
833
+ * @param params Typed query parameters; omitted members retain backend defaults.
834
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
835
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
836
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
837
+ */
838
+ userUsersDirectoryGet(params, options) {
839
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/users/directory`, params });
840
+ }
483
841
  /**
484
842
  * Performs the register operation for the user capability.
485
843
  * Calls `POST /api/v1/users/register` through the shared IDP-aware Faiber client.
@@ -1 +1 @@
1
- {"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,UAAU,EAAwC,MAAM,kBAAkB,CAAC;AAGhG,MAAM,OAAO,aAAc,SAAQ,UAAU;IAC3C;;;;;;OAMG;IACH,oBAAoB,CAAC,OAAwB;QAC3C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAiC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC;IACtG,CAAC;IACD;;;;;;OAMG;IACH,oBAAoB,CAAC,OAAwB;QAC3C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAiC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,mBAAmB,EAAE,CAAC,CAAC;IACtH,CAAC;IACD;;;;;;OAMG;IACH,sBAAsB,CAAC,OAAwB;QAC7C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAmC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,yBAAyB,EAAE,CAAC,CAAC;IAC9H,CAAC;IACD;;;;;;OAMG;IACH,gBAAgB,CAAC,OAAwB;QACvC,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA6B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,mBAAmB,EAAE,CAAC,CAAC;IAClH,CAAC;IACD;;;;;;;OAOG;IACH,kBAAkB,CAAC,IAA+B,EAAE,OAAmD;QACrG,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA0D,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,mBAAmB,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IAC5J,CAAC;IACD;;;;;;;OAOG;IACH,oBAAoB,CAAC,MAAkB,EAAE,OAAwB;QAC/D,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAiC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,qBAAqB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;IACvJ,CAAC;IACD;;;;;;;OAOG;IACH,eAAe,CAAC,MAAkB,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA4B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,qBAAqB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;IAC/I,CAAC;IACD;;;;;;;;OAQG;IACH,mBAAmB,CAAC,MAAkB,EAAE,IAAgC,EAAE,OAAoD;QAC5H,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA4D,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,qBAAqB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7L,CAAC;IACD;;;;;;;;OAQG;IACH,iBAAiB,CAAC,MAAkB,EAAE,IAA8B,EAAE,OAAkD;QACtH,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAwD,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,qBAAqB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACvL,CAAC;IACD;;;;;;;OAOG;IACH,oBAAoB,CAAC,IAAiC,EAAE,OAAqD;QAC3G,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAkD,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,4BAA4B,EAAE,IAAI,EAAE,UAAU,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,mCAAmC,EAAE,EAAE,CAAC,CAAC;IAChQ,CAAC;IACD;;;;;;OAMG;IACH,iCAAiC,CAAC,OAAwB;QACxD,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8C,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,gCAAgC,EAAE,CAAC,CAAC;IACjJ,CAAC;IACD;;;;;;OAMG;IACH,2BAA2B,CAAC,OAAwB;QAClD,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAwC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,yBAAyB,EAAE,CAAC,CAAC;IACnI,CAAC;IACD;;;;;;;OAOG;IACH,aAAa,CAAC,IAA0B,EAAE,OAA8C;QACtF,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA2C,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,oBAAoB,EAAE,IAAI,EAAE,UAAU,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,mCAAmC,EAAE,EAAE,CAAC,CAAC;IACjP,CAAC;IACD;;;;;;OAMG;IACH,aAAa,CAAC,OAAwB;QACpC,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA0B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,qBAAqB,EAAE,CAAC,CAAC;IACjH,CAAC;IACD;;;;;;OAMG;IACH,gBAAgB,CAAC,OAAwB;QACvC,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA6B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,+BAA+B,EAAE,CAAC,CAAC;IAC9H,CAAC;IACD;;;;;;OAMG;IACH,aAAa,CAAC,OAAwB;QACpC,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA0B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,2BAA2B,EAAE,CAAC,CAAC;IACxH,CAAC;IACD;;;;;;;OAOG;IACH,qBAAqB,CAAC,QAAoB,EAAE,OAAwB;QAClE,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAkC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,sBAAsB,kBAAkB,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,CAAC;IAC3J,CAAC;IACD;;;;;;;;OAQG;IACH,iBAAiB,CAAC,QAAoB,EAAE,MAAiC,EAAE,OAAwB;QACjG,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,sBAAsB,kBAAkB,CAAC,QAAQ,CAAC,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAC5J,CAAC;IACD;;;;;;;;OAQG;IACH,oBAAoB,CAAC,QAAoB,EAAE,MAAoC,EAAE,OAAwB;QACvG,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAiC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,sBAAsB,kBAAkB,CAAC,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,CAAC,CAAC;IACxK,CAAC;IACD;;;;;;OAMG;IACH,qBAAqB,CAAC,OAAwB;QAC5C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAkC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,8BAA8B,EAAE,CAAC,CAAC;IAClI,CAAC;IACD;;;;;;;OAOG;IACH,gBAAgB,CAAC,IAA6B,EAAE,OAAiD;QAC/F,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8C,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,wBAAwB,EAAE,IAAI,EAAE,UAAU,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,mCAAmC,EAAE,EAAE,CAAC,CAAC;IACxP,CAAC;IACD;;;;;;OAMG;IACH,mBAAmB,CAAC,OAAwB;QAC1C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAgC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,sBAAsB,EAAE,CAAC,CAAC;IACxH,CAAC;IACD;;;;;;OAMG;IACH,uCAAuC,CAAC,OAAwB;QAC9D,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAoD,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,uCAAuC,EAAE,CAAC,CAAC;IAC9J,CAAC;IACD;;;;;;OAMG;IACH,mBAAmB,CAAC,OAAwB;QAC1C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAgC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,uBAAuB,EAAE,CAAC,CAAC;IACzH,CAAC;IACD;;;;;;;OAOG;IACH,uBAAuB,CAAC,SAAqB,EAAE,OAAwB;QACrE,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAoC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,yBAAyB,kBAAkB,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC,CAAC;IACjK,CAAC;IACD;;;;;;;OAOG;IACH,iBAAiB,CAAC,MAAiC,EAAE,OAAwB;QAC3E,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,0BAA0B,EAAE,MAAM,EAAE,CAAC,CAAC;IAClI,CAAC;IACD;;;;;;OAMG;IACH,eAAe,CAAC,OAAwB;QACtC,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA4B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,uBAAuB,EAAE,CAAC,CAAC;IACrH,CAAC;IACD;;;;;;;OAOG;IACH,gBAAgB,CAAC,IAA6B,EAAE,OAAiD;QAC/F,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8C,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,wBAAwB,EAAE,IAAI,EAAE,UAAU,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,mCAAmC,EAAE,EAAE,CAAC,CAAC;IACxP,CAAC;IACD;;;;;;OAMG;IACH,iCAAiC,CAAC,OAAwB;QACxD,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8C,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,0BAA0B,EAAE,CAAC,CAAC;IAC1I,CAAC;IACD;;;;;;OAMG;IACH,4BAA4B,CAAC,OAAwB;QACnD,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAyC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,wBAAwB,EAAE,CAAC,CAAC;IACnI,CAAC;IACD;;;;;;;OAOG;IACH,8BAA8B,CAAC,IAA2C,EAAE,OAA+D;QACzI,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAkF,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,wBAAwB,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACxL,CAAC;IACD;;;;;;;OAOG;IACH,iBAAiB,CAAC,MAAiC,EAAE,OAAwB;QAC3E,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,eAAe,EAAE,MAAM,EAAE,CAAC,CAAC;IACvH,CAAC;IACD;;;;;;;OAOG;IACH,kBAAkB,CAAC,IAA+B,EAAE,OAAmD;QACrG,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA0D,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,eAAe,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACxJ,CAAC;IACD;;;;;;;OAOG;IACH,oBAAoB,CAAC,MAAkB,EAAE,OAAwB;QAC/D,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAiC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;IACnJ,CAAC;IACD;;;;;;;OAOG;IACH,eAAe,CAAC,MAAkB,EAAE,OAAwB;QAC1D,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA4B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;IAC3I,CAAC;IACD;;;;;;;;OAQG;IACH,mBAAmB,CAAC,MAAkB,EAAE,IAAgC,EAAE,OAAoD;QAC5H,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA4D,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACzL,CAAC;IACD;;;;;;;;OAQG;IACH,iBAAiB,CAAC,MAAkB,EAAE,IAA8B,EAAE,OAAkD;QACtH,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAwD,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACnL,CAAC;IACD;;;;;;;;OAQG;IACH,uBAAuB,CAAC,MAAkB,EAAE,IAAoC,EAAE,OAAwD;QACxI,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAoE,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,kBAAkB,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACjN,CAAC;IACD;;;;;;;;OAQG;IACH,qBAAqB,CAAC,MAAkB,EAAE,IAAkC,EAAE,OAAsD;QAClI,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAgE,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,kBAAkB,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IAC3M,CAAC;IACD;;;;;;;;OAQG;IACH,oBAAoB,CAAC,MAAkB,EAAE,IAAiC,EAAE,OAAqD;QAC/H,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8D,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,eAAe,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACxM,CAAC;IACD;;;;;;;;OAQG;IACH,kBAAkB,CAAC,MAAkB,EAAE,IAA+B,EAAE,OAAmD;QACzH,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA0D,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,eAAe,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IAClM,CAAC;IACD;;;;;;;OAOG;IACH,iBAAiB,CAAC,MAAkB,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,SAAS,EAAE,CAAC,CAAC;IACpJ,CAAC;IACD;;;;;;;;OAQG;IACH,sBAAsB,CAAC,MAAkB,EAAE,IAAmC,EAAE,OAAuD;QACrI,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAkE,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACtM,CAAC;IACD;;;;;;;;OAQG;IACH,oBAAoB,CAAC,MAAkB,EAAE,IAAiC,EAAE,OAAqD;QAC/H,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8D,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,iBAAiB,kBAAkB,CAAC,MAAM,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IAChM,CAAC;IACD;;;;;;;OAOG;IACH,gBAAgB,CAAC,IAA6B,EAAE,OAAiD;QAC/F,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAsD,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,wBAAwB,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7J,CAAC;IACD;;;;;;;OAOG;IACH,yBAAyB,CAAC,IAAsC,EAAE,OAA0D;QAC1H,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAwE,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,8BAA8B,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACrL,CAAC;IACD;;;;;;;OAOG;IACH,yBAAyB,CAAC,IAAsC,EAAE,OAA0D;QAC1H,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAwE,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,8BAA8B,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;IACrL,CAAC;IACD;;;;;;;OAOG;IACH,6BAA6B,CAAC,MAA6C,EAAE,OAAwB;QACnG,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA0C,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,kCAAkC,EAAE,MAAM,EAAE,CAAC,CAAC;IACtJ,CAAC;IACD;;;;;;OAMG;IACH,mBAAmB,CAAC,OAAwB;QAC1C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAgC,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,oBAAoB,EAAE,CAAC,CAAC;IACtH,CAAC;IACD;;;;;;OAMG;IACH,iBAAiB,CAAC,OAAwB;QACxC,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA8B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,qBAAqB,EAAE,CAAC,CAAC;IACrH,CAAC;IACD;;;;;;OAMG;IACH,gBAAgB,CAAC,OAAwB;QACvC,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAA6B,EAAE,GAAG,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,oBAAoB,EAAE,CAAC,CAAC;IACnH,CAAC;CACF"}
1
+ {"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}