@atlaskit/web-config-client 0.7.1 → 0.9.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 +18 -0
- package/dist/cjs/entry-points/main.js +12 -0
- package/dist/cjs/main.js +15 -16
- package/dist/cjs/types.js +28 -27
- package/dist/es2019/entry-points/main.js +1 -0
- package/dist/es2019/types.js +28 -27
- package/dist/esm/entry-points/main.js +1 -0
- package/dist/esm/main.js +15 -16
- package/dist/esm/types.js +28 -27
- package/dist/types/entry-points/main.d.ts +2 -0
- package/dist/types/types.d.ts +29 -26
- package/dist/types-ts4.5/entry-points/main.d.ts +2 -0
- package/dist/types-ts4.5/types.d.ts +29 -26
- package/main/package.json +17 -0
- package/package.json +5 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/web-config-client
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`adb4e7777d502`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/adb4e7777d502) -
|
|
8
|
+
Add new identifiers for customerAccountId and csmAccountId
|
|
9
|
+
|
|
10
|
+
## 0.8.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`ebab8f80bfc40`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ebab8f80bfc40) -
|
|
15
|
+
Autofix: add explicit package exports (barrel removal)
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 0.7.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/cjs/main.js
CHANGED
|
@@ -19,12 +19,12 @@ var ConfigClient = exports.ConfigClient = /*#__PURE__*/function () {
|
|
|
19
19
|
value: function () {
|
|
20
20
|
var _fetch = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(options) {
|
|
21
21
|
var _options$fetch;
|
|
22
|
-
var fetch, response, valuesPayload;
|
|
23
|
-
return _regenerator.default.wrap(function
|
|
22
|
+
var fetch, response, valuesPayload, _t, _t2, _t3;
|
|
23
|
+
return _regenerator.default.wrap(function (_context) {
|
|
24
24
|
while (1) switch (_context.prev = _context.next) {
|
|
25
25
|
case 0:
|
|
26
26
|
fetch = (_options$fetch = options.fetch) !== null && _options$fetch !== void 0 ? _options$fetch : globalThis.fetch;
|
|
27
|
-
_context.next =
|
|
27
|
+
_context.next = 1;
|
|
28
28
|
return fetch("".concat(options.ffsBaseUrl, "/api/v2/configurations"), {
|
|
29
29
|
method: 'POST',
|
|
30
30
|
body: JSON.stringify(options.context),
|
|
@@ -33,27 +33,26 @@ var ConfigClient = exports.ConfigClient = /*#__PURE__*/function () {
|
|
|
33
33
|
'x-api-key': options.ffsApiKey
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
|
-
case
|
|
36
|
+
case 1:
|
|
37
37
|
response = _context.sent;
|
|
38
38
|
if (response.ok) {
|
|
39
|
-
_context.next =
|
|
39
|
+
_context.next = 3;
|
|
40
40
|
break;
|
|
41
41
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
_context.next =
|
|
42
|
+
_t = Error;
|
|
43
|
+
_t2 = "Unexpected response ".concat(response.status, ": ");
|
|
44
|
+
_context.next = 2;
|
|
45
45
|
return response.text();
|
|
46
|
-
case
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
_context.next = 14;
|
|
46
|
+
case 2:
|
|
47
|
+
_t3 = _t2.concat.call(_t2, _context.sent);
|
|
48
|
+
throw new _t(_t3);
|
|
49
|
+
case 3:
|
|
50
|
+
_context.next = 4;
|
|
52
51
|
return response.text();
|
|
53
|
-
case
|
|
52
|
+
case 4:
|
|
54
53
|
valuesPayload = _context.sent;
|
|
55
54
|
return _context.abrupt("return", _configCommonLibs.ConfigCollection.fromValues(valuesPayload));
|
|
56
|
-
case
|
|
55
|
+
case 5:
|
|
57
56
|
case "end":
|
|
58
57
|
return _context.stop();
|
|
59
58
|
}
|
package/dist/cjs/types.js
CHANGED
|
@@ -4,31 +4,32 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.IdentifierEnum = void 0;
|
|
7
|
-
var IdentifierEnum = exports.IdentifierEnum =
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
7
|
+
var IdentifierEnum = exports.IdentifierEnum = {
|
|
8
|
+
ActivationId: 'activationId',
|
|
9
|
+
AlignUserId: 'alignUserId',
|
|
10
|
+
AnalyticsAnonymousId: 'analyticsAnonymousId',
|
|
11
|
+
AtlassianAccountId: 'atlassianAccountId',
|
|
12
|
+
AtlassianOrgId: 'atlassianOrgId',
|
|
13
|
+
BitbucketConnectAppId: 'bitbucketConnectAppId',
|
|
14
|
+
BitbucketRepositoryId: 'bitbucketRepositoryId',
|
|
15
|
+
BitbucketWorkspaceId: 'bitbucketWorkspaceId',
|
|
16
|
+
CSMAccountId: 'csmAccountId',
|
|
17
|
+
CustomerAccountId: 'customerAccountId',
|
|
18
|
+
GsacIssueId: 'gsacIssueId',
|
|
19
|
+
IntercomConversationId: 'intercomConversationId',
|
|
20
|
+
MarketplaceAnonymousId: 'marketplaceAnonymousId',
|
|
21
|
+
MsTeamsTenantId: 'msTeamsTenantId',
|
|
22
|
+
MarketplacePartnerId: 'marketplacePartnerId',
|
|
23
|
+
LoomAnonymousId: 'loomAnonymousId',
|
|
24
|
+
LoomUserId: 'loomUserId',
|
|
25
|
+
LoomWorkspaceId: 'loomWorkspaceId',
|
|
26
|
+
ProductIntegrationsVendorId: 'productIntegrationsVendorId',
|
|
27
|
+
RandomizationId: 'randomizationId',
|
|
28
|
+
TenantId: 'tenantId',
|
|
29
|
+
TransactionAccountId: 'transactionAccountId',
|
|
30
|
+
TrelloUserId: 'trelloUserId',
|
|
31
|
+
TrelloWorkspaceId: 'trelloWorkspaceId',
|
|
30
32
|
/** Statsig's stableID */
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}({});
|
|
33
|
+
StableId: 'stableID',
|
|
34
|
+
MiscellaneousId: 'miscellaneousId'
|
|
35
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ConfigClient } from '../main';
|
package/dist/es2019/types.js
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
export const IdentifierEnum = {
|
|
2
|
+
ActivationId: 'activationId',
|
|
3
|
+
AlignUserId: 'alignUserId',
|
|
4
|
+
AnalyticsAnonymousId: 'analyticsAnonymousId',
|
|
5
|
+
AtlassianAccountId: 'atlassianAccountId',
|
|
6
|
+
AtlassianOrgId: 'atlassianOrgId',
|
|
7
|
+
BitbucketConnectAppId: 'bitbucketConnectAppId',
|
|
8
|
+
BitbucketRepositoryId: 'bitbucketRepositoryId',
|
|
9
|
+
BitbucketWorkspaceId: 'bitbucketWorkspaceId',
|
|
10
|
+
CSMAccountId: 'csmAccountId',
|
|
11
|
+
CustomerAccountId: 'customerAccountId',
|
|
12
|
+
GsacIssueId: 'gsacIssueId',
|
|
13
|
+
IntercomConversationId: 'intercomConversationId',
|
|
14
|
+
MarketplaceAnonymousId: 'marketplaceAnonymousId',
|
|
15
|
+
MsTeamsTenantId: 'msTeamsTenantId',
|
|
16
|
+
MarketplacePartnerId: 'marketplacePartnerId',
|
|
17
|
+
LoomAnonymousId: 'loomAnonymousId',
|
|
18
|
+
LoomUserId: 'loomUserId',
|
|
19
|
+
LoomWorkspaceId: 'loomWorkspaceId',
|
|
20
|
+
ProductIntegrationsVendorId: 'productIntegrationsVendorId',
|
|
21
|
+
RandomizationId: 'randomizationId',
|
|
22
|
+
TenantId: 'tenantId',
|
|
23
|
+
TransactionAccountId: 'transactionAccountId',
|
|
24
|
+
TrelloUserId: 'trelloUserId',
|
|
25
|
+
TrelloWorkspaceId: 'trelloWorkspaceId',
|
|
24
26
|
/** Statsig's stableID */
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}({});
|
|
27
|
+
StableId: 'stableID',
|
|
28
|
+
MiscellaneousId: 'miscellaneousId'
|
|
29
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ConfigClient } from '../main';
|
package/dist/esm/main.js
CHANGED
|
@@ -12,12 +12,12 @@ export var ConfigClient = /*#__PURE__*/function () {
|
|
|
12
12
|
value: function () {
|
|
13
13
|
var _fetch = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(options) {
|
|
14
14
|
var _options$fetch;
|
|
15
|
-
var fetch, response, valuesPayload;
|
|
16
|
-
return _regeneratorRuntime.wrap(function
|
|
15
|
+
var fetch, response, valuesPayload, _t, _t2, _t3;
|
|
16
|
+
return _regeneratorRuntime.wrap(function (_context) {
|
|
17
17
|
while (1) switch (_context.prev = _context.next) {
|
|
18
18
|
case 0:
|
|
19
19
|
fetch = (_options$fetch = options.fetch) !== null && _options$fetch !== void 0 ? _options$fetch : globalThis.fetch;
|
|
20
|
-
_context.next =
|
|
20
|
+
_context.next = 1;
|
|
21
21
|
return fetch("".concat(options.ffsBaseUrl, "/api/v2/configurations"), {
|
|
22
22
|
method: 'POST',
|
|
23
23
|
body: JSON.stringify(options.context),
|
|
@@ -26,27 +26,26 @@ export var ConfigClient = /*#__PURE__*/function () {
|
|
|
26
26
|
'x-api-key': options.ffsApiKey
|
|
27
27
|
}
|
|
28
28
|
});
|
|
29
|
-
case
|
|
29
|
+
case 1:
|
|
30
30
|
response = _context.sent;
|
|
31
31
|
if (response.ok) {
|
|
32
|
-
_context.next =
|
|
32
|
+
_context.next = 3;
|
|
33
33
|
break;
|
|
34
34
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
_context.next =
|
|
35
|
+
_t = Error;
|
|
36
|
+
_t2 = "Unexpected response ".concat(response.status, ": ");
|
|
37
|
+
_context.next = 2;
|
|
38
38
|
return response.text();
|
|
39
|
-
case
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
_context.next = 14;
|
|
39
|
+
case 2:
|
|
40
|
+
_t3 = _t2.concat.call(_t2, _context.sent);
|
|
41
|
+
throw new _t(_t3);
|
|
42
|
+
case 3:
|
|
43
|
+
_context.next = 4;
|
|
45
44
|
return response.text();
|
|
46
|
-
case
|
|
45
|
+
case 4:
|
|
47
46
|
valuesPayload = _context.sent;
|
|
48
47
|
return _context.abrupt("return", ConfigCollection.fromValues(valuesPayload));
|
|
49
|
-
case
|
|
48
|
+
case 5:
|
|
50
49
|
case "end":
|
|
51
50
|
return _context.stop();
|
|
52
51
|
}
|
package/dist/esm/types.js
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
|
-
export var IdentifierEnum =
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
export var IdentifierEnum = {
|
|
2
|
+
ActivationId: 'activationId',
|
|
3
|
+
AlignUserId: 'alignUserId',
|
|
4
|
+
AnalyticsAnonymousId: 'analyticsAnonymousId',
|
|
5
|
+
AtlassianAccountId: 'atlassianAccountId',
|
|
6
|
+
AtlassianOrgId: 'atlassianOrgId',
|
|
7
|
+
BitbucketConnectAppId: 'bitbucketConnectAppId',
|
|
8
|
+
BitbucketRepositoryId: 'bitbucketRepositoryId',
|
|
9
|
+
BitbucketWorkspaceId: 'bitbucketWorkspaceId',
|
|
10
|
+
CSMAccountId: 'csmAccountId',
|
|
11
|
+
CustomerAccountId: 'customerAccountId',
|
|
12
|
+
GsacIssueId: 'gsacIssueId',
|
|
13
|
+
IntercomConversationId: 'intercomConversationId',
|
|
14
|
+
MarketplaceAnonymousId: 'marketplaceAnonymousId',
|
|
15
|
+
MsTeamsTenantId: 'msTeamsTenantId',
|
|
16
|
+
MarketplacePartnerId: 'marketplacePartnerId',
|
|
17
|
+
LoomAnonymousId: 'loomAnonymousId',
|
|
18
|
+
LoomUserId: 'loomUserId',
|
|
19
|
+
LoomWorkspaceId: 'loomWorkspaceId',
|
|
20
|
+
ProductIntegrationsVendorId: 'productIntegrationsVendorId',
|
|
21
|
+
RandomizationId: 'randomizationId',
|
|
22
|
+
TenantId: 'tenantId',
|
|
23
|
+
TransactionAccountId: 'transactionAccountId',
|
|
24
|
+
TrelloUserId: 'trelloUserId',
|
|
25
|
+
TrelloWorkspaceId: 'trelloWorkspaceId',
|
|
24
26
|
/** Statsig's stableID */
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}({});
|
|
27
|
+
StableId: 'stableID',
|
|
28
|
+
MiscellaneousId: 'miscellaneousId'
|
|
29
|
+
};
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,27 +1,30 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
ActivationId
|
|
3
|
-
AlignUserId
|
|
4
|
-
AnalyticsAnonymousId
|
|
5
|
-
AtlassianAccountId
|
|
6
|
-
AtlassianOrgId
|
|
7
|
-
BitbucketConnectAppId
|
|
8
|
-
BitbucketRepositoryId
|
|
9
|
-
BitbucketWorkspaceId
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
export declare const IdentifierEnum: {
|
|
2
|
+
readonly ActivationId: "activationId";
|
|
3
|
+
readonly AlignUserId: "alignUserId";
|
|
4
|
+
readonly AnalyticsAnonymousId: "analyticsAnonymousId";
|
|
5
|
+
readonly AtlassianAccountId: "atlassianAccountId";
|
|
6
|
+
readonly AtlassianOrgId: "atlassianOrgId";
|
|
7
|
+
readonly BitbucketConnectAppId: "bitbucketConnectAppId";
|
|
8
|
+
readonly BitbucketRepositoryId: "bitbucketRepositoryId";
|
|
9
|
+
readonly BitbucketWorkspaceId: "bitbucketWorkspaceId";
|
|
10
|
+
readonly CSMAccountId: "csmAccountId";
|
|
11
|
+
readonly CustomerAccountId: "customerAccountId";
|
|
12
|
+
readonly GsacIssueId: "gsacIssueId";
|
|
13
|
+
readonly IntercomConversationId: "intercomConversationId";
|
|
14
|
+
readonly MarketplaceAnonymousId: "marketplaceAnonymousId";
|
|
15
|
+
readonly MsTeamsTenantId: "msTeamsTenantId";
|
|
16
|
+
readonly MarketplacePartnerId: "marketplacePartnerId";
|
|
17
|
+
readonly LoomAnonymousId: "loomAnonymousId";
|
|
18
|
+
readonly LoomUserId: "loomUserId";
|
|
19
|
+
readonly LoomWorkspaceId: "loomWorkspaceId";
|
|
20
|
+
readonly ProductIntegrationsVendorId: "productIntegrationsVendorId";
|
|
21
|
+
readonly RandomizationId: "randomizationId";
|
|
22
|
+
readonly TenantId: "tenantId";
|
|
23
|
+
readonly TransactionAccountId: "transactionAccountId";
|
|
24
|
+
readonly TrelloUserId: "trelloUserId";
|
|
25
|
+
readonly TrelloWorkspaceId: "trelloWorkspaceId";
|
|
24
26
|
/** Statsig's stableID */
|
|
25
|
-
StableId
|
|
26
|
-
MiscellaneousId
|
|
27
|
-
}
|
|
27
|
+
readonly StableId: "stableID";
|
|
28
|
+
readonly MiscellaneousId: "miscellaneousId";
|
|
29
|
+
};
|
|
30
|
+
export type IdentifierEnum = (typeof IdentifierEnum)[keyof typeof IdentifierEnum];
|
|
@@ -1,27 +1,30 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
ActivationId
|
|
3
|
-
AlignUserId
|
|
4
|
-
AnalyticsAnonymousId
|
|
5
|
-
AtlassianAccountId
|
|
6
|
-
AtlassianOrgId
|
|
7
|
-
BitbucketConnectAppId
|
|
8
|
-
BitbucketRepositoryId
|
|
9
|
-
BitbucketWorkspaceId
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
export declare const IdentifierEnum: {
|
|
2
|
+
readonly ActivationId: "activationId";
|
|
3
|
+
readonly AlignUserId: "alignUserId";
|
|
4
|
+
readonly AnalyticsAnonymousId: "analyticsAnonymousId";
|
|
5
|
+
readonly AtlassianAccountId: "atlassianAccountId";
|
|
6
|
+
readonly AtlassianOrgId: "atlassianOrgId";
|
|
7
|
+
readonly BitbucketConnectAppId: "bitbucketConnectAppId";
|
|
8
|
+
readonly BitbucketRepositoryId: "bitbucketRepositoryId";
|
|
9
|
+
readonly BitbucketWorkspaceId: "bitbucketWorkspaceId";
|
|
10
|
+
readonly CSMAccountId: "csmAccountId";
|
|
11
|
+
readonly CustomerAccountId: "customerAccountId";
|
|
12
|
+
readonly GsacIssueId: "gsacIssueId";
|
|
13
|
+
readonly IntercomConversationId: "intercomConversationId";
|
|
14
|
+
readonly MarketplaceAnonymousId: "marketplaceAnonymousId";
|
|
15
|
+
readonly MsTeamsTenantId: "msTeamsTenantId";
|
|
16
|
+
readonly MarketplacePartnerId: "marketplacePartnerId";
|
|
17
|
+
readonly LoomAnonymousId: "loomAnonymousId";
|
|
18
|
+
readonly LoomUserId: "loomUserId";
|
|
19
|
+
readonly LoomWorkspaceId: "loomWorkspaceId";
|
|
20
|
+
readonly ProductIntegrationsVendorId: "productIntegrationsVendorId";
|
|
21
|
+
readonly RandomizationId: "randomizationId";
|
|
22
|
+
readonly TenantId: "tenantId";
|
|
23
|
+
readonly TransactionAccountId: "transactionAccountId";
|
|
24
|
+
readonly TrelloUserId: "trelloUserId";
|
|
25
|
+
readonly TrelloWorkspaceId: "trelloWorkspaceId";
|
|
24
26
|
/** Statsig's stableID */
|
|
25
|
-
StableId
|
|
26
|
-
MiscellaneousId
|
|
27
|
-
}
|
|
27
|
+
readonly StableId: "stableID";
|
|
28
|
+
readonly MiscellaneousId: "miscellaneousId";
|
|
29
|
+
};
|
|
30
|
+
export type IdentifierEnum = (typeof IdentifierEnum)[keyof typeof IdentifierEnum];
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/web-config-client/main",
|
|
3
|
+
"main": "../dist/cjs/entry-points/main.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/main.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/main.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/main.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/main.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/web-config-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "JavaScript Frontend Web Client for Dynamic Configuration.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"category": "Components"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"repository": "https://
|
|
17
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-monorepo",
|
|
18
18
|
"main": "dist/cjs/index.js",
|
|
19
19
|
"module": "dist/esm/index.js",
|
|
20
20
|
"module:es2019": "dist/es2019/index.js",
|
|
@@ -31,11 +31,8 @@
|
|
|
31
31
|
"*.compiled.css"
|
|
32
32
|
],
|
|
33
33
|
"atlaskit:src": "src/index.ts",
|
|
34
|
-
"af:exports": {
|
|
35
|
-
".": "./src/index.ts"
|
|
36
|
-
},
|
|
37
34
|
"dependencies": {
|
|
38
|
-
"@atlaskit/config-common-libs": "^0.
|
|
35
|
+
"@atlaskit/config-common-libs": "^0.3.0",
|
|
39
36
|
"@babel/runtime": "^7.0.0"
|
|
40
37
|
},
|
|
41
38
|
"peerDependencies": {
|
|
@@ -45,10 +42,9 @@
|
|
|
45
42
|
"@af/integration-testing": "workspace:^",
|
|
46
43
|
"@af/visual-regression": "workspace:^",
|
|
47
44
|
"@atlaskit/ssr": "workspace:^",
|
|
48
|
-
"@
|
|
49
|
-
"
|
|
45
|
+
"@testing-library/react": "^16.3.0",
|
|
46
|
+
"react": "^18.2.0",
|
|
50
47
|
"react-dom": "^18.2.0",
|
|
51
|
-
"typescript": "~5.4.2",
|
|
52
48
|
"wait-for-expect": "^1.2.0"
|
|
53
49
|
},
|
|
54
50
|
"techstack": {
|