ichec-angular-core 0.3.3 → 0.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ichec-angular-core",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "exports": {
5
5
  "./styles/": "./styles",
6
6
  "./package.json": {
@@ -1,3 +1,4 @@
1
+ import * as _angular_forms from '@angular/forms';
1
2
  import { FormGroup, FormControl, FormArray, FormBuilder, AbstractControl } from '@angular/forms';
2
3
  import { BehaviorSubject, Observable } from 'rxjs';
3
4
  import { HttpClient, HttpParams, HttpHeaders, HttpErrorResponse } from '@angular/common/http';
@@ -69,6 +70,15 @@ interface IPortalMemberList extends IPortalMemberBase, Identifiable {
69
70
  profile_thumbnail: string | null;
70
71
  permissions: string[];
71
72
  identifiers: IMemberIdentifierDetail[];
73
+ verified: boolean;
74
+ }
75
+ interface IMemberInvitation {
76
+ first_name: string;
77
+ last_name: string;
78
+ email: string;
79
+ username: string;
80
+ type: string;
81
+ resource_id: number | null;
72
82
  }
73
83
  type IPortalMemberDetail = IPortalMemberList;
74
84
  declare class PortalMember {
@@ -79,6 +89,7 @@ declare class PortalMember {
79
89
 
80
90
  interface IGroupBase {
81
91
  name: string;
92
+ user_set: string[];
82
93
  }
83
94
  type IGroupCreate = IGroupBase;
84
95
  interface IGroupList extends IGroupBase, Identifiable {
@@ -120,6 +131,7 @@ interface IOrganizationBase {
120
131
  description: string;
121
132
  website: string;
122
133
  members: string[];
134
+ public: boolean;
123
135
  }
124
136
  interface IOrganizationCreate extends IOrganizationBase {
125
137
  address: IAddressCreate;
@@ -172,6 +184,7 @@ interface OptionAction {
172
184
  read_only: boolean;
173
185
  max_length?: number;
174
186
  choices?: OptionActionChoice[];
187
+ children: OptionAction[];
175
188
  }
176
189
  interface IRestOptions {
177
190
  name: string;
@@ -291,6 +304,21 @@ interface IPopulatedFormUpdate {
291
304
  id: number;
292
305
  values: IFormFieldValueUpdate[];
293
306
  }
307
+ interface IFilter {
308
+ display_name: string;
309
+ key: string;
310
+ type: string;
311
+ tooltip: string;
312
+ choices: string[];
313
+ default: string;
314
+ include_if_null: boolean;
315
+ }
316
+ interface IFilterRow {
317
+ filters: IFilter[];
318
+ }
319
+ interface IFilters {
320
+ rows: IFilterRow[];
321
+ }
294
322
 
295
323
  interface LeftNavOption {
296
324
  name: string;
@@ -320,6 +348,7 @@ declare const REST_SERVICE_CONFIG: InjectionToken<RestServiceConfig>;
320
348
  declare class RestService<D extends Identifiable, L extends Identifiable = D, C = D, U extends Identifiable = D> {
321
349
  manifest: BehaviorSubject<IServerManifest | null>;
322
350
  readonly _url: string;
351
+ readonly userQuery = "user";
323
352
  config: RestServiceConfig;
324
353
  protected _http: HttpClient;
325
354
  protected cookieService: CookieService;
@@ -366,13 +395,16 @@ declare class UserService extends ItemService<IPortalMemberDetail, IPortalMember
366
395
  Service to handle IPortalMember via REST and also handle logins.
367
396
  */
368
397
  loggedInUser: BehaviorSubject<IPortalMemberList | null>;
398
+ canInvite: _angular_core.WritableSignal<boolean>;
369
399
  private document;
370
400
  readonly _url: string;
371
401
  typename: string;
372
402
  private permissions;
373
403
  login(next?: string): void;
374
404
  logout(next?: string): void;
405
+ canCreate(): boolean;
375
406
  getSelf(): Observable<IPortalMemberDetail | null>;
407
+ inviteMember(invite: IMemberInvitation): Observable<IMemberInvitation>;
376
408
  private _getSelf;
377
409
  private _selfFetchFailed;
378
410
  private _do_login;
@@ -449,18 +481,6 @@ declare class LeftNavService {
449
481
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<LeftNavService>;
450
482
  }
451
483
 
452
- declare class AddressService extends ItemWithUserService<IAddressDetail, IAddressList, IAddressCreate> {
453
- readonly _url: string;
454
- typename: string;
455
- countryOptions: _angular_core.WritableSignal<ICountry[]>;
456
- refreshCountryOptions(): void;
457
- protected onOptions(options: IRestOptions): void;
458
- protected onPostActions(actions: Record<string, OptionAction>): void;
459
- protected onCountryChoices(choices: OptionActionChoice[]): void;
460
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AddressService, never>;
461
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AddressService>;
462
- }
463
-
464
484
  declare class GroupService extends ItemWithUserService<IGroupDetail, IGroupList, IGroupCreate> {
465
485
  readonly _url: string;
466
486
  typename: string;
@@ -472,6 +492,12 @@ declare class GroupService extends ItemWithUserService<IGroupDetail, IGroupList,
472
492
  declare class OrganizationService extends ItemWithUserService<IOrganizationDetail, IOrganizationList, IOrganizationCreate> {
473
493
  readonly _url: string;
474
494
  typename: string;
495
+ countryOptions: _angular_core.WritableSignal<ICountry[]>;
496
+ refreshCountryOptions(): void;
497
+ protected onOptions(options: IRestOptions): void;
498
+ protected onAddressOption(option: OptionAction): void;
499
+ protected onPostActions(actions: Record<string, OptionAction>): void;
500
+ protected onCountryChoices(choices: OptionActionChoice[]): void;
475
501
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OrganizationService, never>;
476
502
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<OrganizationService>;
477
503
  }
@@ -612,17 +638,23 @@ declare class DetailHeaderComponent {
612
638
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DetailHeaderComponent, "lib-detail-header", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "route": { "alias": "route"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "canDelete": { "alias": "canDelete"; "required": false; "isSignal": true; }; }, { "deleteClicked": "deleteClicked"; }, never, never, true, never>;
613
639
  }
614
640
 
615
- declare class SearchBarComponent implements AfterViewInit {
641
+ declare class SearchBarComponent implements OnInit, AfterViewInit {
616
642
  itemType: _angular_core.InputSignal<string>;
617
643
  sortFields: _angular_core.InputSignal<string[]>;
618
644
  sortAscending: _angular_core.WritableSignal<boolean>;
645
+ filters: _angular_core.InputSignal<IFilters | null>;
619
646
  searchChanged: _angular_core.OutputEmitterRef<string>;
620
647
  searchFilter: FormControl<any>;
648
+ showFilters: _angular_core.WritableSignal<boolean>;
649
+ private fb;
650
+ filterForm: FormGroup | null;
651
+ ngOnInit(): void;
621
652
  ngAfterViewInit(): void;
653
+ toggleFilterVisibility(): void;
622
654
  clearSearch(): void;
623
655
  searchEntered(): void;
624
656
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchBarComponent, never>;
625
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchBarComponent, "lib-search-bar", never, { "itemType": { "alias": "itemType"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; }, { "searchChanged": "searchChanged"; }, never, never, true, never>;
657
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchBarComponent, "lib-search-bar", never, { "itemType": { "alias": "itemType"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; }, { "searchChanged": "searchChanged"; }, never, never, true, never>;
626
658
  }
627
659
 
628
660
  declare class FileUploadComponent {
@@ -638,20 +670,23 @@ declare class FileUploadComponent {
638
670
  declare class FormFieldDetailComponent {
639
671
  readonly field: _angular_core.InputSignal<IFormFieldDetail>;
640
672
  form: _angular_core.InputSignal<FormGroup<any>>;
641
- get isValid(): boolean;
642
673
  get key(): string;
643
674
  get control(): FormControl<IFileRecord>;
644
675
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldDetailComponent, never>;
645
676
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldDetailComponent, "lib-form-field-detail", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "form": { "alias": "form"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
646
677
  }
647
678
 
679
+ interface IOption {
680
+ key: string;
681
+ value: string;
682
+ }
648
683
  interface IFormFieldForm {
649
684
  label: FormControl<string | null>;
650
685
  key: FormControl<string | null>;
651
686
  required: FormControl<boolean | null>;
652
687
  description: FormControl<string | null>;
653
688
  template: FormControl<IFileRecord | null>;
654
- options: FormControl<string | null>;
689
+ options: FormControl<IOption[] | null>;
655
690
  default: FormControl<string | null>;
656
691
  field_type: FormControl<string | null>;
657
692
  order: FormControl<number | null>;
@@ -662,6 +697,9 @@ declare class FormFieldEditComponent {
662
697
  availableTypes: ichec_angular_core.TypeChoice[];
663
698
  readonly FieldType: typeof FieldType;
664
699
  readonly deleteDialog: MatDialog;
700
+ protected table: _angular_core.Signal<MatTable<any> | undefined>;
701
+ protected keyControl: FormControl<string | null>;
702
+ protected valueControl: FormControl<string | null>;
665
703
  form: _angular_core.InputSignal<FormGroup<IFormFieldForm>>;
666
704
  canOrderUp: _angular_core.InputSignal<boolean>;
667
705
  canOrderDown: _angular_core.InputSignal<boolean>;
@@ -669,11 +707,14 @@ declare class FormFieldEditComponent {
669
707
  orderDown: _angular_core.OutputEmitterRef<void>;
670
708
  deleted: _angular_core.OutputEmitterRef<void>;
671
709
  get templateControl(): FormControl<IFileRecord>;
710
+ get optionsControl(): FormControl<IOption[]>;
672
711
  get fieldType(): FieldType;
673
712
  onOrderUp(): void;
674
713
  onOrderDown(): void;
675
714
  onDelete(): void;
676
715
  onDeleteClicked(): void;
716
+ addChoice(): void;
717
+ removeOption(value: string): void;
677
718
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldEditComponent, never>;
678
719
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldEditComponent, "lib-form-field-edit", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "canOrderUp": { "alias": "canOrderUp"; "required": false; "isSignal": true; }; "canOrderDown": { "alias": "canOrderDown"; "required": false; "isSignal": true; }; }, { "orderUp": "orderUp"; "orderDown": "orderDown"; "deleted": "deleted"; }, never, never, true, never>;
679
720
  }
@@ -839,6 +880,7 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
839
880
  noItemsCanCreateMessage: _angular_core.InputSignal<string | undefined>;
840
881
  noItemsMessage: _angular_core.InputSignal<string | undefined>;
841
882
  defaultQueries: _angular_core.InputSignal<IQuery[]>;
883
+ filters: _angular_core.InputSignal<IFilters | null>;
842
884
  embeddedMode: _angular_core.InputSignal<boolean>;
843
885
  selectedViewType: _angular_core.WritableSignal<string>;
844
886
  selected: _angular_core.OutputEmitterRef<number | null>;
@@ -864,7 +906,7 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
864
906
  onSelection(id: number): void;
865
907
  protected isSelfList(): boolean;
866
908
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListViewComponent<any, any, any, any>, never>;
867
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListViewComponent<any, any, any, any>, "lib-list-view", never, { "viewType": { "alias": "viewType"; "required": false; "isSignal": true; }; "itemService": { "alias": "itemService"; "required": false; "isSignal": true; }; "listItemTemplate": { "alias": "listItemTemplate"; "required": false; "isSignal": true; }; "itemDetailTemplate": { "alias": "itemDetailTemplate"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "itemWidth": { "alias": "itemWidth"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; "noSelfItemsMessage": { "alias": "noSelfItemsMessage"; "required": false; "isSignal": true; }; "noItemsCanCreateMessage": { "alias": "noItemsCanCreateMessage"; "required": false; "isSignal": true; }; "noItemsMessage": { "alias": "noItemsMessage"; "required": false; "isSignal": true; }; "defaultQueries": { "alias": "defaultQueries"; "required": false; "isSignal": true; }; "embeddedMode": { "alias": "embeddedMode"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
909
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListViewComponent<any, any, any, any>, "lib-list-view", never, { "viewType": { "alias": "viewType"; "required": false; "isSignal": true; }; "itemService": { "alias": "itemService"; "required": false; "isSignal": true; }; "listItemTemplate": { "alias": "listItemTemplate"; "required": false; "isSignal": true; }; "itemDetailTemplate": { "alias": "itemDetailTemplate"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "itemWidth": { "alias": "itemWidth"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; "noSelfItemsMessage": { "alias": "noSelfItemsMessage"; "required": false; "isSignal": true; }; "noItemsCanCreateMessage": { "alias": "noItemsCanCreateMessage"; "required": false; "isSignal": true; }; "noItemsMessage": { "alias": "noItemsMessage"; "required": false; "isSignal": true; }; "defaultQueries": { "alias": "defaultQueries"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "embeddedMode": { "alias": "embeddedMode"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
868
910
  }
869
911
 
870
912
  declare class ListTableViewComponent implements AfterViewInit {
@@ -944,6 +986,28 @@ declare class UserEditComponent extends EditView<IPortalMemberDetail, IPortalMem
944
986
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserEditComponent, "lib-user-edit", never, {}, {}, never, never, true, never>;
945
987
  }
946
988
 
989
+ declare class UserCreateForm {
990
+ private type;
991
+ private resource_id;
992
+ constructor(type?: string, resource_id?: number | null);
993
+ private fb;
994
+ form: _angular_forms.FormGroup<{
995
+ username: FormControl<string | null>;
996
+ email: FormControl<string | null>;
997
+ first_name: FormControl<string | null>;
998
+ last_name: FormControl<string | null>;
999
+ }>;
1000
+ createItem(): IMemberInvitation;
1001
+ }
1002
+
1003
+ declare class UserCreateComponent {
1004
+ form: UserCreateForm;
1005
+ userService: UserService;
1006
+ submit(): void;
1007
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserCreateComponent, never>;
1008
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserCreateComponent, "lib-user-create", never, {}, {}, never, never, true, never>;
1009
+ }
1010
+
947
1011
  declare class UserComponent {
948
1012
  itemService: UserService;
949
1013
  detailView: _angular_core.Signal<UserDetailComponent | undefined>;
@@ -960,6 +1024,18 @@ declare class GroupDetailComponent extends DetailView<IGroupDetail, IGroupList,
960
1024
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GroupDetailComponent, "lib-group-detail", never, { "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
961
1025
  }
962
1026
 
1027
+ declare class GroupEditComponent extends EditView<IGroupDetail, IGroupList, IGroupCreate> implements OnInit {
1028
+ selectionManager: MemberSelectionManager;
1029
+ constructor();
1030
+ ngOnInit(): void;
1031
+ get showSubmit(): boolean;
1032
+ createItem(): IGroupCreate;
1033
+ protected updateItem(item: IGroupDetail): IGroupDetail;
1034
+ onItemAndUserAvailable(item: IGroupDetail, _: IPortalMemberDetail): void;
1035
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GroupEditComponent, never>;
1036
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GroupEditComponent, "lib-group-edit", never, {}, {}, never, never, true, never>;
1037
+ }
1038
+
963
1039
  declare class GroupComponent {
964
1040
  itemService: GroupService;
965
1041
  detailView: _angular_core.Signal<GroupDetailComponent | undefined>;
@@ -1009,6 +1085,7 @@ declare class OrganizationDetailComponent extends DetailView<IOrganizationDetail
1009
1085
  declare class OrganizationComponent {
1010
1086
  itemService: OrganizationService;
1011
1087
  columns: TableColumn[];
1088
+ filters: IFilters;
1012
1089
  detailView: _angular_core.Signal<OrganizationDetailComponent | undefined>;
1013
1090
  onSelected(id: number | null): void;
1014
1091
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OrganizationComponent, never>;
@@ -1016,10 +1093,10 @@ declare class OrganizationComponent {
1016
1093
  }
1017
1094
 
1018
1095
  declare class OrganizationEditComponent extends EditView<IOrganizationDetail, IOrganizationList, IOrganizationCreate> implements OnInit {
1019
- addressService: AddressService;
1020
1096
  selectionManager: MemberSelectionManager;
1021
1097
  constructor();
1022
1098
  ngOnInit(): void;
1099
+ get organizationService(): OrganizationService;
1023
1100
  addressForm(): FormGroup<IAddressForm>;
1024
1101
  get showSubmit(): boolean;
1025
1102
  createItem(): IOrganizationCreate;
@@ -1029,5 +1106,5 @@ declare class OrganizationEditComponent extends EditView<IOrganizationDetail, IO
1029
1106
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<OrganizationEditComponent, "lib-organization-edit", never, {}, {}, never, never, true, never>;
1030
1107
  }
1031
1108
 
1032
- export { Address, AddressDetailComponent, AddressEditComponent, AddressForm, AddressService, ApiError, AvatarComponent, BackButtonComponent, DetailHeaderComponent, DetailView, DynamicFormBuilderComponent, DynamicFormComponent, DynamicFormForm, EditView, ErrorCode, FORM_FIELD_CHOICES, FeedbackComponent, FieldType, FileRecord, FileUploadComponent, FormFieldDetailComponent, FormFieldEditComponent, FormFieldValueForm, FormService, Group, GroupComponent, GroupDetailComponent, GroupService, ItemQuery, ItemService, ItemWithUserService, LeftNavComponent, LeftNavService, ListTableViewComponent, ListViewComponent, MemberSelectionManager, MockItemService, Organization, OrganizationComponent, OrganizationDetailComponent, OrganizationEditComponent, OrganizationService, Paginated, Permission, PopulatedFormComponent, PopulatedFormForm, PortalMember, REST_SERVICE_CONFIG, ResolvedPermission, RestService, SearchBarComponent, SelectTableComponent, SelectionManager, TopBarComponent, UserComponent, UserDetailComponent, UserEditComponent, UserService, getFieldTypeFromKey, getFileFieldIds };
1033
- export type { IAddressBase, IAddressCreate, IAddressDetail, IAddressForm, IAddressList, ICountry, IDynamicFormForm, IFieldFile, IFileField, IFileRecord, IForm, IFormCreate, IFormDetail, IFormFieldBase, IFormFieldCreate, IFormFieldDetail, IFormFieldValueBase, IFormFieldValueCreate, IFormFieldValueDetail, IFormFieldValueForm, IFormFieldValueUpdate, IFormGroupBase, IFormGroupCreate, IFormGroupDetail, IFormGroupUpdate, IFormUpdate, IGroupBase, IGroupCreate, IGroupDetail, IGroupList, IItemQuery, IMemberIdentifierBase, IMemberIdentifierCreate, IMemberIdentifierDetail, IOrganizationBase, IOrganizationCreate, IOrganizationDetail, IOrganizationList, IPaginated, IPermission, IPopulatedFormCreate, IPopulatedFormDetail, IPopulatedFormForm, IPopulatedFormUpdate, IPortalMemberBase, IPortalMemberCreate, IPortalMemberDetail, IPortalMemberList, IRestOptions, IServerManifest, Identifiable, LeftNavCategory, LeftNavOption, NavGroup, NavGrouping, NavOption, OptionAction, OptionActionChoice, RestServiceConfig, Selectable, TableColumn, TypeChoice };
1109
+ export { Address, AddressDetailComponent, AddressEditComponent, AddressForm, ApiError, AvatarComponent, BackButtonComponent, DetailHeaderComponent, DetailView, DynamicFormBuilderComponent, DynamicFormComponent, DynamicFormForm, EditView, ErrorCode, FORM_FIELD_CHOICES, FeedbackComponent, FieldType, FileRecord, FileUploadComponent, FormFieldDetailComponent, FormFieldEditComponent, FormFieldValueForm, FormService, Group, GroupComponent, GroupDetailComponent, GroupEditComponent, GroupService, ItemQuery, ItemService, ItemWithUserService, LeftNavComponent, LeftNavService, ListTableViewComponent, ListViewComponent, MemberSelectionManager, MockItemService, Organization, OrganizationComponent, OrganizationDetailComponent, OrganizationEditComponent, OrganizationService, Paginated, Permission, PopulatedFormComponent, PopulatedFormForm, PortalMember, REST_SERVICE_CONFIG, ResolvedPermission, RestService, SearchBarComponent, SelectTableComponent, SelectionManager, TopBarComponent, UserComponent, UserCreateComponent, UserDetailComponent, UserEditComponent, UserService, getFieldTypeFromKey, getFileFieldIds };
1110
+ export type { IAddressBase, IAddressCreate, IAddressDetail, IAddressForm, IAddressList, ICountry, IDynamicFormForm, IFieldFile, IFileField, IFileRecord, IFilter, IFilterRow, IFilters, IForm, IFormCreate, IFormDetail, IFormFieldBase, IFormFieldCreate, IFormFieldDetail, IFormFieldValueBase, IFormFieldValueCreate, IFormFieldValueDetail, IFormFieldValueForm, IFormFieldValueUpdate, IFormGroupBase, IFormGroupCreate, IFormGroupDetail, IFormGroupUpdate, IFormUpdate, IGroupBase, IGroupCreate, IGroupDetail, IGroupList, IItemQuery, IMemberIdentifierBase, IMemberIdentifierCreate, IMemberIdentifierDetail, IMemberInvitation, IOrganizationBase, IOrganizationCreate, IOrganizationDetail, IOrganizationList, IPaginated, IPermission, IPopulatedFormCreate, IPopulatedFormDetail, IPopulatedFormForm, IPopulatedFormUpdate, IPortalMemberBase, IPortalMemberCreate, IPortalMemberDetail, IPortalMemberList, IRestOptions, IServerManifest, Identifiable, LeftNavCategory, LeftNavOption, NavGroup, NavGrouping, NavOption, OptionAction, OptionActionChoice, RestServiceConfig, Selectable, TableColumn, TypeChoice };