@mojaloop/api-snippets 17.9.0 → 17.10.0-snapshot.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.
@@ -28,4 +28,5 @@
28
28
  --------------
29
29
  ******/
30
30
  import * as V2_0_0 from './v2_0_0';
31
- export { V2_0_0 };
31
+ import * as V2_1_0 from './v2_1_0';
32
+ export { V2_0_0, V2_1_0 };
@@ -29,8 +29,10 @@
29
29
  ******/
30
30
  'use strict';
31
31
  Object.defineProperty(exports, "__esModule", { value: true });
32
- exports.V2_0_0 = void 0;
32
+ exports.V2_1_0 = exports.V2_0_0 = void 0;
33
33
  const tslib_1 = require("tslib");
34
34
  const V2_0_0 = tslib_1.__importStar(require("./v2_0_0"));
35
35
  exports.V2_0_0 = V2_0_0;
36
+ const V2_1_0 = tslib_1.__importStar(require("./v2_1_0"));
37
+ exports.V2_1_0 = V2_1_0;
36
38
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/sdk-scheme-adapter/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA4BQ;AAER,YAAY,CAAA;;;;AAEZ,yDAAkC;AACzB,wBAAM"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/sdk-scheme-adapter/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA4BQ;AAER,YAAY,CAAA;;;;AAEZ,yDAAkC;AAEzB,wBAAM;AADf,yDAAkC;AACjB,wBAAM"}
@@ -0,0 +1,3 @@
1
+ export * as openapi from './openapi';
2
+ export * from './schemas';
3
+ export * from './types';
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /* eslint-disable @typescript-eslint/no-namespace */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.openapi = void 0;
5
+ const tslib_1 = require("tslib");
6
+ exports.openapi = tslib_1.__importStar(require("./openapi"));
7
+ tslib_1.__exportStar(require("./schemas"), exports);
8
+ tslib_1.__exportStar(require("./types"), exports);
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_1_0/backend/index.ts"],"names":[],"mappings":";AAAA,oDAAoD;;;;AAEpD,6DAAoC;AACpC,oDAAyB;AACzB,kDAAuB"}
@@ -0,0 +1,32 @@
1
+ /*****
2
+ License
3
+ --------------
4
+ Copyright © 2020-2025 Mojaloop Foundation
5
+ The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
10
+
11
+ Contributors
12
+ --------------
13
+ This is the official list of the Mojaloop project contributors for this file.
14
+ Names of the original copyright holders (individuals or organizations)
15
+ should be listed with a '*' in the first column. People who have
16
+ contributed from an organization can be listed under the organization
17
+ that actually holds the copyright for their contributions (see the
18
+ Mojaloop Foundation for an example). Those individuals should have
19
+ their names indented and be marked with a '-'. Email address can be added
20
+ optionally within square brackets <email>.
21
+
22
+ * Mojaloop Foundation
23
+ - Name Surname <name.surname@mojaloop.io>
24
+
25
+ * Infitx
26
+ - Steven Oderayi <steven.oderayi@infitx.com>
27
+
28
+ --------------
29
+ ******/
30
+ import * as Backend from './backend';
31
+ import * as Outbound from './outbound';
32
+ export { Backend, Outbound };
@@ -0,0 +1,38 @@
1
+ /*****
2
+ License
3
+ --------------
4
+ Copyright © 2020-2025 Mojaloop Foundation
5
+ The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
10
+
11
+ Contributors
12
+ --------------
13
+ This is the official list of the Mojaloop project contributors for this file.
14
+ Names of the original copyright holders (individuals or organizations)
15
+ should be listed with a '*' in the first column. People who have
16
+ contributed from an organization can be listed under the organization
17
+ that actually holds the copyright for their contributions (see the
18
+ Mojaloop Foundation for an example). Those individuals should have
19
+ their names indented and be marked with a '-'. Email address can be added
20
+ optionally within square brackets <email>.
21
+
22
+ * Mojaloop Foundation
23
+ - Name Surname <name.surname@mojaloop.io>
24
+
25
+ * Infitx
26
+ - Steven Oderayi <steven.oderayi@infitx.com>
27
+
28
+ --------------
29
+ ******/
30
+ 'use strict';
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ exports.Outbound = exports.Backend = void 0;
33
+ const tslib_1 = require("tslib");
34
+ const Backend = tslib_1.__importStar(require("./backend"));
35
+ exports.Backend = Backend;
36
+ const Outbound = tslib_1.__importStar(require("./outbound"));
37
+ exports.Outbound = Outbound;
38
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/sdk-scheme-adapter/v2_1_0/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA4BQ;AAER,YAAY,CAAA;;;;AAEZ,2DAAoC;AAE3B,0BAAO;AADhB,6DAAsC;AACpB,4BAAQ"}
@@ -0,0 +1,3 @@
1
+ export * as openapi from './openapi';
2
+ export * from './schemas';
3
+ export * from './types';
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /* eslint-disable @typescript-eslint/no-namespace */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.openapi = void 0;
5
+ const tslib_1 = require("tslib");
6
+ exports.openapi = tslib_1.__importStar(require("./openapi"));
7
+ tslib_1.__exportStar(require("./schemas"), exports);
8
+ tslib_1.__exportStar(require("./types"), exports);
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_1_0/outbound/index.ts"],"names":[],"mappings":";AAAA,oDAAoD;;;;AAEpD,6DAAoC;AACpC,oDAAyB;AACzB,kDAAuB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/api-snippets",
3
- "version": "17.9.0",
3
+ "version": "17.10.0-snapshot.0",
4
4
  "description": "Mojaloop API specification reusable snippets",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",