bruce-models 7.1.2 → 7.1.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.
- package/dist/bruce-models.es5.js +7 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +7 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/account/account-invite.js +6 -2
- package/dist/lib/account/account-invite.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/types/account/account-invite.d.ts +1 -0
- package/dist/types/bruce-models.d.ts +1 -1
- package/package.json +1 -1
package/dist/bruce-models.es5.js
CHANGED
|
@@ -14050,11 +14050,15 @@ var AccountInvite;
|
|
|
14050
14050
|
*/
|
|
14051
14051
|
function GetByCode(params) {
|
|
14052
14052
|
return __awaiter(this, void 0, void 0, function* () {
|
|
14053
|
-
let { api, code, req } = params;
|
|
14053
|
+
let { api, code, req, expand } = params;
|
|
14054
14054
|
if (!api) {
|
|
14055
14055
|
api = ENVIRONMENT.Api().GetGuardianApi();
|
|
14056
14056
|
}
|
|
14057
|
-
|
|
14057
|
+
let url = `v3/accountInvite?InviteCode=${code}`;
|
|
14058
|
+
if (expand) {
|
|
14059
|
+
url += "&Expand=" + expand;
|
|
14060
|
+
}
|
|
14061
|
+
const invite = yield api.GET(url, Api.PrepReqParams(req));
|
|
14058
14062
|
return {
|
|
14059
14063
|
invite: invite
|
|
14060
14064
|
};
|
|
@@ -16966,7 +16970,7 @@ var ChangeSet;
|
|
|
16966
16970
|
})(ChangeSet || (ChangeSet = {}));
|
|
16967
16971
|
|
|
16968
16972
|
// This is updated with the package.json version on build.
|
|
16969
|
-
const VERSION = "7.1.
|
|
16973
|
+
const VERSION = "7.1.3";
|
|
16970
16974
|
|
|
16971
16975
|
export { VERSION, Assembly, AnnDocument, CustomForm, AbstractApi, Api, BruceApi, GlobalApi, GuardianApi, ApiGetters, Calculator, Bounds, BruceEvent, CacheControl, Camera, Cartes, Carto, Color, DelayQueue, Geometry, UTC, BruceVariable, LRUCache, GeoJson, EntityAttachmentType, EntityAttachment, EntityComment, EntityLink, EntityLod, EntityLodCategory, EntityRelationType, EntityRelation, EntitySource, EntityTag, EntityType, Entity, EntityCoords, EntityAttribute, EntityHistoricData, EntityTableView, Comment, ClientFile, ProgramKey, ZoomControl, MenuItem, ProjectViewBookmark, ProjectView, ProjectViewLegacyTile, ProjectViewTile, ProjectViewLegacy, ProjectViewLegacyBookmark, ProjectViewBookmarkGroup, PendingAction, MessageBroker, HostingLocation, Style, Tileset, Permission, Session, UserGroup, User, UserMfaMethod, Account, AccountInvite, AccountFeatures, AccountLimits, AccountTemplate, AccountType, EncryptUtils, MathUtils, ObjectUtils, PathUtils, UrlUtils, DataLab, DataLabGroup, ImportAssembly, ImportCad, ImportCsv, ImportJson, ImportGeoJson, ImportKml, ImportedFile, ExportBrz, ExportUsd, Markup, Uploader, Plugin, ENVIRONMENT, DataSource, Scenario, Tracking, NavigatorChatClient, NavigatorMcpWebSocketClient, ChangeSet };
|
|
16972
16976
|
//# sourceMappingURL=bruce-models.es5.js.map
|