Skip to content

Commit 7ec8799

Browse files
authored
3.12.0 (#391)
1 parent 9713bbc commit 7ec8799

File tree

8 files changed

+11703
-29555
lines changed

8 files changed

+11703
-29555
lines changed

dist/node/admin.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -820,6 +820,9 @@ var StitchAdminClient = exports.StitchAdminClient = function (_StitchClient) {
820820
},
821821
data: function data() {
822822
return api._get(syncUrl + '/data');
823+
},
824+
patchSchemas: function patchSchemas(data) {
825+
return api._patch(syncUrl + '/schemas', { body: JSON.stringify(data) });
823826
}
824827
};
825828
}

dist/node/common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ var DEFAULT_STITCH_SERVER_URL = exports.DEFAULT_STITCH_SERVER_URL = 'https://sti
1414

1515
// VERSION is substituted with the package.json version number at build time
1616
var version = 'unknown';
17-
if (typeof "3.11.0" !== 'undefined') {
18-
version = "3.11.0";
17+
if (typeof "3.12.0" !== 'undefined') {
18+
version = "3.12.0";
1919
}
2020
var SDK_VERSION = exports.SDK_VERSION = version;
2121

0 commit comments

Comments
 (0)