@goauthentik/api 2024.6.1-1721909829 → 2024.6.1-1721916595

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/.openapi-generator/FILES +4 -4
  2. package/dist/apis/PropertymappingsApi.d.ts +87 -87
  3. package/dist/apis/PropertymappingsApi.js +274 -274
  4. package/dist/apis/RbacApi.d.ts +2 -2
  5. package/dist/apis/RbacApi.js +2 -2
  6. package/dist/esm/apis/PropertymappingsApi.d.ts +87 -87
  7. package/dist/esm/apis/PropertymappingsApi.js +275 -275
  8. package/dist/esm/apis/RbacApi.d.ts +2 -2
  9. package/dist/esm/apis/RbacApi.js +2 -2
  10. package/dist/esm/models/{LDAPPropertyMapping.d.ts → LDAPSourcePropertyMapping.d.ts} +15 -15
  11. package/dist/esm/models/{LDAPPropertyMapping.js → LDAPSourcePropertyMapping.js} +6 -6
  12. package/dist/{models/LDAPPropertyMappingRequest.d.ts → esm/models/LDAPSourcePropertyMappingRequest.d.ts} +10 -10
  13. package/dist/esm/models/{LDAPPropertyMappingRequest.js → LDAPSourcePropertyMappingRequest.js} +6 -6
  14. package/dist/esm/models/ModelEnum.d.ts +1 -1
  15. package/dist/esm/models/ModelEnum.js +1 -1
  16. package/dist/esm/models/PaginatedLDAPSourcePropertyMappingList.d.ts +39 -0
  17. package/dist/esm/models/{PaginatedLDAPPropertyMappingList.js → PaginatedLDAPSourcePropertyMappingList.js} +9 -9
  18. package/dist/esm/models/PatchedLDAPSourcePropertyMappingRequest.d.ts +43 -0
  19. package/dist/esm/models/{PatchedLDAPPropertyMappingRequest.js → PatchedLDAPSourcePropertyMappingRequest.js} +6 -6
  20. package/dist/esm/models/index.d.ts +4 -4
  21. package/dist/esm/models/index.js +4 -4
  22. package/dist/models/{LDAPPropertyMapping.d.ts → LDAPSourcePropertyMapping.d.ts} +15 -15
  23. package/dist/models/{LDAPPropertyMapping.js → LDAPSourcePropertyMapping.js} +11 -11
  24. package/dist/{esm/models/LDAPPropertyMappingRequest.d.ts → models/LDAPSourcePropertyMappingRequest.d.ts} +10 -10
  25. package/dist/models/{LDAPPropertyMappingRequest.js → LDAPSourcePropertyMappingRequest.js} +11 -11
  26. package/dist/models/ModelEnum.d.ts +1 -1
  27. package/dist/models/ModelEnum.js +1 -1
  28. package/dist/models/PaginatedLDAPSourcePropertyMappingList.d.ts +39 -0
  29. package/dist/models/PaginatedLDAPSourcePropertyMappingList.js +55 -0
  30. package/dist/models/PatchedLDAPSourcePropertyMappingRequest.d.ts +43 -0
  31. package/dist/models/PatchedLDAPSourcePropertyMappingRequest.js +54 -0
  32. package/dist/models/index.d.ts +4 -4
  33. package/dist/models/index.js +4 -4
  34. package/package.json +1 -1
  35. package/src/apis/PropertymappingsApi.ts +541 -541
  36. package/src/apis/RbacApi.ts +2 -2
  37. package/src/models/{LDAPPropertyMapping.ts → LDAPSourcePropertyMapping.ts} +16 -16
  38. package/src/models/{LDAPPropertyMappingRequest.ts → LDAPSourcePropertyMappingRequest.ts} +11 -11
  39. package/src/models/ModelEnum.ts +1 -1
  40. package/src/models/PaginatedLDAPSourcePropertyMappingList.ts +88 -0
  41. package/src/models/{PatchedLDAPPropertyMappingRequest.ts → PatchedLDAPSourcePropertyMappingRequest.ts} +11 -11
  42. package/src/models/index.ts +4 -4
  43. package/dist/esm/models/PaginatedLDAPPropertyMappingList.d.ts +0 -39
  44. package/dist/esm/models/PatchedLDAPPropertyMappingRequest.d.ts +0 -43
  45. package/dist/models/PaginatedLDAPPropertyMappingList.d.ts +0 -39
  46. package/dist/models/PaginatedLDAPPropertyMappingList.js +0 -55
  47. package/dist/models/PatchedLDAPPropertyMappingRequest.d.ts +0 -43
  48. package/dist/models/PatchedLDAPPropertyMappingRequest.js +0 -54
  49. package/src/models/PaginatedLDAPPropertyMappingList.ts +0 -88
@@ -13,23 +13,23 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.LDAPPropertyMappingRequestToJSON = exports.LDAPPropertyMappingRequestFromJSONTyped = exports.LDAPPropertyMappingRequestFromJSON = exports.instanceOfLDAPPropertyMappingRequest = void 0;
16
+ exports.LDAPSourcePropertyMappingRequestToJSON = exports.LDAPSourcePropertyMappingRequestFromJSONTyped = exports.LDAPSourcePropertyMappingRequestFromJSON = exports.instanceOfLDAPSourcePropertyMappingRequest = void 0;
17
17
  const runtime_1 = require("../runtime");
18
18
  /**
19
- * Check if a given object implements the LDAPPropertyMappingRequest interface.
19
+ * Check if a given object implements the LDAPSourcePropertyMappingRequest interface.
20
20
  */
21
- function instanceOfLDAPPropertyMappingRequest(value) {
21
+ function instanceOfLDAPSourcePropertyMappingRequest(value) {
22
22
  let isInstance = true;
23
23
  isInstance = isInstance && "name" in value;
24
24
  isInstance = isInstance && "expression" in value;
25
25
  return isInstance;
26
26
  }
27
- exports.instanceOfLDAPPropertyMappingRequest = instanceOfLDAPPropertyMappingRequest;
28
- function LDAPPropertyMappingRequestFromJSON(json) {
29
- return LDAPPropertyMappingRequestFromJSONTyped(json, false);
27
+ exports.instanceOfLDAPSourcePropertyMappingRequest = instanceOfLDAPSourcePropertyMappingRequest;
28
+ function LDAPSourcePropertyMappingRequestFromJSON(json) {
29
+ return LDAPSourcePropertyMappingRequestFromJSONTyped(json, false);
30
30
  }
31
- exports.LDAPPropertyMappingRequestFromJSON = LDAPPropertyMappingRequestFromJSON;
32
- function LDAPPropertyMappingRequestFromJSONTyped(json, ignoreDiscriminator) {
31
+ exports.LDAPSourcePropertyMappingRequestFromJSON = LDAPSourcePropertyMappingRequestFromJSON;
32
+ function LDAPSourcePropertyMappingRequestFromJSONTyped(json, ignoreDiscriminator) {
33
33
  if ((json === undefined) || (json === null)) {
34
34
  return json;
35
35
  }
@@ -39,8 +39,8 @@ function LDAPPropertyMappingRequestFromJSONTyped(json, ignoreDiscriminator) {
39
39
  'expression': json['expression'],
40
40
  };
41
41
  }
42
- exports.LDAPPropertyMappingRequestFromJSONTyped = LDAPPropertyMappingRequestFromJSONTyped;
43
- function LDAPPropertyMappingRequestToJSON(value) {
42
+ exports.LDAPSourcePropertyMappingRequestFromJSONTyped = LDAPSourcePropertyMappingRequestFromJSONTyped;
43
+ function LDAPSourcePropertyMappingRequestToJSON(value) {
44
44
  if (value === undefined) {
45
45
  return undefined;
46
46
  }
@@ -53,4 +53,4 @@ function LDAPPropertyMappingRequestToJSON(value) {
53
53
  'expression': value.expression,
54
54
  };
55
55
  }
56
- exports.LDAPPropertyMappingRequestToJSON = LDAPPropertyMappingRequestToJSON;
56
+ exports.LDAPSourcePropertyMappingRequestToJSON = LDAPSourcePropertyMappingRequestToJSON;
@@ -39,7 +39,7 @@ export declare const ModelEnum: {
39
39
  readonly ProvidersScimScimmapping: "authentik_providers_scim.scimmapping";
40
40
  readonly RbacRole: "authentik_rbac.role";
41
41
  readonly SourcesLdapLdapsource: "authentik_sources_ldap.ldapsource";
42
- readonly SourcesLdapLdappropertymapping: "authentik_sources_ldap.ldappropertymapping";
42
+ readonly SourcesLdapLdapsourcepropertymapping: "authentik_sources_ldap.ldapsourcepropertymapping";
43
43
  readonly SourcesOauthOauthsource: "authentik_sources_oauth.oauthsource";
44
44
  readonly SourcesOauthUseroauthsourceconnection: "authentik_sources_oauth.useroauthsourceconnection";
45
45
  readonly SourcesPlexPlexsource: "authentik_sources_plex.plexsource";
@@ -44,7 +44,7 @@ exports.ModelEnum = {
44
44
  ProvidersScimScimmapping: 'authentik_providers_scim.scimmapping',
45
45
  RbacRole: 'authentik_rbac.role',
46
46
  SourcesLdapLdapsource: 'authentik_sources_ldap.ldapsource',
47
- SourcesLdapLdappropertymapping: 'authentik_sources_ldap.ldappropertymapping',
47
+ SourcesLdapLdapsourcepropertymapping: 'authentik_sources_ldap.ldapsourcepropertymapping',
48
48
  SourcesOauthOauthsource: 'authentik_sources_oauth.oauthsource',
49
49
  SourcesOauthUseroauthsourceconnection: 'authentik_sources_oauth.useroauthsourceconnection',
50
50
  SourcesPlexPlexsource: 'authentik_sources_plex.plexsource',
@@ -0,0 +1,39 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { LDAPSourcePropertyMapping } from './LDAPSourcePropertyMapping';
13
+ import type { Pagination } from './Pagination';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PaginatedLDAPSourcePropertyMappingList
18
+ */
19
+ export interface PaginatedLDAPSourcePropertyMappingList {
20
+ /**
21
+ *
22
+ * @type {Pagination}
23
+ * @memberof PaginatedLDAPSourcePropertyMappingList
24
+ */
25
+ pagination: Pagination;
26
+ /**
27
+ *
28
+ * @type {Array<LDAPSourcePropertyMapping>}
29
+ * @memberof PaginatedLDAPSourcePropertyMappingList
30
+ */
31
+ results: Array<LDAPSourcePropertyMapping>;
32
+ }
33
+ /**
34
+ * Check if a given object implements the PaginatedLDAPSourcePropertyMappingList interface.
35
+ */
36
+ export declare function instanceOfPaginatedLDAPSourcePropertyMappingList(value: object): boolean;
37
+ export declare function PaginatedLDAPSourcePropertyMappingListFromJSON(json: any): PaginatedLDAPSourcePropertyMappingList;
38
+ export declare function PaginatedLDAPSourcePropertyMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedLDAPSourcePropertyMappingList;
39
+ export declare function PaginatedLDAPSourcePropertyMappingListToJSON(value?: PaginatedLDAPSourcePropertyMappingList | null): any;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * authentik
6
+ * Making authentication simple.
7
+ *
8
+ * The version of the OpenAPI document: 2024.6.1
9
+ * Contact: hello@goauthentik.io
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.PaginatedLDAPSourcePropertyMappingListToJSON = exports.PaginatedLDAPSourcePropertyMappingListFromJSONTyped = exports.PaginatedLDAPSourcePropertyMappingListFromJSON = exports.instanceOfPaginatedLDAPSourcePropertyMappingList = void 0;
17
+ const LDAPSourcePropertyMapping_1 = require("./LDAPSourcePropertyMapping");
18
+ const Pagination_1 = require("./Pagination");
19
+ /**
20
+ * Check if a given object implements the PaginatedLDAPSourcePropertyMappingList interface.
21
+ */
22
+ function instanceOfPaginatedLDAPSourcePropertyMappingList(value) {
23
+ let isInstance = true;
24
+ isInstance = isInstance && "pagination" in value;
25
+ isInstance = isInstance && "results" in value;
26
+ return isInstance;
27
+ }
28
+ exports.instanceOfPaginatedLDAPSourcePropertyMappingList = instanceOfPaginatedLDAPSourcePropertyMappingList;
29
+ function PaginatedLDAPSourcePropertyMappingListFromJSON(json) {
30
+ return PaginatedLDAPSourcePropertyMappingListFromJSONTyped(json, false);
31
+ }
32
+ exports.PaginatedLDAPSourcePropertyMappingListFromJSON = PaginatedLDAPSourcePropertyMappingListFromJSON;
33
+ function PaginatedLDAPSourcePropertyMappingListFromJSONTyped(json, ignoreDiscriminator) {
34
+ if ((json === undefined) || (json === null)) {
35
+ return json;
36
+ }
37
+ return {
38
+ 'pagination': (0, Pagination_1.PaginationFromJSON)(json['pagination']),
39
+ 'results': (json['results'].map(LDAPSourcePropertyMapping_1.LDAPSourcePropertyMappingFromJSON)),
40
+ };
41
+ }
42
+ exports.PaginatedLDAPSourcePropertyMappingListFromJSONTyped = PaginatedLDAPSourcePropertyMappingListFromJSONTyped;
43
+ function PaginatedLDAPSourcePropertyMappingListToJSON(value) {
44
+ if (value === undefined) {
45
+ return undefined;
46
+ }
47
+ if (value === null) {
48
+ return null;
49
+ }
50
+ return {
51
+ 'pagination': (0, Pagination_1.PaginationToJSON)(value.pagination),
52
+ 'results': (value.results.map(LDAPSourcePropertyMapping_1.LDAPSourcePropertyMappingToJSON)),
53
+ };
54
+ }
55
+ exports.PaginatedLDAPSourcePropertyMappingListToJSON = PaginatedLDAPSourcePropertyMappingListToJSON;
@@ -0,0 +1,43 @@
1
+ /**
2
+ * authentik
3
+ * Making authentication simple.
4
+ *
5
+ * The version of the OpenAPI document: 2024.6.1
6
+ * Contact: hello@goauthentik.io
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * LDAP PropertyMapping Serializer
14
+ * @export
15
+ * @interface PatchedLDAPSourcePropertyMappingRequest
16
+ */
17
+ export interface PatchedLDAPSourcePropertyMappingRequest {
18
+ /**
19
+ * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
20
+ * @type {string}
21
+ * @memberof PatchedLDAPSourcePropertyMappingRequest
22
+ */
23
+ managed?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PatchedLDAPSourcePropertyMappingRequest
28
+ */
29
+ name?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PatchedLDAPSourcePropertyMappingRequest
34
+ */
35
+ expression?: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the PatchedLDAPSourcePropertyMappingRequest interface.
39
+ */
40
+ export declare function instanceOfPatchedLDAPSourcePropertyMappingRequest(value: object): boolean;
41
+ export declare function PatchedLDAPSourcePropertyMappingRequestFromJSON(json: any): PatchedLDAPSourcePropertyMappingRequest;
42
+ export declare function PatchedLDAPSourcePropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedLDAPSourcePropertyMappingRequest;
43
+ export declare function PatchedLDAPSourcePropertyMappingRequestToJSON(value?: PatchedLDAPSourcePropertyMappingRequest | null): any;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * authentik
6
+ * Making authentication simple.
7
+ *
8
+ * The version of the OpenAPI document: 2024.6.1
9
+ * Contact: hello@goauthentik.io
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.PatchedLDAPSourcePropertyMappingRequestToJSON = exports.PatchedLDAPSourcePropertyMappingRequestFromJSONTyped = exports.PatchedLDAPSourcePropertyMappingRequestFromJSON = exports.instanceOfPatchedLDAPSourcePropertyMappingRequest = void 0;
17
+ const runtime_1 = require("../runtime");
18
+ /**
19
+ * Check if a given object implements the PatchedLDAPSourcePropertyMappingRequest interface.
20
+ */
21
+ function instanceOfPatchedLDAPSourcePropertyMappingRequest(value) {
22
+ let isInstance = true;
23
+ return isInstance;
24
+ }
25
+ exports.instanceOfPatchedLDAPSourcePropertyMappingRequest = instanceOfPatchedLDAPSourcePropertyMappingRequest;
26
+ function PatchedLDAPSourcePropertyMappingRequestFromJSON(json) {
27
+ return PatchedLDAPSourcePropertyMappingRequestFromJSONTyped(json, false);
28
+ }
29
+ exports.PatchedLDAPSourcePropertyMappingRequestFromJSON = PatchedLDAPSourcePropertyMappingRequestFromJSON;
30
+ function PatchedLDAPSourcePropertyMappingRequestFromJSONTyped(json, ignoreDiscriminator) {
31
+ if ((json === undefined) || (json === null)) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'managed': !(0, runtime_1.exists)(json, 'managed') ? undefined : json['managed'],
36
+ 'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
37
+ 'expression': !(0, runtime_1.exists)(json, 'expression') ? undefined : json['expression'],
38
+ };
39
+ }
40
+ exports.PatchedLDAPSourcePropertyMappingRequestFromJSONTyped = PatchedLDAPSourcePropertyMappingRequestFromJSONTyped;
41
+ function PatchedLDAPSourcePropertyMappingRequestToJSON(value) {
42
+ if (value === undefined) {
43
+ return undefined;
44
+ }
45
+ if (value === null) {
46
+ return null;
47
+ }
48
+ return {
49
+ 'managed': value.managed,
50
+ 'name': value.name,
51
+ 'expression': value.expression,
52
+ };
53
+ }
54
+ exports.PatchedLDAPSourcePropertyMappingRequestToJSON = PatchedLDAPSourcePropertyMappingRequestToJSON;
@@ -167,11 +167,11 @@ export * from './KubernetesServiceConnectionRequest';
167
167
  export * from './LDAPAPIAccessMode';
168
168
  export * from './LDAPDebug';
169
169
  export * from './LDAPOutpostConfig';
170
- export * from './LDAPPropertyMapping';
171
- export * from './LDAPPropertyMappingRequest';
172
170
  export * from './LDAPProvider';
173
171
  export * from './LDAPProviderRequest';
174
172
  export * from './LDAPSource';
173
+ export * from './LDAPSourcePropertyMapping';
174
+ export * from './LDAPSourcePropertyMappingRequest';
175
175
  export * from './LDAPSourceRequest';
176
176
  export * from './License';
177
177
  export * from './LicenseForecast';
@@ -263,9 +263,9 @@ export * from './PaginatedInvitationList';
263
263
  export * from './PaginatedInvitationStageList';
264
264
  export * from './PaginatedKubernetesServiceConnectionList';
265
265
  export * from './PaginatedLDAPOutpostConfigList';
266
- export * from './PaginatedLDAPPropertyMappingList';
267
266
  export * from './PaginatedLDAPProviderList';
268
267
  export * from './PaginatedLDAPSourceList';
268
+ export * from './PaginatedLDAPSourcePropertyMappingList';
269
269
  export * from './PaginatedLicenseList';
270
270
  export * from './PaginatedMicrosoftEntraProviderGroupList';
271
271
  export * from './PaginatedMicrosoftEntraProviderList';
@@ -376,8 +376,8 @@ export * from './PatchedIdentificationStageRequest';
376
376
  export * from './PatchedInvitationRequest';
377
377
  export * from './PatchedInvitationStageRequest';
378
378
  export * from './PatchedKubernetesServiceConnectionRequest';
379
- export * from './PatchedLDAPPropertyMappingRequest';
380
379
  export * from './PatchedLDAPProviderRequest';
380
+ export * from './PatchedLDAPSourcePropertyMappingRequest';
381
381
  export * from './PatchedLDAPSourceRequest';
382
382
  export * from './PatchedLicenseRequest';
383
383
  export * from './PatchedMicrosoftEntraProviderMappingRequest';
@@ -185,11 +185,11 @@ __exportStar(require("./KubernetesServiceConnectionRequest"), exports);
185
185
  __exportStar(require("./LDAPAPIAccessMode"), exports);
186
186
  __exportStar(require("./LDAPDebug"), exports);
187
187
  __exportStar(require("./LDAPOutpostConfig"), exports);
188
- __exportStar(require("./LDAPPropertyMapping"), exports);
189
- __exportStar(require("./LDAPPropertyMappingRequest"), exports);
190
188
  __exportStar(require("./LDAPProvider"), exports);
191
189
  __exportStar(require("./LDAPProviderRequest"), exports);
192
190
  __exportStar(require("./LDAPSource"), exports);
191
+ __exportStar(require("./LDAPSourcePropertyMapping"), exports);
192
+ __exportStar(require("./LDAPSourcePropertyMappingRequest"), exports);
193
193
  __exportStar(require("./LDAPSourceRequest"), exports);
194
194
  __exportStar(require("./License"), exports);
195
195
  __exportStar(require("./LicenseForecast"), exports);
@@ -281,9 +281,9 @@ __exportStar(require("./PaginatedInvitationList"), exports);
281
281
  __exportStar(require("./PaginatedInvitationStageList"), exports);
282
282
  __exportStar(require("./PaginatedKubernetesServiceConnectionList"), exports);
283
283
  __exportStar(require("./PaginatedLDAPOutpostConfigList"), exports);
284
- __exportStar(require("./PaginatedLDAPPropertyMappingList"), exports);
285
284
  __exportStar(require("./PaginatedLDAPProviderList"), exports);
286
285
  __exportStar(require("./PaginatedLDAPSourceList"), exports);
286
+ __exportStar(require("./PaginatedLDAPSourcePropertyMappingList"), exports);
287
287
  __exportStar(require("./PaginatedLicenseList"), exports);
288
288
  __exportStar(require("./PaginatedMicrosoftEntraProviderGroupList"), exports);
289
289
  __exportStar(require("./PaginatedMicrosoftEntraProviderList"), exports);
@@ -394,8 +394,8 @@ __exportStar(require("./PatchedIdentificationStageRequest"), exports);
394
394
  __exportStar(require("./PatchedInvitationRequest"), exports);
395
395
  __exportStar(require("./PatchedInvitationStageRequest"), exports);
396
396
  __exportStar(require("./PatchedKubernetesServiceConnectionRequest"), exports);
397
- __exportStar(require("./PatchedLDAPPropertyMappingRequest"), exports);
398
397
  __exportStar(require("./PatchedLDAPProviderRequest"), exports);
398
+ __exportStar(require("./PatchedLDAPSourcePropertyMappingRequest"), exports);
399
399
  __exportStar(require("./PatchedLDAPSourceRequest"), exports);
400
400
  __exportStar(require("./PatchedLicenseRequest"), exports);
401
401
  __exportStar(require("./PatchedMicrosoftEntraProviderMappingRequest"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.6.1-1721909829",
3
+ "version": "2024.6.1-1721916595",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {