@rockcarver/frodo-lib 0.14.2-0 → 0.15.0

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/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.15.0] - 2022-10-14
11
+
12
+ ### Added
13
+
14
+ - rockcarver/frodo-cli#82: Added version update checking
15
+
16
+ ### Changed
17
+
18
+ - Exposed more api layer modules
19
+
10
20
  ## [0.14.2-0] - 2022-10-11
11
21
 
12
22
  ### Added
@@ -629,7 +639,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
629
639
  - Fixed problem with adding connection profiles
630
640
  - Miscellaneous bug fixes
631
641
 
632
- [Unreleased]: https://github.com/rockcarver/frodo-lib/compare/v0.14.2-0...HEAD
642
+ [Unreleased]: https://github.com/rockcarver/frodo-lib/compare/v0.15.0...HEAD
643
+
644
+ [0.15.0]: https://github.com/rockcarver/frodo-lib/compare/v0.14.2-0...v0.15.0
633
645
 
634
646
  [0.14.2-0]: https://github.com/rockcarver/frodo-lib/compare/v0.14.1...v0.14.2-0
635
647
 
package/cjs/index.js CHANGED
@@ -3,41 +3,41 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.state = exports.VariablesRaw = exports.Variables = exports.Utils = exports.TypesRaw = exports.Types = exports.TreeRaw = exports.ThemeRaw = exports.Theme = exports.StartupRaw = exports.Startup = exports.SecretsRaw = exports.Secrets = exports.Script = exports.Saml2 = exports.Realm = exports.Organization = exports.OAuth2OIDCApi = exports.OAuth2Client = exports.NodeRaw = exports.Node = exports.ManagedObject = exports.Log = exports.LibVersion = exports.Journey = exports.Idp = exports.Idm = exports.EmailTemplate = exports.ConnectionProfile = exports.CirclesOfTrust = exports.Authenticate = exports.Admin = void 0;
6
+ exports.state = exports.VariablesRaw = exports.Variables = exports.Utils = exports.TypesRaw = exports.Types = exports.TreeRaw = exports.ThemeRaw = exports.Theme = exports.StartupRaw = exports.Startup = exports.SecretsRaw = exports.Secrets = exports.Script = exports.Saml2 = exports.Realm = exports.Organization = exports.OAuth2OIDCApi = exports.OAuth2Client = exports.NodeRaw = exports.Node = exports.ManagedObject = exports.Log = exports.LibVersion = exports.Journey = exports.Idp = exports.Idm = exports.ExportImportUtils = exports.EmailTemplateRaw = exports.EmailTemplate = exports.ConnectionProfile = exports.CirclesOfTrust = exports.Authenticate = exports.Admin = void 0;
7
7
 
8
8
  var _colors = _interopRequireDefault(require("colors"));
9
9
 
10
- var _TypesRaw = _interopRequireWildcard(require("./api/ApiTypes"));
10
+ var _EmailTemplateRaw = _interopRequireWildcard(require("./api/EmailTemplateApi"));
11
11
 
12
- exports.TypesRaw = _TypesRaw;
12
+ exports.EmailTemplateRaw = _EmailTemplateRaw;
13
13
 
14
14
  var _NodeRaw = _interopRequireWildcard(require("./api/NodeApi"));
15
15
 
16
16
  exports.NodeRaw = _NodeRaw;
17
17
 
18
- var _TreeRaw = _interopRequireWildcard(require("./api/TreeApi"));
18
+ var _SecretsRaw = _interopRequireWildcard(require("./api/SecretsApi"));
19
19
 
20
- exports.TreeRaw = _TreeRaw;
20
+ exports.SecretsRaw = _SecretsRaw;
21
21
 
22
22
  var _StartupRaw = _interopRequireWildcard(require("./api/StartupApi"));
23
23
 
24
24
  exports.StartupRaw = _StartupRaw;
25
25
 
26
- var _SecretsRaw = _interopRequireWildcard(require("./api/SecretsApi"));
26
+ var _ThemeRaw = _interopRequireWildcard(require("./api/ThemeApi"));
27
27
 
28
- exports.SecretsRaw = _SecretsRaw;
28
+ exports.ThemeRaw = _ThemeRaw;
29
29
 
30
- var _VariablesRaw = _interopRequireWildcard(require("./api/VariablesApi"));
30
+ var _TreeRaw = _interopRequireWildcard(require("./api/TreeApi"));
31
31
 
32
- exports.VariablesRaw = _VariablesRaw;
32
+ exports.TreeRaw = _TreeRaw;
33
33
 
34
- var _ThemeRaw = _interopRequireWildcard(require("./api/ThemeApi"));
34
+ var _TypesRaw = _interopRequireWildcard(require("./api/ApiTypes"));
35
35
 
36
- exports.ThemeRaw = _ThemeRaw;
36
+ exports.TypesRaw = _TypesRaw;
37
37
 
38
- var _Types = _interopRequireWildcard(require("./ops/OpsTypes"));
38
+ var _VariablesRaw = _interopRequireWildcard(require("./api/VariablesApi"));
39
39
 
40
- exports.Types = _Types;
40
+ exports.VariablesRaw = _VariablesRaw;
41
41
 
42
42
  var _Admin = _interopRequireWildcard(require("./ops/AdminOps"));
43
43
 
@@ -79,6 +79,10 @@ var _ManagedObject = _interopRequireWildcard(require("./ops/ManagedObjectOps"));
79
79
 
80
80
  exports.ManagedObject = _ManagedObject;
81
81
 
82
+ var _Node = _interopRequireWildcard(require("./ops/NodeOps"));
83
+
84
+ exports.Node = _Node;
85
+
82
86
  var _OAuth2Client = _interopRequireWildcard(require("./ops/OAuth2ClientOps"));
83
87
 
84
88
  exports.OAuth2Client = _OAuth2Client;
@@ -87,10 +91,6 @@ var _Organization = _interopRequireWildcard(require("./ops/OrganizationOps"));
87
91
 
88
92
  exports.Organization = _Organization;
89
93
 
90
- var _Node = _interopRequireWildcard(require("./ops/NodeOps"));
91
-
92
- exports.Node = _Node;
93
-
94
94
  var _Realm = _interopRequireWildcard(require("./ops/RealmOps"));
95
95
 
96
96
  exports.Realm = _Realm;
@@ -115,6 +115,10 @@ var _Theme = _interopRequireWildcard(require("./ops/ThemeOps"));
115
115
 
116
116
  exports.Theme = _Theme;
117
117
 
118
+ var _Types = _interopRequireWildcard(require("./ops/OpsTypes"));
119
+
120
+ exports.Types = _Types;
121
+
118
122
  var _Variables = _interopRequireWildcard(require("./ops/VariablesOps"));
119
123
 
120
124
  exports.Variables = _Variables;
@@ -123,6 +127,14 @@ var _Utils = _interopRequireWildcard(require("./ops/utils/OpsUtils"));
123
127
 
124
128
  exports.Utils = _Utils;
125
129
 
130
+ var _LibVersion = _interopRequireWildcard(require("./ops/utils/Version"));
131
+
132
+ exports.LibVersion = _LibVersion;
133
+
134
+ var _ExportImportUtils = _interopRequireWildcard(require("./ops/utils/ExportImportUtils"));
135
+
136
+ exports.ExportImportUtils = _ExportImportUtils;
137
+
126
138
  var _state = _interopRequireWildcard(require("./storage/SessionStorage"));
127
139
 
128
140
  exports.state = _state;
@@ -131,10 +143,6 @@ var _OAuth2OIDCApi = _interopRequireWildcard(require("./api/OAuth2OIDCApi"));
131
143
 
132
144
  exports.OAuth2OIDCApi = _OAuth2OIDCApi;
133
145
 
134
- var _LibVersion = _interopRequireWildcard(require("./ops/utils/Version"));
135
-
136
- exports.LibVersion = _LibVersion;
137
-
138
146
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
139
147
 
140
148
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["Color","enable"],"sources":["index.ts"],"sourcesContent":["import Color from 'colors';\n\nColor.enable();\n\n// Api Layer\nexport * as TypesRaw from './api/ApiTypes';\nexport * as NodeRaw from './api/NodeApi';\nexport * as TreeRaw from './api/TreeApi';\nexport * as StartupRaw from './api/StartupApi';\nexport * as SecretsRaw from './api/SecretsApi';\nexport * as VariablesRaw from './api/VariablesApi';\nexport * as ThemeRaw from './api/ThemeApi';\n\n// Ops Layer\nexport * as Types from './ops/OpsTypes';\nexport * as Admin from './ops/AdminOps';\nexport * as Authenticate from './ops/AuthenticateOps';\nexport * as CirclesOfTrust from './ops/CirclesOfTrustOps';\nexport * as ConnectionProfile from './ops/ConnectionProfileOps';\nexport * as EmailTemplate from './ops/EmailTemplateOps';\nexport * as Idm from './ops/IdmOps';\nexport * as Idp from './ops/IdpOps';\nexport * as Journey from './ops/JourneyOps';\nexport * as Log from './ops/LogOps';\nexport * as ManagedObject from './ops/ManagedObjectOps';\nexport * as OAuth2Client from './ops/OAuth2ClientOps';\nexport * as Organization from './ops/OrganizationOps';\nexport * as Node from './ops/NodeOps';\nexport * as Realm from './ops/RealmOps';\nexport * as Saml2 from './ops/Saml2Ops';\nexport * as Script from './ops/ScriptOps';\nexport * as Secrets from './ops/SecretsOps';\nexport * as Startup from './ops/StartupOps';\nexport * as Theme from './ops/ThemeOps';\nexport * as Variables from './ops/VariablesOps';\n// TODO: revisit if there are better ways\nexport * as Utils from './ops/utils/OpsUtils';\n// TODO: reconsider the aproach to pass in state from client\n// lib should be stateless, an aplication should own its state\nexport * as state from './storage/SessionStorage';\n// TODO: need to figure out if this is the right approach or if we should even\n// use a public oauth2/oidc library. might be ok for now since there is only\n// one place where the cli needs to execute an oauth flow.\nexport * as OAuth2OIDCApi from './api/OAuth2OIDCApi';\nexport * as LibVersion from './ops/utils/Version';\n"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEAA,eAAA,CAAMC,MAAN,G,CAEA"}
1
+ {"version":3,"file":"index.js","names":["Color","enable"],"sources":["index.ts"],"sourcesContent":["import Color from 'colors';\n\nColor.enable();\n\n// Api Layer\nexport * as EmailTemplateRaw from './api/EmailTemplateApi';\nexport * as NodeRaw from './api/NodeApi';\nexport * as SecretsRaw from './api/SecretsApi';\nexport * as StartupRaw from './api/StartupApi';\nexport * as ThemeRaw from './api/ThemeApi';\nexport * as TreeRaw from './api/TreeApi';\nexport * as TypesRaw from './api/ApiTypes';\nexport * as VariablesRaw from './api/VariablesApi';\n\n// Ops Layer\nexport * as Admin from './ops/AdminOps';\nexport * as Authenticate from './ops/AuthenticateOps';\nexport * as CirclesOfTrust from './ops/CirclesOfTrustOps';\nexport * as ConnectionProfile from './ops/ConnectionProfileOps';\nexport * as EmailTemplate from './ops/EmailTemplateOps';\nexport * as Idm from './ops/IdmOps';\nexport * as Idp from './ops/IdpOps';\nexport * as Journey from './ops/JourneyOps';\nexport * as Log from './ops/LogOps';\nexport * as ManagedObject from './ops/ManagedObjectOps';\nexport * as Node from './ops/NodeOps';\nexport * as OAuth2Client from './ops/OAuth2ClientOps';\nexport * as Organization from './ops/OrganizationOps';\nexport * as Realm from './ops/RealmOps';\nexport * as Saml2 from './ops/Saml2Ops';\nexport * as Script from './ops/ScriptOps';\nexport * as Secrets from './ops/SecretsOps';\nexport * as Startup from './ops/StartupOps';\nexport * as Theme from './ops/ThemeOps';\nexport * as Types from './ops/OpsTypes';\nexport * as Variables from './ops/VariablesOps';\n// TODO: revisit if there are better ways\nexport * as Utils from './ops/utils/OpsUtils';\nexport * as LibVersion from './ops/utils/Version';\nexport * as ExportImportUtils from './ops/utils/ExportImportUtils';\n// TODO: reconsider the aproach to pass in state from client\n// lib should be stateless, an aplication should own its state\nexport * as state from './storage/SessionStorage';\n// TODO: need to figure out if this is the right approach or if we should even\n// use a public oauth2/oidc library. might be ok for now since there is only\n// one place where the cli needs to execute an oauth flow.\nexport * as OAuth2OIDCApi from './api/OAuth2OIDCApi';\n"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEAA,eAAA,CAAMC,MAAN,G,CAEA"}
package/esm/index.mjs CHANGED
@@ -1,15 +1,15 @@
1
1
  import Color from 'colors';
2
2
  Color.enable(); // Api Layer
3
3
 
4
- export * as TypesRaw from './api/ApiTypes';
4
+ export * as EmailTemplateRaw from './api/EmailTemplateApi';
5
5
  export * as NodeRaw from './api/NodeApi';
6
- export * as TreeRaw from './api/TreeApi';
7
- export * as StartupRaw from './api/StartupApi';
8
6
  export * as SecretsRaw from './api/SecretsApi';
9
- export * as VariablesRaw from './api/VariablesApi';
10
- export * as ThemeRaw from './api/ThemeApi'; // Ops Layer
7
+ export * as StartupRaw from './api/StartupApi';
8
+ export * as ThemeRaw from './api/ThemeApi';
9
+ export * as TreeRaw from './api/TreeApi';
10
+ export * as TypesRaw from './api/ApiTypes';
11
+ export * as VariablesRaw from './api/VariablesApi'; // Ops Layer
11
12
 
12
- export * as Types from './ops/OpsTypes';
13
13
  export * as Admin from './ops/AdminOps';
14
14
  export * as Authenticate from './ops/AuthenticateOps';
15
15
  export * as CirclesOfTrust from './ops/CirclesOfTrustOps';
@@ -20,18 +20,21 @@ export * as Idp from './ops/IdpOps';
20
20
  export * as Journey from './ops/JourneyOps';
21
21
  export * as Log from './ops/LogOps';
22
22
  export * as ManagedObject from './ops/ManagedObjectOps';
23
+ export * as Node from './ops/NodeOps';
23
24
  export * as OAuth2Client from './ops/OAuth2ClientOps';
24
25
  export * as Organization from './ops/OrganizationOps';
25
- export * as Node from './ops/NodeOps';
26
26
  export * as Realm from './ops/RealmOps';
27
27
  export * as Saml2 from './ops/Saml2Ops';
28
28
  export * as Script from './ops/ScriptOps';
29
29
  export * as Secrets from './ops/SecretsOps';
30
30
  export * as Startup from './ops/StartupOps';
31
31
  export * as Theme from './ops/ThemeOps';
32
+ export * as Types from './ops/OpsTypes';
32
33
  export * as Variables from './ops/VariablesOps'; // TODO: revisit if there are better ways
33
34
 
34
- export * as Utils from './ops/utils/OpsUtils'; // TODO: reconsider the aproach to pass in state from client
35
+ export * as Utils from './ops/utils/OpsUtils';
36
+ export * as LibVersion from './ops/utils/Version';
37
+ export * as ExportImportUtils from './ops/utils/ExportImportUtils'; // TODO: reconsider the aproach to pass in state from client
35
38
  // lib should be stateless, an aplication should own its state
36
39
 
37
40
  export * as state from './storage/SessionStorage'; // TODO: need to figure out if this is the right approach or if we should even
@@ -39,5 +42,4 @@ export * as state from './storage/SessionStorage'; // TODO: need to figure out i
39
42
  // one place where the cli needs to execute an oauth flow.
40
43
 
41
44
  export * as OAuth2OIDCApi from './api/OAuth2OIDCApi';
42
- export * as LibVersion from './ops/utils/Version';
43
45
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rockcarver/frodo-lib",
3
- "version": "0.14.2-0",
3
+ "version": "0.15.0",
4
4
  "type": "commonjs",
5
5
  "main": "./cjs/index.js",
6
6
  "module": "./esm/index.mjs",
package/types/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- export * as TypesRaw from './api/ApiTypes';
1
+ export * as EmailTemplateRaw from './api/EmailTemplateApi';
2
2
  export * as NodeRaw from './api/NodeApi';
3
- export * as TreeRaw from './api/TreeApi';
4
- export * as StartupRaw from './api/StartupApi';
5
3
  export * as SecretsRaw from './api/SecretsApi';
6
- export * as VariablesRaw from './api/VariablesApi';
4
+ export * as StartupRaw from './api/StartupApi';
7
5
  export * as ThemeRaw from './api/ThemeApi';
8
- export * as Types from './ops/OpsTypes';
6
+ export * as TreeRaw from './api/TreeApi';
7
+ export * as TypesRaw from './api/ApiTypes';
8
+ export * as VariablesRaw from './api/VariablesApi';
9
9
  export * as Admin from './ops/AdminOps';
10
10
  export * as Authenticate from './ops/AuthenticateOps';
11
11
  export * as CirclesOfTrust from './ops/CirclesOfTrustOps';
@@ -16,17 +16,19 @@ export * as Idp from './ops/IdpOps';
16
16
  export * as Journey from './ops/JourneyOps';
17
17
  export * as Log from './ops/LogOps';
18
18
  export * as ManagedObject from './ops/ManagedObjectOps';
19
+ export * as Node from './ops/NodeOps';
19
20
  export * as OAuth2Client from './ops/OAuth2ClientOps';
20
21
  export * as Organization from './ops/OrganizationOps';
21
- export * as Node from './ops/NodeOps';
22
22
  export * as Realm from './ops/RealmOps';
23
23
  export * as Saml2 from './ops/Saml2Ops';
24
24
  export * as Script from './ops/ScriptOps';
25
25
  export * as Secrets from './ops/SecretsOps';
26
26
  export * as Startup from './ops/StartupOps';
27
27
  export * as Theme from './ops/ThemeOps';
28
+ export * as Types from './ops/OpsTypes';
28
29
  export * as Variables from './ops/VariablesOps';
29
30
  export * as Utils from './ops/utils/OpsUtils';
31
+ export * as LibVersion from './ops/utils/Version';
32
+ export * as ExportImportUtils from './ops/utils/ExportImportUtils';
30
33
  export * as state from './storage/SessionStorage';
31
34
  export * as OAuth2OIDCApi from './api/OAuth2OIDCApi';
32
- export * as LibVersion from './ops/utils/Version';
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,QAAQ,MAAM,gBAAgB,CAAC;AAC3C,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;AACzC,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;AACzC,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,QAAQ,MAAM,gBAAgB,CAAC;AAG3C,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,YAAY,MAAM,uBAAuB,CAAC;AACtD,OAAO,KAAK,cAAc,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,iBAAiB,MAAM,4BAA4B,CAAC;AAChE,OAAO,KAAK,aAAa,MAAM,wBAAwB,CAAC;AACxD,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,KAAK,aAAa,MAAM,wBAAwB,CAAC;AACxD,OAAO,KAAK,YAAY,MAAM,uBAAuB,CAAC;AACtD,OAAO,KAAK,YAAY,MAAM,uBAAuB,CAAC;AACtD,OAAO,KAAK,IAAI,MAAM,eAAe,CAAC;AACtC,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,iBAAiB,CAAC;AAC1C,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,SAAS,MAAM,oBAAoB,CAAC;AAEhD,OAAO,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAG9C,OAAO,KAAK,KAAK,MAAM,0BAA0B,CAAC;AAIlD,OAAO,KAAK,aAAa,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,UAAU,MAAM,qBAAqB,CAAC","file":"index.d.ts","sourcesContent":["import Color from 'colors';\n\nColor.enable();\n\n// Api Layer\nexport * as TypesRaw from './api/ApiTypes';\nexport * as NodeRaw from './api/NodeApi';\nexport * as TreeRaw from './api/TreeApi';\nexport * as StartupRaw from './api/StartupApi';\nexport * as SecretsRaw from './api/SecretsApi';\nexport * as VariablesRaw from './api/VariablesApi';\nexport * as ThemeRaw from './api/ThemeApi';\n\n// Ops Layer\nexport * as Types from './ops/OpsTypes';\nexport * as Admin from './ops/AdminOps';\nexport * as Authenticate from './ops/AuthenticateOps';\nexport * as CirclesOfTrust from './ops/CirclesOfTrustOps';\nexport * as ConnectionProfile from './ops/ConnectionProfileOps';\nexport * as EmailTemplate from './ops/EmailTemplateOps';\nexport * as Idm from './ops/IdmOps';\nexport * as Idp from './ops/IdpOps';\nexport * as Journey from './ops/JourneyOps';\nexport * as Log from './ops/LogOps';\nexport * as ManagedObject from './ops/ManagedObjectOps';\nexport * as OAuth2Client from './ops/OAuth2ClientOps';\nexport * as Organization from './ops/OrganizationOps';\nexport * as Node from './ops/NodeOps';\nexport * as Realm from './ops/RealmOps';\nexport * as Saml2 from './ops/Saml2Ops';\nexport * as Script from './ops/ScriptOps';\nexport * as Secrets from './ops/SecretsOps';\nexport * as Startup from './ops/StartupOps';\nexport * as Theme from './ops/ThemeOps';\nexport * as Variables from './ops/VariablesOps';\n// TODO: revisit if there are better ways\nexport * as Utils from './ops/utils/OpsUtils';\n// TODO: reconsider the aproach to pass in state from client\n// lib should be stateless, an aplication should own its state\nexport * as state from './storage/SessionStorage';\n// TODO: need to figure out if this is the right approach or if we should even\n// use a public oauth2/oidc library. might be ok for now since there is only\n// one place where the cli needs to execute an oauth flow.\nexport * as OAuth2OIDCApi from './api/OAuth2OIDCApi';\nexport * as LibVersion from './ops/utils/Version';\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,gBAAgB,MAAM,wBAAwB,CAAC;AAC3D,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;AACzC,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,UAAU,MAAM,kBAAkB,CAAC;AAC/C,OAAO,KAAK,QAAQ,MAAM,gBAAgB,CAAC;AAC3C,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;AACzC,OAAO,KAAK,QAAQ,MAAM,gBAAgB,CAAC;AAC3C,OAAO,KAAK,YAAY,MAAM,oBAAoB,CAAC;AAGnD,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,YAAY,MAAM,uBAAuB,CAAC;AACtD,OAAO,KAAK,cAAc,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,iBAAiB,MAAM,4BAA4B,CAAC;AAChE,OAAO,KAAK,aAAa,MAAM,wBAAwB,CAAC;AACxD,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,GAAG,MAAM,cAAc,CAAC;AACpC,OAAO,KAAK,aAAa,MAAM,wBAAwB,CAAC;AACxD,OAAO,KAAK,IAAI,MAAM,eAAe,CAAC;AACtC,OAAO,KAAK,YAAY,MAAM,uBAAuB,CAAC;AACtD,OAAO,KAAK,YAAY,MAAM,uBAAuB,CAAC;AACtD,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,iBAAiB,CAAC;AAC1C,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,KAAK,MAAM,gBAAgB,CAAC;AACxC,OAAO,KAAK,SAAS,MAAM,oBAAoB,CAAC;AAEhD,OAAO,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAC9C,OAAO,KAAK,UAAU,MAAM,qBAAqB,CAAC;AAClD,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AAGnE,OAAO,KAAK,KAAK,MAAM,0BAA0B,CAAC;AAIlD,OAAO,KAAK,aAAa,MAAM,qBAAqB,CAAC","file":"index.d.ts","sourcesContent":["import Color from 'colors';\n\nColor.enable();\n\n// Api Layer\nexport * as EmailTemplateRaw from './api/EmailTemplateApi';\nexport * as NodeRaw from './api/NodeApi';\nexport * as SecretsRaw from './api/SecretsApi';\nexport * as StartupRaw from './api/StartupApi';\nexport * as ThemeRaw from './api/ThemeApi';\nexport * as TreeRaw from './api/TreeApi';\nexport * as TypesRaw from './api/ApiTypes';\nexport * as VariablesRaw from './api/VariablesApi';\n\n// Ops Layer\nexport * as Admin from './ops/AdminOps';\nexport * as Authenticate from './ops/AuthenticateOps';\nexport * as CirclesOfTrust from './ops/CirclesOfTrustOps';\nexport * as ConnectionProfile from './ops/ConnectionProfileOps';\nexport * as EmailTemplate from './ops/EmailTemplateOps';\nexport * as Idm from './ops/IdmOps';\nexport * as Idp from './ops/IdpOps';\nexport * as Journey from './ops/JourneyOps';\nexport * as Log from './ops/LogOps';\nexport * as ManagedObject from './ops/ManagedObjectOps';\nexport * as Node from './ops/NodeOps';\nexport * as OAuth2Client from './ops/OAuth2ClientOps';\nexport * as Organization from './ops/OrganizationOps';\nexport * as Realm from './ops/RealmOps';\nexport * as Saml2 from './ops/Saml2Ops';\nexport * as Script from './ops/ScriptOps';\nexport * as Secrets from './ops/SecretsOps';\nexport * as Startup from './ops/StartupOps';\nexport * as Theme from './ops/ThemeOps';\nexport * as Types from './ops/OpsTypes';\nexport * as Variables from './ops/VariablesOps';\n// TODO: revisit if there are better ways\nexport * as Utils from './ops/utils/OpsUtils';\nexport * as LibVersion from './ops/utils/Version';\nexport * as ExportImportUtils from './ops/utils/ExportImportUtils';\n// TODO: reconsider the aproach to pass in state from client\n// lib should be stateless, an aplication should own its state\nexport * as state from './storage/SessionStorage';\n// TODO: need to figure out if this is the right approach or if we should even\n// use a public oauth2/oidc library. might be ok for now since there is only\n// one place where the cli needs to execute an oauth flow.\nexport * as OAuth2OIDCApi from './api/OAuth2OIDCApi';\n"]}