@goauthentik/api 2022.3.3-1647976662 → 2022.3.3-1647981529
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/models/Group.js
CHANGED
|
@@ -22,6 +22,7 @@ export function GroupFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'pk': json['pk'],
|
|
25
|
+
'numPk': json['num_pk'],
|
|
25
26
|
'name': json['name'],
|
|
26
27
|
'isSuperuser': !exists(json, 'is_superuser') ? undefined : json['is_superuser'],
|
|
27
28
|
'parent': json['parent'],
|
package/dist/models/Group.d.ts
CHANGED
package/dist/models/Group.js
CHANGED
|
@@ -26,6 +26,7 @@ function GroupFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
}
|
|
27
27
|
return {
|
|
28
28
|
'pk': json['pk'],
|
|
29
|
+
'numPk': json['num_pk'],
|
|
29
30
|
'name': json['name'],
|
|
30
31
|
'isSuperuser': !runtime_1.exists(json, 'is_superuser') ? undefined : json['is_superuser'],
|
|
31
32
|
'parent': json['parent'],
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name": "@goauthentik/api", "version": "2022.3.3-
|
|
1
|
+
{"name": "@goauthentik/api", "version": "2022.3.3-1647981529", "description": "OpenAPI client for @goauthentik/api", "author": "OpenAPI-Generator", "main": "./dist/index.js", "typings": "./dist/index.d.ts", "module": "./dist/esm/index.js", "sideEffects": false, "scripts": {"build": "tsc && tsc --project tsconfig.esm.json", "prepare": "npm run build"}, "devDependencies": {"typescript": "^3.9.5"}, "license": "GPL-3.0-only"}
|
package/src/models/Group.ts
CHANGED
|
@@ -32,6 +32,12 @@ export interface Group {
|
|
|
32
32
|
* @memberof Group
|
|
33
33
|
*/
|
|
34
34
|
readonly pk: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof Group
|
|
39
|
+
*/
|
|
40
|
+
readonly numPk: number;
|
|
35
41
|
/**
|
|
36
42
|
*
|
|
37
43
|
* @type {string}
|
|
@@ -87,6 +93,7 @@ export function GroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): Gro
|
|
|
87
93
|
return {
|
|
88
94
|
|
|
89
95
|
'pk': json['pk'],
|
|
96
|
+
'numPk': json['num_pk'],
|
|
90
97
|
'name': json['name'],
|
|
91
98
|
'isSuperuser': !exists(json, 'is_superuser') ? undefined : json['is_superuser'],
|
|
92
99
|
'parent': json['parent'],
|