@savant-realms/federated-auth-realm-sdk-ts-js 0.4.2 → 0.4.3

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.
@@ -176,10 +176,24 @@ export interface Application {
176
176
  name: string;
177
177
  logo?: string;
178
178
  description?: string;
179
+ category?: string;
179
180
  status?: ApplicationStatus;
180
181
  managerId?: string;
182
+ managerName?: string;
183
+ managerSurname?: string;
184
+ contactEmail?: string;
185
+ contactPhone?: string;
181
186
  isPublic?: boolean;
182
187
  platforms?: Platform[];
188
+ allowRegistration?: boolean;
189
+ requireEmailVerification?: boolean;
190
+ requireApproval?: boolean;
191
+ autoGrantAccess?: boolean;
192
+ maxUsers?: number;
193
+ allowGuestUsers?: boolean;
194
+ registrationRequiredFields?: string[];
195
+ otherOptionalFields?: string[];
196
+ pendingAccessRequests?: any[];
183
197
  config?: Record<string, unknown>;
184
198
  createdAt?: string;
185
199
  updatedAt?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savant-realms/federated-auth-realm-sdk-ts-js",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Federated Auth Realm - SDK Ts/Js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",