@buildery/ts-api-kit 5.1.12 → 5.1.14
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/Api.d.ts +22 -20
- package/dist/Api.js +1 -1
- package/dist/Api.js.map +1 -1
- package/dist/RawApi.d.ts +15 -0
- package/dist/RawApi.js +19 -0
- package/dist/RawApi.js.map +1 -0
- package/dist/config/ApiConfigs.d.ts +8 -0
- package/dist/config/ApiConfigs.js +7 -0
- package/dist/config/ApiConfigs.js.map +1 -0
- package/dist/config/RawApi.d.ts +15 -0
- package/dist/config/RawApi.js +19 -0
- package/dist/config/RawApi.js.map +1 -0
- package/dist/config/index.d.ts +2 -0
- package/dist/config/index.js +19 -0
- package/dist/config/index.js.map +1 -0
- package/dist/entities/auth/config/AuthApi.d.ts +22 -0
- package/dist/entities/auth/config/AuthApi.js +80 -0
- package/dist/entities/auth/config/AuthApi.js.map +1 -0
- package/dist/entities/auth/config/index.d.ts +1 -0
- package/dist/entities/auth/config/index.js +18 -0
- package/dist/entities/auth/config/index.js.map +1 -0
- package/dist/entities/auth/errors/AuthError.d.ts +3 -0
- package/dist/entities/auth/errors/AuthError.js +10 -0
- package/dist/entities/auth/errors/AuthError.js.map +1 -0
- package/dist/entities/auth/errors/index.d.ts +1 -0
- package/dist/entities/auth/errors/index.js +18 -0
- package/dist/entities/auth/errors/index.js.map +1 -0
- package/dist/entities/auth/index.d.ts +4 -0
- package/dist/entities/auth/index.js +21 -0
- package/dist/entities/auth/index.js.map +1 -0
- package/dist/entities/auth/services/AuthAxiosService.d.ts +7 -0
- package/dist/entities/auth/services/AuthAxiosService.js +39 -0
- package/dist/entities/auth/services/AuthAxiosService.js.map +1 -0
- package/dist/entities/auth/services/AuthService.d.ts +4 -0
- package/dist/entities/auth/services/AuthService.js +24 -0
- package/dist/entities/auth/services/AuthService.js.map +1 -0
- package/dist/entities/auth/services/AuthTokensService.d.ts +11 -0
- package/dist/entities/auth/services/AuthTokensService.js +36 -0
- package/dist/entities/auth/services/AuthTokensService.js.map +1 -0
- package/dist/entities/auth/services/index.d.ts +3 -0
- package/dist/entities/auth/services/index.js +20 -0
- package/dist/entities/auth/services/index.js.map +1 -0
- package/dist/entities/auth/types/AuthActivateUser.d.ts +5 -0
- package/dist/entities/auth/types/AuthActivateUser.js +3 -0
- package/dist/entities/auth/types/AuthActivateUser.js.map +1 -0
- package/dist/entities/auth/types/AuthApiTokens.d.ts +4 -0
- package/dist/entities/auth/types/AuthApiTokens.js +3 -0
- package/dist/entities/auth/types/AuthApiTokens.js.map +1 -0
- package/dist/entities/auth/types/AuthChangePassword.d.ts +5 -0
- package/dist/entities/auth/types/AuthChangePassword.js +3 -0
- package/dist/entities/auth/types/AuthChangePassword.js.map +1 -0
- package/dist/entities/auth/types/AuthCode.d.ts +4 -0
- package/dist/entities/auth/types/AuthCode.js +3 -0
- package/dist/entities/auth/types/AuthCode.js.map +1 -0
- package/dist/entities/auth/types/AuthConfirmResetPassword.d.ts +4 -0
- package/dist/entities/auth/types/AuthConfirmResetPassword.js +3 -0
- package/dist/entities/auth/types/AuthConfirmResetPassword.js.map +1 -0
- package/dist/entities/auth/types/AuthSignIn.d.ts +4 -0
- package/dist/entities/auth/types/AuthSignIn.js +3 -0
- package/dist/entities/auth/types/AuthSignIn.js.map +1 -0
- package/dist/entities/auth/types/AuthUserJWT.d.ts +8 -0
- package/dist/entities/auth/types/AuthUserJWT.js +3 -0
- package/dist/entities/auth/types/AuthUserJWT.js.map +1 -0
- package/dist/entities/auth/types/index.d.ts +7 -0
- package/dist/entities/auth/types/index.js +24 -0
- package/dist/entities/auth/types/index.js.map +1 -0
- package/dist/entities/index.d.ts +6 -0
- package/dist/entities/index.js +23 -0
- package/dist/entities/index.js.map +1 -0
- package/dist/entities/module/config/ModuleApi.d.ts +10 -0
- package/dist/entities/module/config/ModuleApi.js +44 -0
- package/dist/entities/module/config/ModuleApi.js.map +1 -0
- package/dist/entities/module/config/index.d.ts +1 -0
- package/dist/entities/module/config/index.js +18 -0
- package/dist/entities/module/config/index.js.map +1 -0
- package/dist/entities/module/index.d.ts +2 -0
- package/dist/entities/module/index.js +19 -0
- package/dist/entities/module/index.js.map +1 -0
- package/dist/entities/module/types/IModule.d.ts +12 -0
- package/dist/entities/module/types/IModule.js +3 -0
- package/dist/entities/module/types/IModule.js.map +1 -0
- package/dist/entities/module/types/ModuleObjectNames.d.ts +3 -0
- package/dist/entities/module/types/ModuleObjectNames.js +7 -0
- package/dist/entities/module/types/ModuleObjectNames.js.map +1 -0
- package/dist/entities/module/types/index.d.ts +2 -0
- package/dist/entities/module/types/index.js +19 -0
- package/dist/entities/module/types/index.js.map +1 -0
- package/dist/entities/schema/config/FieldApi.d.ts +12 -0
- package/dist/entities/schema/config/FieldApi.js +44 -0
- package/dist/entities/schema/config/FieldApi.js.map +1 -0
- package/dist/entities/schema/config/ObjectApi.d.ts +6 -0
- package/dist/entities/schema/config/ObjectApi.js +21 -0
- package/dist/entities/schema/config/ObjectApi.js.map +1 -0
- package/dist/entities/schema/config/index.d.ts +2 -0
- package/dist/entities/schema/config/index.js +19 -0
- package/dist/entities/schema/config/index.js.map +1 -0
- package/dist/entities/schema/index.d.ts +2 -0
- package/dist/entities/schema/index.js +19 -0
- package/dist/entities/schema/index.js.map +1 -0
- package/dist/entities/schema/types/FieldType.d.ts +9 -0
- package/dist/entities/schema/types/FieldType.js +14 -0
- package/dist/entities/schema/types/FieldType.js.map +1 -0
- package/dist/entities/schema/types/PicklistValue.d.ts +4 -0
- package/dist/entities/schema/types/PicklistValue.js +3 -0
- package/dist/entities/schema/types/PicklistValue.js.map +1 -0
- package/dist/entities/schema/types/SObject.d.ts +7 -0
- package/dist/entities/schema/types/SObject.js +3 -0
- package/dist/entities/schema/types/SObject.js.map +1 -0
- package/dist/entities/schema/types/SObjectField.d.ts +30 -0
- package/dist/entities/schema/types/SObjectField.js +3 -0
- package/dist/entities/schema/types/SObjectField.js.map +1 -0
- package/dist/entities/schema/types/SchemaObjectNames.d.ts +4 -0
- package/dist/entities/schema/types/SchemaObjectNames.js +8 -0
- package/dist/entities/schema/types/SchemaObjectNames.js.map +1 -0
- package/dist/entities/schema/types/index.d.ts +5 -0
- package/dist/entities/schema/types/index.js +22 -0
- package/dist/entities/schema/types/index.js.map +1 -0
- package/dist/entities/security/config/PermissionApi.d.ts +9 -0
- package/dist/entities/security/config/PermissionApi.js +36 -0
- package/dist/entities/security/config/PermissionApi.js.map +1 -0
- package/dist/entities/security/config/PermissionAssignmentApi.d.ts +6 -0
- package/dist/entities/security/config/PermissionAssignmentApi.js +21 -0
- package/dist/entities/security/config/PermissionAssignmentApi.js.map +1 -0
- package/dist/entities/security/config/PermissionCategoryApi.d.ts +8 -0
- package/dist/entities/security/config/PermissionCategoryApi.js +38 -0
- package/dist/entities/security/config/PermissionCategoryApi.js.map +1 -0
- package/dist/entities/security/config/PermissionDefinitionApi.d.ts +6 -0
- package/dist/entities/security/config/PermissionDefinitionApi.js +21 -0
- package/dist/entities/security/config/PermissionDefinitionApi.js.map +1 -0
- package/dist/entities/security/config/PermissionGroupApi.d.ts +6 -0
- package/dist/entities/security/config/PermissionGroupApi.js +21 -0
- package/dist/entities/security/config/PermissionGroupApi.js.map +1 -0
- package/dist/entities/security/config/PermissionSetApi.d.ts +6 -0
- package/dist/entities/security/config/PermissionSetApi.js +21 -0
- package/dist/entities/security/config/PermissionSetApi.js.map +1 -0
- package/dist/entities/security/config/index.d.ts +6 -0
- package/dist/entities/security/config/index.js +23 -0
- package/dist/entities/security/config/index.js.map +1 -0
- package/dist/entities/security/index.d.ts +2 -0
- package/dist/entities/security/index.js +19 -0
- package/dist/entities/security/index.js.map +1 -0
- package/dist/entities/security/types/IPermission.d.ts +10 -0
- package/dist/entities/security/types/IPermission.js +3 -0
- package/dist/entities/security/types/IPermission.js.map +1 -0
- package/dist/entities/security/types/IPermissionAssignment.d.ts +6 -0
- package/dist/entities/security/types/IPermissionAssignment.js +3 -0
- package/dist/entities/security/types/IPermissionAssignment.js.map +1 -0
- package/dist/entities/security/types/IPermissionCategory.d.ts +5 -0
- package/dist/entities/security/types/IPermissionCategory.js +3 -0
- package/dist/entities/security/types/IPermissionCategory.js.map +1 -0
- package/dist/entities/security/types/IPermissionDefinition.d.ts +6 -0
- package/dist/entities/security/types/IPermissionDefinition.js +3 -0
- package/dist/entities/security/types/IPermissionDefinition.js.map +1 -0
- package/dist/entities/security/types/IPermissionGroup.d.ts +4 -0
- package/dist/entities/security/types/IPermissionGroup.js +3 -0
- package/dist/entities/security/types/IPermissionGroup.js.map +1 -0
- package/dist/entities/security/types/IPermissionSet.d.ts +6 -0
- package/dist/entities/security/types/IPermissionSet.js +3 -0
- package/dist/entities/security/types/IPermissionSet.js.map +1 -0
- package/dist/entities/security/types/SecurityObjectNames.d.ts +8 -0
- package/dist/entities/security/types/SecurityObjectNames.js +12 -0
- package/dist/entities/security/types/SecurityObjectNames.js.map +1 -0
- package/dist/entities/security/types/index.d.ts +7 -0
- package/dist/entities/security/types/index.js +24 -0
- package/dist/entities/security/types/index.js.map +1 -0
- package/dist/entities/user/config/UserApi.d.ts +6 -0
- package/dist/entities/user/config/UserApi.js +23 -0
- package/dist/entities/user/config/UserApi.js.map +1 -0
- package/dist/entities/user/config/index.d.ts +1 -0
- package/dist/entities/user/config/index.js +18 -0
- package/dist/entities/user/config/index.js.map +1 -0
- package/dist/entities/user/index.d.ts +2 -0
- package/dist/entities/user/index.js +19 -0
- package/dist/entities/user/index.js.map +1 -0
- package/dist/entities/user/types/CreateUser.d.ts +5 -0
- package/dist/entities/user/types/CreateUser.js +3 -0
- package/dist/entities/user/types/CreateUser.js.map +1 -0
- package/dist/entities/user/types/EUserStatus.d.ts +5 -0
- package/dist/entities/user/types/EUserStatus.js +10 -0
- package/dist/entities/user/types/EUserStatus.js.map +1 -0
- package/dist/entities/user/types/User.d.ts +8 -0
- package/dist/entities/user/types/User.js +3 -0
- package/dist/entities/user/types/User.js.map +1 -0
- package/dist/entities/user/types/index.d.ts +3 -0
- package/dist/entities/user/types/index.js +20 -0
- package/dist/entities/user/types/index.js.map +1 -0
- package/dist/entities/workspace/config/WorkspaceApi.d.ts +10 -0
- package/dist/entities/workspace/config/WorkspaceApi.js +27 -0
- package/dist/entities/workspace/config/WorkspaceApi.js.map +1 -0
- package/dist/entities/workspace/config/index.d.ts +1 -0
- package/dist/entities/workspace/config/index.js +18 -0
- package/dist/entities/workspace/config/index.js.map +1 -0
- package/dist/entities/workspace/index.d.ts +2 -0
- package/dist/entities/workspace/index.js +19 -0
- package/dist/entities/workspace/index.js.map +1 -0
- package/dist/entities/workspace/types/InitWorkspace.d.ts +6 -0
- package/dist/entities/workspace/types/InitWorkspace.js +3 -0
- package/dist/entities/workspace/types/InitWorkspace.js.map +1 -0
- package/dist/entities/workspace/types/index.d.ts +1 -0
- package/dist/entities/workspace/types/index.js +18 -0
- package/dist/entities/workspace/types/index.js.map +1 -0
- package/dist/features/bind-this/BindThis.d.ts +3 -0
- package/dist/features/bind-this/BindThis.js +11 -0
- package/dist/features/bind-this/BindThis.js.map +1 -0
- package/dist/features/bind-this/index.d.ts +1 -0
- package/dist/features/bind-this/index.js +18 -0
- package/dist/features/bind-this/index.js.map +1 -0
- package/dist/features/callout/Calloutable.d.ts +4 -0
- package/dist/features/callout/Calloutable.js +28 -0
- package/dist/features/callout/Calloutable.js.map +1 -0
- package/dist/features/callout/decorators/AddCalloutMiddleware.d.ts +3 -0
- package/dist/features/callout/decorators/AddCalloutMiddleware.js +15 -0
- package/dist/features/callout/decorators/AddCalloutMiddleware.js.map +1 -0
- package/dist/features/crud/abstract/AbstractCRUDRequest.d.ts +4 -0
- package/dist/features/crud/abstract/AbstractCRUDRequest.js +11 -0
- package/dist/features/crud/abstract/AbstractCRUDRequest.js.map +1 -0
- package/dist/features/crud/abstract/index.d.ts +1 -0
- package/dist/features/crud/abstract/index.js +18 -0
- package/dist/features/crud/abstract/index.js.map +1 -0
- package/dist/features/crud/constants/CrudActions.d.ts +10 -0
- package/dist/features/crud/constants/CrudActions.js +15 -0
- package/dist/features/crud/constants/CrudActions.js.map +1 -0
- package/dist/features/crud/constants/CrudConstants.d.ts +1 -0
- package/dist/features/crud/constants/CrudConstants.js +5 -0
- package/dist/features/crud/constants/CrudConstants.js.map +1 -0
- package/dist/features/crud/constants/index.d.ts +2 -0
- package/dist/features/crud/constants/index.js +19 -0
- package/dist/features/crud/constants/index.js.map +1 -0
- package/dist/features/crud/middlewares/PushCrudEvent.d.ts +4 -0
- package/dist/features/crud/middlewares/PushCrudEvent.js +15 -0
- package/dist/features/crud/middlewares/PushCrudEvent.js.map +1 -0
- package/dist/features/crud/middlewares/index.d.ts +1 -0
- package/dist/features/crud/middlewares/index.js +18 -0
- package/dist/features/crud/middlewares/index.js.map +1 -0
- package/dist/features/crud/operations/Create.d.ts +5 -0
- package/dist/features/crud/operations/Create.js +35 -0
- package/dist/features/crud/operations/Create.js.map +1 -0
- package/dist/features/crud/operations/CreateBulk.d.ts +5 -0
- package/dist/features/crud/operations/CreateBulk.js +35 -0
- package/dist/features/crud/operations/CreateBulk.js.map +1 -0
- package/dist/features/crud/operations/DeleteById.d.ts +5 -0
- package/dist/features/crud/operations/DeleteById.js +34 -0
- package/dist/features/crud/operations/DeleteById.js.map +1 -0
- package/dist/features/crud/operations/DeleteByIds.d.ts +5 -0
- package/dist/features/crud/operations/DeleteByIds.js +34 -0
- package/dist/features/crud/operations/DeleteByIds.js.map +1 -0
- package/dist/features/crud/operations/GetAll.d.ts +5 -0
- package/dist/features/crud/operations/GetAll.js +16 -0
- package/dist/features/crud/operations/GetAll.js.map +1 -0
- package/dist/features/crud/operations/GetById.d.ts +5 -0
- package/dist/features/crud/operations/GetById.js +16 -0
- package/dist/features/crud/operations/GetById.js.map +1 -0
- package/dist/features/crud/operations/GetByIds.d.ts +5 -0
- package/dist/features/crud/operations/GetByIds.js +17 -0
- package/dist/features/crud/operations/GetByIds.js.map +1 -0
- package/dist/features/crud/operations/Update.d.ts +5 -0
- package/dist/features/crud/operations/Update.js +35 -0
- package/dist/features/crud/operations/Update.js.map +1 -0
- package/dist/features/crud/operations/UpdateBulk.d.ts +5 -0
- package/dist/features/crud/operations/UpdateBulk.js +35 -0
- package/dist/features/crud/operations/UpdateBulk.js.map +1 -0
- package/dist/features/crud/operations/Upsert.d.ts +5 -0
- package/dist/features/crud/operations/Upsert.js +35 -0
- package/dist/features/crud/operations/Upsert.js.map +1 -0
- package/dist/features/crud/operations/UpsertBulk.d.ts +5 -0
- package/dist/features/crud/operations/UpsertBulk.js +35 -0
- package/dist/features/crud/operations/UpsertBulk.js.map +1 -0
- package/dist/features/crud/templates/FullCRUD.d.ts +9 -0
- package/dist/features/crud/templates/FullCRUD.js +13 -0
- package/dist/features/crud/templates/FullCRUD.js.map +1 -0
- package/dist/features/crud/templates/FullCreate.d.ts +6 -0
- package/dist/features/crud/templates/FullCreate.js +10 -0
- package/dist/features/crud/templates/FullCreate.js.map +1 -0
- package/dist/features/crud/templates/FullDelete.d.ts +6 -0
- package/dist/features/crud/templates/FullDelete.js +10 -0
- package/dist/features/crud/templates/FullDelete.js.map +1 -0
- package/dist/features/crud/templates/FullQuery.d.ts +7 -0
- package/dist/features/crud/templates/FullQuery.js +11 -0
- package/dist/features/crud/templates/FullQuery.js.map +1 -0
- package/dist/features/crud/templates/FullUpdate.d.ts +6 -0
- package/dist/features/crud/templates/FullUpdate.js +10 -0
- package/dist/features/crud/templates/FullUpdate.js.map +1 -0
- package/dist/features/crud/templates/FullUpsert.d.ts +6 -0
- package/dist/features/crud/templates/FullUpsert.js +10 -0
- package/dist/features/crud/templates/FullUpsert.js.map +1 -0
- package/dist/features/crud/templates/index.d.ts +6 -0
- package/dist/features/crud/templates/index.js +23 -0
- package/dist/features/crud/templates/index.js.map +1 -0
- package/dist/micro/security/PermissionSetApi.d.ts +7 -0
- package/dist/micro/security/PermissionSetApi.js +47 -0
- package/dist/micro/security/PermissionSetApi.js.map +1 -0
- package/dist/micro/security/index.d.ts +1 -0
- package/dist/micro/security/index.js +1 -0
- package/dist/micro/security/index.js.map +1 -1
- package/dist/micro/security/types/Permission.d.ts +10 -0
- package/dist/micro/security/types/Permission.js +3 -0
- package/dist/micro/security/types/Permission.js.map +1 -0
- package/dist/micro/security/types/PermissionAssignment.d.ts +6 -0
- package/dist/micro/security/types/PermissionAssignment.js +3 -0
- package/dist/micro/security/types/PermissionAssignment.js.map +1 -0
- package/dist/micro/security/types/PermissionCategory.d.ts +5 -0
- package/dist/micro/security/types/PermissionCategory.js +3 -0
- package/dist/micro/security/types/PermissionCategory.js.map +1 -0
- package/dist/micro/security/types/PermissionDefinition.d.ts +6 -0
- package/dist/micro/security/types/PermissionDefinition.js +3 -0
- package/dist/micro/security/types/PermissionDefinition.js.map +1 -0
- package/dist/micro/security/types/PermissionGroup.d.ts +4 -0
- package/dist/micro/security/types/PermissionGroup.js +3 -0
- package/dist/micro/security/types/PermissionGroup.js.map +1 -0
- package/dist/micro/security/types/PermissionSet.d.ts +6 -0
- package/dist/micro/security/types/PermissionSet.js +3 -0
- package/dist/micro/security/types/PermissionSet.js.map +1 -0
- package/dist/micro/security/types/PermissionSetAssignment.d.ts +4 -0
- package/dist/micro/security/types/PermissionSetAssignment.js +3 -0
- package/dist/micro/security/types/PermissionSetAssignment.js.map +1 -0
- package/dist/micro/security/types/index.d.ts +7 -6
- package/dist/micro/security/types/index.js +7 -6
- package/dist/micro/security/types/index.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./AuthTokensService"), exports);
|
|
18
|
+
__exportStar(require("./AuthService"), exports);
|
|
19
|
+
__exportStar(require("./AuthAxiosService"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/auth/services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,gDAA8B;AAC9B,qDAAmC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthActivateUser.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/AuthActivateUser.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthApiTokens.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/AuthApiTokens.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthChangePassword.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/AuthChangePassword.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthCode.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/AuthCode.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthConfirmResetPassword.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/AuthConfirmResetPassword.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthSignIn.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/AuthSignIn.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthUserJWT.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/AuthUserJWT.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./AuthUserJWT"), exports);
|
|
18
|
+
__exportStar(require("./AuthApiTokens"), exports);
|
|
19
|
+
__exportStar(require("./AuthActivateUser"), exports);
|
|
20
|
+
__exportStar(require("./AuthChangePassword"), exports);
|
|
21
|
+
__exportStar(require("./AuthSignIn"), exports);
|
|
22
|
+
__exportStar(require("./AuthCode"), exports);
|
|
23
|
+
__exportStar(require("./AuthConfirmResetPassword"), exports);
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/auth/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,kDAAgC;AAChC,qDAAmC;AACnC,uDAAqC;AACrC,+CAA6B;AAC7B,6CAA2B;AAC3B,6DAA2C"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./module"), exports);
|
|
18
|
+
__exportStar(require("./schema"), exports);
|
|
19
|
+
__exportStar(require("./security"), exports);
|
|
20
|
+
__exportStar(require("./user"), exports);
|
|
21
|
+
__exportStar(require("./auth"), exports);
|
|
22
|
+
__exportStar(require("./workspace"), exports);
|
|
23
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,6CAA2B;AAC3B,yCAAuB;AACvB,yCAAuB;AACvB,8CAA4B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FullCRUD } from "../../../features";
|
|
2
|
+
import { AxiosRequestConfig } from "axios";
|
|
3
|
+
import { IModule, IModuleAction } from "../types";
|
|
4
|
+
export declare class ModuleApi extends FullCRUD<IModule> {
|
|
5
|
+
getApiUrl(): string;
|
|
6
|
+
getObjectName(): string;
|
|
7
|
+
createAction(moduleId: string, action: IModuleAction): AxiosRequestConfig<any>;
|
|
8
|
+
updateAction(moduleId: string, actionName: string, action: IModuleAction): AxiosRequestConfig<any>;
|
|
9
|
+
deleteAction(moduleId: string, actionName: string): AxiosRequestConfig<any>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.ModuleApi = void 0;
|
|
10
|
+
const features_1 = require("../../../features");
|
|
11
|
+
const features_2 = require("../../../features");
|
|
12
|
+
const config_1 = require("../../../config");
|
|
13
|
+
let ModuleApi = class ModuleApi extends features_1.FullCRUD {
|
|
14
|
+
getApiUrl() { return config_1.ApiConfigs.workspaceUrl; }
|
|
15
|
+
getObjectName() { return 'module'; }
|
|
16
|
+
createAction(moduleId, action) {
|
|
17
|
+
return {
|
|
18
|
+
baseURL: this.getApiUrl(),
|
|
19
|
+
url: `/${this.getObjectName()}/${moduleId}/action`,
|
|
20
|
+
method: 'POST',
|
|
21
|
+
data: action
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
updateAction(moduleId, actionName, action) {
|
|
25
|
+
return {
|
|
26
|
+
baseURL: this.getApiUrl(),
|
|
27
|
+
url: `/${this.getObjectName()}/${moduleId}/action/${actionName}`,
|
|
28
|
+
method: 'PATCH',
|
|
29
|
+
data: action
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
deleteAction(moduleId, actionName) {
|
|
33
|
+
return {
|
|
34
|
+
baseURL: this.getApiUrl(),
|
|
35
|
+
url: `/${this.getObjectName()}/${moduleId}/action/${actionName}`,
|
|
36
|
+
method: 'DELETE',
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
ModuleApi = __decorate([
|
|
41
|
+
(0, features_2.Calloutable)()
|
|
42
|
+
], ModuleApi);
|
|
43
|
+
exports.ModuleApi = ModuleApi;
|
|
44
|
+
//# sourceMappingURL=ModuleApi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ModuleApi.js","sourceRoot":"","sources":["../../../../src/entities/module/config/ModuleApi.ts"],"names":[],"mappings":";;;;;;;;;AAAA,gDAA2C;AAC3C,gDAA8C;AAG9C,4CAA2C;AAGpC,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,mBAAiB;IAE9B,SAAS,KAAK,OAAO,mBAAU,CAAC,YAAY,CAAA,CAAC,CAAC;IAE9C,aAAa,KAAK,OAAO,QAAQ,CAAA,CAAC,CAAC;IAE5C,YAAY,CAAC,QAAgB,EAAE,MAAqB;QACzD,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,SAAS,EAAE;YACzB,GAAG,EAAE,IAAI,IAAI,CAAC,aAAa,EAAE,IAAI,QAAQ,SAAS;YAClD,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,MAAM;SACS,CAAA;IACzB,CAAC;IAEM,YAAY,CAAC,QAAgB,EAAE,UAAkB,EAAE,MAAqB;QAC7E,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,SAAS,EAAE;YACzB,GAAG,EAAE,IAAI,IAAI,CAAC,aAAa,EAAE,IAAI,QAAQ,WAAW,UAAU,EAAE;YAChE,MAAM,EAAE,OAAO;YACf,IAAI,EAAE,MAAM;SACS,CAAA;IACzB,CAAC;IAEM,YAAY,CAAC,QAAgB,EAAE,UAAkB;QACtD,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,SAAS,EAAE;YACzB,GAAG,EAAE,IAAI,IAAI,CAAC,aAAa,EAAE,IAAI,QAAQ,WAAW,UAAU,EAAE;YAChE,MAAM,EAAE,QAAQ;SACK,CAAA;IACzB,CAAC;CACF,CAAA;AA/BY,SAAS;IADrB,IAAA,sBAAW,GAAE;GACD,SAAS,CA+BrB;AA/BY,8BAAS"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ModuleApi';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ModuleApi"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/module/config/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./config"), exports);
|
|
18
|
+
__exportStar(require("./types"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/entities/module/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,0CAAwB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IModule.js","sourceRoot":"","sources":["../../../../src/entities/module/types/IModule.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ModuleObjectNames.js","sourceRoot":"","sources":["../../../../src/entities/module/types/ModuleObjectNames.ts"],"names":[],"mappings":";;;AAAa,QAAA,iBAAiB,GAAG;IAC/B,MAAM,EAAE,QAAQ;CACjB,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ModuleObjectNames"), exports);
|
|
18
|
+
__exportStar(require("./IModule"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/module/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAoC;AACpC,4CAA0B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Create, DeleteById, FullQuery, Upsert } from "../../../features";
|
|
2
|
+
import { SObjectField } from "../types";
|
|
3
|
+
import { AxiosRequestConfig } from "axios";
|
|
4
|
+
declare const FieldApi_base: import("ts-mixer/dist/types/types").Class<any[], FullQuery & Create & Upsert & DeleteById, typeof FullQuery & typeof Create & typeof Upsert & typeof DeleteById, false>;
|
|
5
|
+
export declare class FieldApi extends FieldApi_base {
|
|
6
|
+
getApiUrl(): string;
|
|
7
|
+
getObjectName(): string;
|
|
8
|
+
create(field: SObjectField): AxiosRequestConfig;
|
|
9
|
+
getAllByObjectId(objectId: string): AxiosRequestConfig<any>;
|
|
10
|
+
deleteAllByObjectId(objectId: string): AxiosRequestConfig<any>;
|
|
11
|
+
}
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.FieldApi = void 0;
|
|
10
|
+
const features_1 = require("../../../features");
|
|
11
|
+
const features_2 = require("../../../features");
|
|
12
|
+
const config_1 = require("../../../config");
|
|
13
|
+
const ts_mixer_1 = require("ts-mixer");
|
|
14
|
+
let FieldApi = class FieldApi extends (0, ts_mixer_1.Mixin)(features_1.FullQuery, features_1.Create, features_1.Upsert, features_1.DeleteById) {
|
|
15
|
+
getApiUrl() { return config_1.ApiConfigs.queryUrl; }
|
|
16
|
+
getObjectName() { return 'metadata/field'; }
|
|
17
|
+
create(field) {
|
|
18
|
+
return {
|
|
19
|
+
baseURL: this.getApiUrl(),
|
|
20
|
+
url: `/${this.getObjectName()}/${field.objectId}`,
|
|
21
|
+
method: 'POST',
|
|
22
|
+
data: field
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
getAllByObjectId(objectId) {
|
|
26
|
+
return {
|
|
27
|
+
baseURL: this.getApiUrl(),
|
|
28
|
+
url: `/${this.getObjectName()}/object/${objectId}`,
|
|
29
|
+
method: 'GET'
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
deleteAllByObjectId(objectId) {
|
|
33
|
+
return {
|
|
34
|
+
baseURL: this.getApiUrl(),
|
|
35
|
+
url: `/${this.getObjectName()}/object/${objectId}/all`,
|
|
36
|
+
method: 'DELETE'
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
FieldApi = __decorate([
|
|
41
|
+
(0, features_2.Calloutable)()
|
|
42
|
+
], FieldApi);
|
|
43
|
+
exports.FieldApi = FieldApi;
|
|
44
|
+
//# sourceMappingURL=FieldApi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldApi.js","sourceRoot":"","sources":["../../../../src/entities/schema/config/FieldApi.ts"],"names":[],"mappings":";;;;;;;;;AAAA,gDAAwE;AACxE,gDAA8C;AAG9C,4CAA2C;AAC3C,uCAA+B;AAGxB,IAAM,QAAQ,GAAd,MAAM,QAAS,SAAQ,IAAA,gBAAK,EAAC,oBAAS,EAAE,iBAAM,EAAE,iBAAM,EAAE,qBAAU,CAAC;IAExD,SAAS,KAAK,OAAO,mBAAU,CAAC,QAAQ,CAAA,CAAC,CAAC;IAE1C,aAAa,KAAK,OAAO,gBAAgB,CAAA,CAAC,CAAC;IAE3C,MAAM,CAAC,KAAmB;QACxC,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,SAAS,EAAE;YACzB,GAAG,EAAE,IAAI,IAAI,CAAC,aAAa,EAAE,IAAI,KAAK,CAAC,QAAQ,EAAE;YACjD,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,KAAK;SACU,CAAA;IACzB,CAAC;IAEM,gBAAgB,CAAC,QAAgB;QACtC,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,SAAS,EAAE;YACzB,GAAG,EAAE,IAAI,IAAI,CAAC,aAAa,EAAE,WAAW,QAAQ,EAAE;YAClD,MAAM,EAAE,KAAK;SACQ,CAAA;IACzB,CAAC;IAEM,mBAAmB,CAAC,QAAgB;QACzC,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,SAAS,EAAE;YACzB,GAAG,EAAE,IAAI,IAAI,CAAC,aAAa,EAAE,WAAW,QAAQ,MAAM;YACtD,MAAM,EAAE,QAAQ;SACK,CAAA;IACzB,CAAC;CAEF,CAAA;AA/BY,QAAQ;IADpB,IAAA,sBAAW,GAAE;GACD,QAAQ,CA+BpB;AA/BY,4BAAQ"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.ObjectApi = void 0;
|
|
10
|
+
const features_1 = require("../../../features");
|
|
11
|
+
const features_2 = require("../../../features");
|
|
12
|
+
const ApiConfigs_1 = require("../../../config/ApiConfigs");
|
|
13
|
+
let ObjectApi = class ObjectApi extends features_1.FullCRUD {
|
|
14
|
+
getApiUrl() { return ApiConfigs_1.ApiConfigs.queryUrl; }
|
|
15
|
+
getObjectName() { return 'metadata/object'; }
|
|
16
|
+
};
|
|
17
|
+
ObjectApi = __decorate([
|
|
18
|
+
(0, features_2.Calloutable)()
|
|
19
|
+
], ObjectApi);
|
|
20
|
+
exports.ObjectApi = ObjectApi;
|
|
21
|
+
//# sourceMappingURL=ObjectApi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ObjectApi.js","sourceRoot":"","sources":["../../../../src/entities/schema/config/ObjectApi.ts"],"names":[],"mappings":";;;;;;;;;AAAA,gDAA2C;AAC3C,gDAA8C;AAE9C,2DAAsD;AAG/C,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,mBAAiB;IAE9B,SAAS,KAAK,OAAO,uBAAU,CAAC,QAAQ,CAAA,CAAC,CAAC;IAE1C,aAAa,KAAK,OAAO,iBAAiB,CAAA,CAAC,CAAC;CAE7D,CAAA;AANY,SAAS;IADrB,IAAA,sBAAW,GAAE;GACD,SAAS,CAMrB;AANY,8BAAS"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ObjectApi"), exports);
|
|
18
|
+
__exportStar(require("./FieldApi"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/schema/config/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,6CAA2B"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./config"), exports);
|
|
18
|
+
__exportStar(require("./types"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/entities/schema/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,0CAAwB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FieldType = void 0;
|
|
4
|
+
var FieldType;
|
|
5
|
+
(function (FieldType) {
|
|
6
|
+
FieldType["String"] = "String";
|
|
7
|
+
FieldType["Number"] = "Number";
|
|
8
|
+
FieldType["Boolean"] = "Boolean";
|
|
9
|
+
FieldType["Relation"] = "Relation";
|
|
10
|
+
FieldType["Datetime"] = "Datetime";
|
|
11
|
+
FieldType["Picklist"] = "Picklist";
|
|
12
|
+
FieldType["Multipicklist"] = "Multipicklist";
|
|
13
|
+
})(FieldType = exports.FieldType || (exports.FieldType = {}));
|
|
14
|
+
//# sourceMappingURL=FieldType.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FieldType.js","sourceRoot":"","sources":["../../../../src/entities/schema/types/FieldType.ts"],"names":[],"mappings":";;;AAAA,IAAY,SAQX;AARD,WAAY,SAAS;IACnB,8BAAiB,CAAA;IACjB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,kCAAqB,CAAA;IACrB,kCAAqB,CAAA;IACrB,kCAAqB,CAAA;IACrB,4CAA+B,CAAA;AACjC,CAAC,EARW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAQpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PicklistValue.js","sourceRoot":"","sources":["../../../../src/entities/schema/types/PicklistValue.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SObject.js","sourceRoot":"","sources":["../../../../src/entities/schema/types/SObject.ts"],"names":[],"mappings":""}
|