@forge/teamwork-graph 2.5.2-next.0-experimental-98def98 → 3.0.0-next.2
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/out/__test__/entity-operations.test.js +47 -117
- package/out/types/objects/branch.d.ts +4 -1
- package/out/types/objects/branch.d.ts.map +1 -1
- package/out/types/objects/calendar-event.d.ts +3 -4
- package/out/types/objects/calendar-event.d.ts.map +1 -1
- package/out/types/objects/comment.d.ts +2 -3
- package/out/types/objects/comment.d.ts.map +1 -1
- package/out/types/objects/commit.d.ts +5 -3
- package/out/types/objects/commit.d.ts.map +1 -1
- package/out/types/objects/common.d.ts +11 -10
- package/out/types/objects/common.d.ts.map +1 -1
- package/out/types/objects/conversation.d.ts +2 -12
- package/out/types/objects/conversation.d.ts.map +1 -1
- package/out/types/objects/customer-org.d.ts +3 -13
- package/out/types/objects/customer-org.d.ts.map +1 -1
- package/out/types/objects/deal.d.ts +3 -13
- package/out/types/objects/deal.d.ts.map +1 -1
- package/out/types/objects/deployment.d.ts +1 -11
- package/out/types/objects/deployment.d.ts.map +1 -1
- package/out/types/objects/document.d.ts +2 -3
- package/out/types/objects/document.d.ts.map +1 -1
- package/out/types/objects/project.d.ts +1 -11
- package/out/types/objects/project.d.ts.map +1 -1
- package/out/types/objects/pull-request.d.ts +2 -12
- package/out/types/objects/pull-request.d.ts.map +1 -1
- package/out/types/objects/remote-link.d.ts +1 -11
- package/out/types/objects/remote-link.d.ts.map +1 -1
- package/out/types/objects/test-execution.d.ts +2 -1
- package/out/types/objects/test-execution.d.ts.map +1 -1
- package/out/types/objects/test-run.d.ts +1 -11
- package/out/types/objects/test-run.d.ts.map +1 -1
- package/out/types/objects/video.d.ts +1 -11
- package/out/types/objects/video.d.ts.map +1 -1
- package/out/types/objects/work-item.d.ts +1 -11
- package/out/types/objects/work-item.d.ts.map +1 -1
- package/out/types/objects/worker.d.ts +1 -11
- package/out/types/objects/worker.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -653,6 +653,12 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
653
653
|
url: 'https://github.com/org/repo/tree/feature-branch',
|
|
654
654
|
createdAt: '2024-07-09T14:27:37.000Z',
|
|
655
655
|
lastUpdatedAt: '2024-07-09T14:27:37.000Z',
|
|
656
|
+
containerKey: {
|
|
657
|
+
type: 'atlassian:repository',
|
|
658
|
+
value: {
|
|
659
|
+
repositoryId: 'repo-1'
|
|
660
|
+
}
|
|
661
|
+
},
|
|
656
662
|
permissions: [
|
|
657
663
|
{
|
|
658
664
|
accessControls: [
|
|
@@ -699,6 +705,12 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
699
705
|
url: 'https://github.com/org/repo/commit/abc123',
|
|
700
706
|
createdAt: '2024-07-09T14:27:37.000Z',
|
|
701
707
|
lastUpdatedAt: '2024-07-09T14:27:37.000Z',
|
|
708
|
+
containerKey: {
|
|
709
|
+
type: 'atlassian:repository',
|
|
710
|
+
value: {
|
|
711
|
+
repositoryId: 'repo-1'
|
|
712
|
+
}
|
|
713
|
+
},
|
|
702
714
|
permissions: [
|
|
703
715
|
{
|
|
704
716
|
accessControls: [
|
|
@@ -848,12 +860,20 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
848
860
|
eventType: 'meeting',
|
|
849
861
|
attendees: [
|
|
850
862
|
{
|
|
851
|
-
user:
|
|
863
|
+
user: {
|
|
864
|
+
accountId: 'user-123',
|
|
865
|
+
externalId: 'user-123',
|
|
866
|
+
email: 'john.developer@example.com'
|
|
867
|
+
},
|
|
852
868
|
isOptional: false,
|
|
853
869
|
rsvpStatus: 'accepted'
|
|
854
870
|
},
|
|
855
871
|
{
|
|
856
|
-
user:
|
|
872
|
+
user: {
|
|
873
|
+
accountId: 'user-456',
|
|
874
|
+
externalId: 'user-456',
|
|
875
|
+
email: 'jane.developer@example.com'
|
|
876
|
+
},
|
|
857
877
|
isOptional: true,
|
|
858
878
|
rsvpStatus: 'tentatively_accepted'
|
|
859
879
|
}
|
|
@@ -912,9 +932,8 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
912
932
|
url: 'https://example.com/comments/comment-1',
|
|
913
933
|
createdAt: '2024-07-09T14:27:37.000Z',
|
|
914
934
|
createdBy: {
|
|
915
|
-
id: 'ari:cloud:identity::user/user-789',
|
|
916
935
|
externalId: 'user-789',
|
|
917
|
-
|
|
936
|
+
email: 'jane.developer@example.com'
|
|
918
937
|
},
|
|
919
938
|
lastUpdatedAt: '2024-07-09T14:27:37.000Z',
|
|
920
939
|
permissions: [
|
|
@@ -994,23 +1013,17 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
994
1013
|
members: [
|
|
995
1014
|
{
|
|
996
1015
|
accountId: 'user-123',
|
|
997
|
-
ari: 'ari:cloud:identity::user/user-123',
|
|
998
1016
|
externalId: 'user-123',
|
|
999
|
-
name: 'John Developer',
|
|
1000
1017
|
email: 'john.developer@example.com'
|
|
1001
1018
|
},
|
|
1002
1019
|
{
|
|
1003
1020
|
accountId: 'user-456',
|
|
1004
|
-
ari: 'ari:cloud:identity::user/user-456',
|
|
1005
1021
|
externalId: 'user-456',
|
|
1006
|
-
name: 'Jane Developer',
|
|
1007
1022
|
email: 'jane.developer@example.com'
|
|
1008
1023
|
},
|
|
1009
1024
|
{
|
|
1010
1025
|
accountId: 'user-789',
|
|
1011
|
-
ari: 'ari:cloud:identity::user/user-789',
|
|
1012
1026
|
externalId: 'user-789',
|
|
1013
|
-
name: 'Bob Manager',
|
|
1014
1027
|
email: 'bob.manager@example.com'
|
|
1015
1028
|
}
|
|
1016
1029
|
],
|
|
@@ -1067,17 +1080,12 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1067
1080
|
contacts: [
|
|
1068
1081
|
{
|
|
1069
1082
|
accountId: 'contact-123',
|
|
1070
|
-
ari: 'ari:cloud:identity::user/contact-123',
|
|
1071
1083
|
externalId: 'contact-123',
|
|
1072
|
-
|
|
1073
|
-
email: 'alice.johnson@acme.com',
|
|
1074
|
-
avatar: 'https://avatar.example.com/alice.jpg'
|
|
1084
|
+
email: 'alice.johnson@acme.com'
|
|
1075
1085
|
},
|
|
1076
1086
|
{
|
|
1077
1087
|
accountId: 'contact-456',
|
|
1078
|
-
ari: 'ari:cloud:identity::user/contact-456',
|
|
1079
1088
|
externalId: 'contact-456',
|
|
1080
|
-
name: 'Bob Smith',
|
|
1081
1089
|
email: 'bob.smith@acme.com'
|
|
1082
1090
|
}
|
|
1083
1091
|
],
|
|
@@ -1094,11 +1102,8 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1094
1102
|
contributors: [
|
|
1095
1103
|
{
|
|
1096
1104
|
accountId: 'contributor-789',
|
|
1097
|
-
ari: 'ari:cloud:identity::user/contributor-789',
|
|
1098
1105
|
externalId: 'contributor-789',
|
|
1099
|
-
|
|
1100
|
-
email: 'charlie.brown@ourcompany.com',
|
|
1101
|
-
userName: 'cbrown'
|
|
1106
|
+
email: 'charlie.brown@ourcompany.com'
|
|
1102
1107
|
}
|
|
1103
1108
|
],
|
|
1104
1109
|
country: 'United States',
|
|
@@ -1153,11 +1158,8 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1153
1158
|
'atlassian:deal': {
|
|
1154
1159
|
contact: {
|
|
1155
1160
|
accountId: 'contact-deal-123',
|
|
1156
|
-
ari: 'ari:cloud:identity::user/contact-deal-123',
|
|
1157
1161
|
externalId: 'contact-deal-123',
|
|
1158
|
-
|
|
1159
|
-
email: 'sarah.wilson@techcorp.com',
|
|
1160
|
-
avatar: 'https://avatar.example.com/sarah.jpg'
|
|
1162
|
+
email: 'sarah.wilson@techcorp.com'
|
|
1161
1163
|
},
|
|
1162
1164
|
stage: 'Proposal Sent',
|
|
1163
1165
|
status: 'Active',
|
|
@@ -1165,19 +1167,13 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1165
1167
|
contributors: [
|
|
1166
1168
|
{
|
|
1167
1169
|
accountId: 'contributor-789',
|
|
1168
|
-
ari: 'ari:cloud:identity::user/contributor-789',
|
|
1169
1170
|
externalId: 'contributor-789',
|
|
1170
|
-
|
|
1171
|
-
email: 'alex.rodriguez@ourcompany.com',
|
|
1172
|
-
userName: 'arodriguez'
|
|
1171
|
+
email: 'alex.rodriguez@ourcompany.com'
|
|
1173
1172
|
},
|
|
1174
1173
|
{
|
|
1175
1174
|
accountId: 'contributor-456',
|
|
1176
|
-
ari: 'ari:cloud:identity::user/contributor-456',
|
|
1177
1175
|
externalId: 'contributor-456',
|
|
1178
|
-
|
|
1179
|
-
email: 'jessica.chen@ourcompany.com',
|
|
1180
|
-
userName: 'jchen'
|
|
1176
|
+
email: 'jessica.chen@ourcompany.com'
|
|
1181
1177
|
}
|
|
1182
1178
|
],
|
|
1183
1179
|
lastActivity: {
|
|
@@ -1261,12 +1257,8 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1261
1257
|
],
|
|
1262
1258
|
triggeredBy: {
|
|
1263
1259
|
accountId: 'devops-user-123',
|
|
1264
|
-
ari: 'ari:cloud:identity::user/devops-user-123',
|
|
1265
1260
|
externalId: 'devops-user-123',
|
|
1266
|
-
|
|
1267
|
-
email: 'devops@example.com',
|
|
1268
|
-
userName: 'devops-team',
|
|
1269
|
-
avatar: 'https://avatar.example.com/devops.jpg'
|
|
1261
|
+
email: 'devops@example.com'
|
|
1270
1262
|
},
|
|
1271
1263
|
region: 'us-east-1'
|
|
1272
1264
|
}
|
|
@@ -1422,14 +1414,7 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1422
1414
|
createdAt: '2024-07-09T14:27:37.000Z',
|
|
1423
1415
|
createdBy: {
|
|
1424
1416
|
externalId: 'creator-user-123',
|
|
1425
|
-
|
|
1426
|
-
displayName: 'John Doe',
|
|
1427
|
-
emails: [
|
|
1428
|
-
{
|
|
1429
|
-
value: 'john.doe@example.com',
|
|
1430
|
-
primary: true
|
|
1431
|
-
}
|
|
1432
|
-
]
|
|
1417
|
+
email: 'john.doe@example.com'
|
|
1433
1418
|
},
|
|
1434
1419
|
lastUpdatedAt: '2024-07-09T14:27:37.000Z',
|
|
1435
1420
|
permissions: [
|
|
@@ -1451,12 +1436,8 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1451
1436
|
priority: 'High',
|
|
1452
1437
|
assignee: {
|
|
1453
1438
|
accountId: 'project-manager-123',
|
|
1454
|
-
ari: 'ari:cloud:identity::user/project-manager-123',
|
|
1455
1439
|
externalId: 'project-manager-123',
|
|
1456
|
-
|
|
1457
|
-
email: 'sarah.johnson@example.com',
|
|
1458
|
-
userName: 'sjohnson',
|
|
1459
|
-
avatar: 'https://avatar.example.com/sarah.jpg'
|
|
1440
|
+
email: 'sarah.johnson@example.com'
|
|
1460
1441
|
},
|
|
1461
1442
|
status: 'In Progress',
|
|
1462
1443
|
attachments: [
|
|
@@ -1540,11 +1521,7 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1540
1521
|
author: {
|
|
1541
1522
|
accountId: 'author-dev-456',
|
|
1542
1523
|
externalId: 'author-dev-456',
|
|
1543
|
-
|
|
1544
|
-
userName: 'jsmith',
|
|
1545
|
-
email: 'john.smith@example.com',
|
|
1546
|
-
avatar: 'https://avatar.example.com/john.jpg',
|
|
1547
|
-
url: 'https://github.com/jsmith'
|
|
1524
|
+
email: 'john.smith@example.com'
|
|
1548
1525
|
},
|
|
1549
1526
|
commentCount: 8,
|
|
1550
1527
|
sourceBranch: 'feature/oauth2-auth',
|
|
@@ -1554,23 +1531,13 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1554
1531
|
reviewers: [
|
|
1555
1532
|
{
|
|
1556
1533
|
accountId: 'reviewer-senior-789',
|
|
1557
|
-
|
|
1558
|
-
email: 'alice.johnson@example.com'
|
|
1559
|
-
approvalStatus: 'approved',
|
|
1560
|
-
name: 'Alice Johnson',
|
|
1561
|
-
avatar: 'https://avatar.example.com/alice.jpg',
|
|
1562
|
-
url: 'https://github.com/alicejohnson',
|
|
1563
|
-
ari: 'ari:cloud:identity::user/reviewer-senior-789'
|
|
1534
|
+
externalId: 'reviewer-senior-789',
|
|
1535
|
+
email: 'alice.johnson@example.com'
|
|
1564
1536
|
},
|
|
1565
1537
|
{
|
|
1566
1538
|
accountId: 'reviewer-lead-321',
|
|
1567
|
-
|
|
1568
|
-
email: 'bob.wilson@example.com'
|
|
1569
|
-
approvalStatus: 'unapproved',
|
|
1570
|
-
name: 'Bob Wilson',
|
|
1571
|
-
avatar: 'https://avatar.example.com/bob.jpg',
|
|
1572
|
-
url: 'https://github.com/bobwilson',
|
|
1573
|
-
ari: 'ari:cloud:identity::user/reviewer-lead-321'
|
|
1539
|
+
externalId: 'reviewer-lead-321',
|
|
1540
|
+
email: 'bob.wilson@example.com'
|
|
1574
1541
|
}
|
|
1575
1542
|
],
|
|
1576
1543
|
taskCount: 3
|
|
@@ -1635,21 +1602,13 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1635
1602
|
author: {
|
|
1636
1603
|
accountId: 'author-dev-789',
|
|
1637
1604
|
externalId: 'author-dev-789',
|
|
1638
|
-
|
|
1639
|
-
userName: 'sjohnson',
|
|
1640
|
-
email: 'sarah.johnson@example.com',
|
|
1641
|
-
avatar: 'https://avatar.example.com/sarah.jpg',
|
|
1642
|
-
url: 'https://company.atlassian.net/people/sarah.johnson'
|
|
1605
|
+
email: 'sarah.johnson@example.com'
|
|
1643
1606
|
},
|
|
1644
1607
|
category: 'bug',
|
|
1645
1608
|
assignee: {
|
|
1646
1609
|
accountId: 'assignee-dev-456',
|
|
1647
1610
|
externalId: 'assignee-dev-456',
|
|
1648
|
-
|
|
1649
|
-
userName: 'mchen',
|
|
1650
|
-
email: 'michael.chen@example.com',
|
|
1651
|
-
avatar: 'https://avatar.example.com/michael.jpg',
|
|
1652
|
-
url: 'https://company.atlassian.net/people/michael.chen'
|
|
1611
|
+
email: 'michael.chen@example.com'
|
|
1653
1612
|
},
|
|
1654
1613
|
fullNounThirdPartyAri: 'ari:cloud:jira:company-site:issue/AUTH-123'
|
|
1655
1614
|
}
|
|
@@ -1928,11 +1887,7 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1928
1887
|
user: {
|
|
1929
1888
|
accountId: 'instructor-123',
|
|
1930
1889
|
externalId: 'instructor-123',
|
|
1931
|
-
|
|
1932
|
-
userName: 'sjohnson',
|
|
1933
|
-
email: 'sarah.johnson@example.com',
|
|
1934
|
-
avatar: 'https://avatar.example.com/sarah.jpg',
|
|
1935
|
-
url: 'https://company.com/people/sarah.johnson'
|
|
1890
|
+
email: 'sarah.johnson@example.com'
|
|
1936
1891
|
},
|
|
1937
1892
|
interactionCount: 25
|
|
1938
1893
|
},
|
|
@@ -1940,11 +1895,7 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
1940
1895
|
user: {
|
|
1941
1896
|
accountId: 'participant-456',
|
|
1942
1897
|
externalId: 'participant-456',
|
|
1943
|
-
|
|
1944
|
-
userName: 'mchen',
|
|
1945
|
-
email: 'mike.chen@example.com',
|
|
1946
|
-
avatar: 'https://avatar.example.com/mike.jpg',
|
|
1947
|
-
url: 'https://company.com/people/mike.chen'
|
|
1898
|
+
email: 'mike.chen@example.com'
|
|
1948
1899
|
},
|
|
1949
1900
|
interactionCount: 8
|
|
1950
1901
|
}
|
|
@@ -2007,11 +1958,7 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
2007
1958
|
assignee: {
|
|
2008
1959
|
accountId: 'dev-lead-789',
|
|
2009
1960
|
externalId: 'dev-lead-789',
|
|
2010
|
-
|
|
2011
|
-
userName: 'arodriguez',
|
|
2012
|
-
email: 'alex.rodriguez@example.com',
|
|
2013
|
-
avatar: 'https://avatar.example.com/alex.jpg',
|
|
2014
|
-
url: 'https://company.com/people/alex.rodriguez'
|
|
1961
|
+
email: 'alex.rodriguez@example.com'
|
|
2015
1962
|
},
|
|
2016
1963
|
workItemProject: {
|
|
2017
1964
|
id: 'auth-service-project',
|
|
@@ -2021,20 +1968,12 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
2021
1968
|
{
|
|
2022
1969
|
accountId: 'backend-dev-123',
|
|
2023
1970
|
externalId: 'backend-dev-123',
|
|
2024
|
-
|
|
2025
|
-
userName: 'schen',
|
|
2026
|
-
email: 'sarah.chen@example.com',
|
|
2027
|
-
avatar: 'https://avatar.example.com/sarah.jpg',
|
|
2028
|
-
url: 'https://company.com/people/sarah.chen'
|
|
1971
|
+
email: 'sarah.chen@example.com'
|
|
2029
1972
|
},
|
|
2030
1973
|
{
|
|
2031
1974
|
accountId: 'security-expert-456',
|
|
2032
1975
|
externalId: 'security-expert-456',
|
|
2033
|
-
|
|
2034
|
-
userName: 'mthompson',
|
|
2035
|
-
email: 'michael.thompson@example.com',
|
|
2036
|
-
avatar: 'https://avatar.example.com/michael.jpg',
|
|
2037
|
-
url: 'https://company.com/people/michael.thompson'
|
|
1976
|
+
email: 'michael.thompson@example.com'
|
|
2038
1977
|
}
|
|
2039
1978
|
],
|
|
2040
1979
|
exceedsMaxCollaborators: false,
|
|
@@ -2108,12 +2047,7 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
2108
2047
|
workerUser: {
|
|
2109
2048
|
accountId: 'worker-sarah-123',
|
|
2110
2049
|
externalId: 'emp-sarah-456',
|
|
2111
|
-
|
|
2112
|
-
userName: 'sjohnson',
|
|
2113
|
-
email: 'sarah.johnson@example.com',
|
|
2114
|
-
avatar: 'https://avatar.example.com/sarah.jpg',
|
|
2115
|
-
url: 'https://company.com/people/sarah.johnson',
|
|
2116
|
-
ari: 'ari:cloud:identity::user/worker-sarah-123'
|
|
2050
|
+
email: 'sarah.johnson@example.com'
|
|
2117
2051
|
},
|
|
2118
2052
|
customAndSensitiveData: 'Employee ID: EMP001234, Department: Engineering, Salary Grade: L5, Manager: Alex Rodriguez, Office Location: San Francisco HQ'
|
|
2119
2053
|
}
|
|
@@ -2284,7 +2218,8 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
2284
2218
|
'atlassian:test-execution': {
|
|
2285
2219
|
status: 'passed',
|
|
2286
2220
|
version: '1.2.0',
|
|
2287
|
-
environment: 'staging'
|
|
2221
|
+
environment: 'staging',
|
|
2222
|
+
testType: 'unit'
|
|
2288
2223
|
}
|
|
2289
2224
|
};
|
|
2290
2225
|
const req = { objects: [testExecutionObject] };
|
|
@@ -2392,12 +2327,7 @@ describe('TeamWorkGraphClient - bulk entities', () => {
|
|
|
2392
2327
|
assignee: {
|
|
2393
2328
|
accountId: 'tester-alice-123',
|
|
2394
2329
|
externalId: 'alice-tester-456',
|
|
2395
|
-
|
|
2396
|
-
userName: 'atester',
|
|
2397
|
-
email: 'alice.tester@example.com',
|
|
2398
|
-
avatar: 'https://avatar.example.com/alice.jpg',
|
|
2399
|
-
url: 'https://company.com/people/alice.tester',
|
|
2400
|
-
ari: 'ari:cloud:identity::user/tester-alice-123'
|
|
2330
|
+
email: 'alice.tester@example.com'
|
|
2401
2331
|
},
|
|
2402
2332
|
startedAt: '2024-07-09T09:00:00.000Z',
|
|
2403
2333
|
version: '1.2.0',
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
1
|
+
import { BaseObjectProperties, ContainerKeyObject } from './common';
|
|
2
2
|
import { CommitObject } from './commit';
|
|
3
3
|
export declare type BranchAttributes = {
|
|
4
4
|
name?: string;
|
|
@@ -7,6 +7,9 @@ export declare type BranchAttributes = {
|
|
|
7
7
|
};
|
|
8
8
|
export declare type BranchObject = BaseObjectProperties & {
|
|
9
9
|
displayName: string;
|
|
10
|
+
containerKey: ContainerKeyObject & {
|
|
11
|
+
type: 'atlassian:repository';
|
|
12
|
+
};
|
|
10
13
|
lastUpdatedAt: string;
|
|
11
14
|
permissions: NonNullable<BaseObjectProperties['permissions']>;
|
|
12
15
|
'atlassian:branch': BranchAttributes;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"branch.d.ts","sourceRoot":"","sources":["../../../src/types/objects/branch.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"branch.d.ts","sourceRoot":"","sources":["../../../src/types/objects/branch.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AACpE,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExC,oBAAY,gBAAgB,GAAG;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,YAAY,CAAC;IAC1B,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC/B,CAAC;AAEF,oBAAY,YAAY,GAAG,oBAAoB,GAAG;IAChD,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,kBAAkB,GAAG;QAAE,IAAI,EAAE,sBAAsB,CAAA;KAAE,CAAC;IACpE,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,kBAAkB,EAAE,gBAAgB,CAAC;CACtC,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
import { User } from '../users';
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
3
2
|
export declare type Attachment = {
|
|
4
3
|
url?: string;
|
|
5
4
|
thumbnailUrl?: string;
|
|
@@ -8,7 +7,7 @@ export declare type Attachment = {
|
|
|
8
7
|
byteSize?: number;
|
|
9
8
|
};
|
|
10
9
|
export declare type Attendee = {
|
|
11
|
-
user?:
|
|
10
|
+
user?: UserReference;
|
|
12
11
|
isOptional?: boolean;
|
|
13
12
|
rsvpStatus?: 'accepted' | 'tentatively_accepted' | 'declined' | 'not_responded' | 'other';
|
|
14
13
|
};
|
|
@@ -37,7 +36,7 @@ export declare type CalendarEventAttributes = {
|
|
|
37
36
|
export declare type CalendarEventObject = BaseObjectProperties & {
|
|
38
37
|
displayName: string;
|
|
39
38
|
description: string;
|
|
40
|
-
createdBy: Partial<
|
|
39
|
+
createdBy: Partial<UserReference>;
|
|
41
40
|
lastUpdatedAt: string;
|
|
42
41
|
permissions: NonNullable<BaseObjectProperties['permissions']>;
|
|
43
42
|
'atlassian:calendar-event': CalendarEventAttributes;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar-event.d.ts","sourceRoot":"","sources":["../../../src/types/objects/calendar-event.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"calendar-event.d.ts","sourceRoot":"","sources":["../../../src/types/objects/calendar-event.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,oBAAY,UAAU,GAAG;IACvB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,oBAAY,QAAQ,GAAG;IACrB,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,UAAU,GAAG,sBAAsB,GAAG,UAAU,GAAG,eAAe,GAAG,OAAO,CAAC;CAC3F,CAAC;AAEF,oBAAY,QAAQ,GAAG;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,uBAAuB,GAAG;IACpC,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IACvB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;CAC5B,CAAC;AAEF,oBAAY,mBAAmB,GAAG,oBAAoB,GAAG;IACvD,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IAClC,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,0BAA0B,EAAE,uBAAuB,CAAC;CACrD,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
import { User } from '..';
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
3
2
|
export declare type Reaction = {
|
|
4
3
|
reactionType: string;
|
|
5
4
|
total: number;
|
|
@@ -11,7 +10,7 @@ export declare type CommentAttributes = {
|
|
|
11
10
|
export declare type CommentObject = Omit<BaseObjectProperties, 'description' | 'createdBy'> & {
|
|
12
11
|
displayName: string;
|
|
13
12
|
lastUpdatedAt: string;
|
|
14
|
-
createdBy: Partial<
|
|
13
|
+
createdBy: Partial<UserReference>;
|
|
15
14
|
permissions: NonNullable<BaseObjectProperties['permissions']>;
|
|
16
15
|
'atlassian:comment': CommentAttributes;
|
|
17
16
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comment.d.ts","sourceRoot":"","sources":["../../../src/types/objects/comment.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"comment.d.ts","sourceRoot":"","sources":["../../../src/types/objects/comment.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,oBAAY,QAAQ,GAAG;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,iBAAiB,GAAG;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,QAAQ,EAAE,CAAC;CAC1B,CAAC;AAEF,oBAAY,aAAa,GAAG,IAAI,CAAC,oBAAoB,EAAE,aAAa,GAAG,WAAW,CAAC,GAAG;IACpF,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IAClC,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,mBAAmB,EAAE,iBAAiB,CAAC;CACxC,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
import { User } from '../users';
|
|
1
|
+
import { BaseObjectProperties, ContainerKeyObject, UserReference } from './common';
|
|
3
2
|
export declare type FileInfo = {
|
|
4
3
|
path: string;
|
|
5
4
|
url: string;
|
|
@@ -11,7 +10,7 @@ export declare type CommitAttributes = {
|
|
|
11
10
|
hash?: string;
|
|
12
11
|
displayId?: string;
|
|
13
12
|
message?: string;
|
|
14
|
-
author?:
|
|
13
|
+
author?: UserReference;
|
|
15
14
|
flags: string[];
|
|
16
15
|
fileCount: number;
|
|
17
16
|
files: FileInfo[];
|
|
@@ -19,6 +18,9 @@ export declare type CommitAttributes = {
|
|
|
19
18
|
};
|
|
20
19
|
export declare type CommitObject = BaseObjectProperties & {
|
|
21
20
|
displayName: string;
|
|
21
|
+
containerKey: ContainerKeyObject & {
|
|
22
|
+
type: 'atlassian:repository';
|
|
23
|
+
};
|
|
22
24
|
lastUpdatedAt: string;
|
|
23
25
|
permissions: NonNullable<BaseObjectProperties['permissions']>;
|
|
24
26
|
'atlassian:commit': CommitAttributes;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commit.d.ts","sourceRoot":"","sources":["../../../src/types/objects/commit.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"commit.d.ts","sourceRoot":"","sources":["../../../src/types/objects/commit.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEnF,oBAAY,QAAQ,GAAG;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,gBAAgB,GAAG;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,aAAa,CAAC;IACvB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,oBAAY,YAAY,GAAG,oBAAoB,GAAG;IAChD,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,kBAAkB,GAAG;QAAE,IAAI,EAAE,sBAAsB,CAAA;KAAE,CAAC;IACpE,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,kBAAkB,EAAE,gBAAgB,CAAC;CACtC,CAAC"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { User } from '..';
|
|
2
1
|
export declare type Thumbnail = {
|
|
3
2
|
externalUrl: string;
|
|
4
3
|
};
|
|
@@ -15,15 +14,11 @@ export declare type Permissions = {
|
|
|
15
14
|
};
|
|
16
15
|
export declare type ContainerKeyObject = {
|
|
17
16
|
type: string;
|
|
18
|
-
value:
|
|
19
|
-
entityId: string;
|
|
20
|
-
};
|
|
17
|
+
value: Record<string, string>;
|
|
21
18
|
};
|
|
22
19
|
export declare type ParentKeyObject = {
|
|
23
20
|
type: string;
|
|
24
|
-
value:
|
|
25
|
-
entityId: string;
|
|
26
|
-
};
|
|
21
|
+
value: Record<string, string>;
|
|
27
22
|
};
|
|
28
23
|
export declare type BaseObjectProperties = {
|
|
29
24
|
schemaVersion: string;
|
|
@@ -33,10 +28,10 @@ export declare type BaseObjectProperties = {
|
|
|
33
28
|
description?: string;
|
|
34
29
|
url: string;
|
|
35
30
|
createdAt: string;
|
|
36
|
-
createdBy?: Partial<
|
|
31
|
+
createdBy?: Partial<UserReference>;
|
|
37
32
|
lastUpdatedAt?: string;
|
|
38
|
-
lastUpdatedBy?: Partial<
|
|
39
|
-
owners?: Partial<
|
|
33
|
+
lastUpdatedBy?: Partial<UserReference>;
|
|
34
|
+
owners?: Partial<UserReference>[];
|
|
40
35
|
thumbnail?: Thumbnail;
|
|
41
36
|
parentKey?: ParentKeyObject | string;
|
|
42
37
|
containerKey?: ContainerKeyObject | string;
|
|
@@ -49,7 +44,13 @@ export declare type AssociationObject = {
|
|
|
49
44
|
values: string[];
|
|
50
45
|
};
|
|
51
46
|
export declare type Associations = {
|
|
47
|
+
updateSequenceNumber?: number;
|
|
52
48
|
lastUpdatedAt: string;
|
|
53
49
|
set: AssociationObject[];
|
|
54
50
|
};
|
|
51
|
+
export declare type UserReference = {
|
|
52
|
+
accountId?: string;
|
|
53
|
+
email?: string;
|
|
54
|
+
externalId?: string;
|
|
55
|
+
};
|
|
55
56
|
//# sourceMappingURL=common.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/types/objects/common.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/types/objects/common.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS,GAAG;IACtB,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,oBAAY,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;AAEvC,oBAAY,SAAS,GAAG;IACtB,IAAI,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,qBAAqB,GAAG,WAAW,CAAC;IAC1E,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACpB,CAAC;AAEF,oBAAY,aAAa,GAAG;IAC1B,UAAU,EAAE,SAAS,EAAE,CAAC;CACzB,CAAC;AAEF,oBAAY,WAAW,GAAG;IACxB,cAAc,EAAE,aAAa,EAAE,CAAC;CACjC,CAAC;AAGF,oBAAY,kBAAkB,GAAG;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B,CAAC;AAEF,oBAAY,eAAe,GAAG;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B,CAAC;AAGF,oBAAY,oBAAoB,GAAG;IACjC,aAAa,EAAE,MAAM,CAAC;IACtB,EAAE,EAAE,MAAM,CAAC;IACX,oBAAoB,EAAE,MAAM,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IACnC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IACvC,MAAM,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC;IAClC,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,SAAS,CAAC,EAAE,eAAe,GAAG,MAAM,CAAC;IACrC,YAAY,CAAC,EAAE,kBAAkB,GAAG,MAAM,CAAC;IAC3C,WAAW,EAAE,WAAW,EAAE,GAAG,WAAW,CAAC;IACzC,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAEF,oBAAY,iBAAiB,GAAG;IAC9B,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB,CAAC;AAEF,oBAAY,YAAY,GAAG;IACzB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,GAAG,EAAE,iBAAiB,EAAE,CAAC;CAC1B,CAAC;AAEF,oBAAY,aAAa,GAAG;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC"}
|
|
@@ -1,21 +1,11 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export declare type User = {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
};
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export declare type ConversationAttributes = {
|
|
13
3
|
type: string;
|
|
14
4
|
membershipType: string;
|
|
15
5
|
workspace: string;
|
|
16
6
|
topic?: string;
|
|
17
7
|
isArchived?: boolean;
|
|
18
|
-
members
|
|
8
|
+
members?: UserReference[];
|
|
19
9
|
lastActive?: string;
|
|
20
10
|
memberCount?: number;
|
|
21
11
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../src/types/objects/conversation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../src/types/objects/conversation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,oBAAY,sBAAsB,GAAG;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,kBAAkB,GAAG,oBAAoB,GAAG;IACtD,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,wBAAwB,EAAE,sBAAsB,CAAC;CAClD,CAAC"}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export declare type User = {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
};
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export declare type CustomerOrgLastActivity = {
|
|
13
3
|
lastActivityAt: string;
|
|
14
4
|
event: string;
|
|
@@ -18,12 +8,12 @@ export declare type CustomerOrgLifeTimeValue = {
|
|
|
18
8
|
currencyCode: string;
|
|
19
9
|
};
|
|
20
10
|
export declare type CustomerOrgAttributes = {
|
|
21
|
-
contacts?:
|
|
11
|
+
contacts?: UserReference[];
|
|
22
12
|
customerOrgLastActivity?: CustomerOrgLastActivity;
|
|
23
13
|
customerOrgLifeTimeValue?: CustomerOrgLifeTimeValue;
|
|
24
14
|
websiteUrl?: string;
|
|
25
15
|
industry?: string;
|
|
26
|
-
contributors?:
|
|
16
|
+
contributors?: UserReference[];
|
|
27
17
|
country?: string;
|
|
28
18
|
accountType?: string;
|
|
29
19
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customer-org.d.ts","sourceRoot":"","sources":["../../../src/types/objects/customer-org.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"customer-org.d.ts","sourceRoot":"","sources":["../../../src/types/objects/customer-org.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,oBAAY,uBAAuB,GAAG;IACpC,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,wBAAwB,GAAG;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,qBAAqB,GAAG;IAClC,QAAQ,CAAC,EAAE,aAAa,EAAE,CAAC;IAC3B,uBAAuB,CAAC,EAAE,uBAAuB,CAAC;IAClD,wBAAwB,CAAC,EAAE,wBAAwB,CAAC;IACpD,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,aAAa,EAAE,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,iBAAiB,GAAG,oBAAoB,GAAG;IACrD,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,wBAAwB,EAAE,qBAAqB,CAAC;CACjD,CAAC"}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export declare type User = {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
};
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export declare type DealLastActivity = {
|
|
13
3
|
lastActivityAt: string;
|
|
14
4
|
event: string;
|
|
@@ -18,11 +8,11 @@ export declare type DealOpportunityAmount = {
|
|
|
18
8
|
currencyCode: string;
|
|
19
9
|
};
|
|
20
10
|
export declare type DealAttributes = {
|
|
21
|
-
contact?:
|
|
11
|
+
contact?: UserReference;
|
|
22
12
|
stage?: string;
|
|
23
13
|
status?: string;
|
|
24
14
|
accountName?: string;
|
|
25
|
-
contributors?:
|
|
15
|
+
contributors?: UserReference[];
|
|
26
16
|
lastActivity?: DealLastActivity;
|
|
27
17
|
dealClosedAt?: string;
|
|
28
18
|
opportunityAmount?: DealOpportunityAmount;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deal.d.ts","sourceRoot":"","sources":["../../../src/types/objects/deal.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"deal.d.ts","sourceRoot":"","sources":["../../../src/types/objects/deal.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,oBAAY,gBAAgB,GAAG;IAC7B,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,qBAAqB,GAAG;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,cAAc,GAAG;IAC3B,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,aAAa,EAAE,CAAC;IAC/B,YAAY,CAAC,EAAE,gBAAgB,CAAC;IAChC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,iBAAiB,CAAC,EAAE,qBAAqB,CAAC;IAC1C,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,oBAAY,UAAU,GAAG,oBAAoB,GAAG;IAC9C,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,gBAAgB,EAAE,cAAc,CAAC;CAClC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
2
2
|
export interface PipelineDetails {
|
|
3
3
|
id: string;
|
|
4
4
|
displayName: string;
|
|
@@ -9,16 +9,6 @@ export interface EnvironmentDetails {
|
|
|
9
9
|
displayName: string;
|
|
10
10
|
type: 'production' | 'staging' | 'testing' | 'development' | 'unmapped';
|
|
11
11
|
}
|
|
12
|
-
export interface UserReference {
|
|
13
|
-
accountId?: string;
|
|
14
|
-
email?: string;
|
|
15
|
-
externalId?: string;
|
|
16
|
-
ari?: string;
|
|
17
|
-
name?: string;
|
|
18
|
-
userName?: string;
|
|
19
|
-
avatar?: string;
|
|
20
|
-
url?: string;
|
|
21
|
-
}
|
|
22
12
|
export interface Command {
|
|
23
13
|
command: string;
|
|
24
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployment.d.ts","sourceRoot":"","sources":["../../../src/types/objects/deployment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"deployment.d.ts","sourceRoot":"","sources":["../../../src/types/objects/deployment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,YAAY,GAAG,SAAS,GAAG,SAAS,GAAG,aAAa,GAAG,UAAU,CAAC;CACzE;AAED,MAAM,WAAW,OAAO;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,oBAAoB;IACnC,wBAAwB,EAAE,MAAM,CAAC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,eAAe,CAAC;IAC3B,WAAW,EAAE,kBAAkB,CAAC;IAChC,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,aAAa,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,oBAAY,gBAAgB,GAAG,oBAAoB,GAAG;IACpD,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,sBAAsB,EAAE,oBAAoB,CAAC;CAC9C,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties,
|
|
1
|
+
import { BaseObjectProperties, UserReference } from '..';
|
|
2
2
|
export declare type DocumentCategory = 'FOLDER' | 'DOCUMENT' | 'PRESENTATION' | 'SPREADSHEET' | 'IMAGE' | 'AUDIO' | 'VIDEO' | 'PDF' | 'SHORTCUT' | 'CODE' | 'ARCHIVE' | 'FORM' | 'WEB_PAGE' | 'OTHER';
|
|
3
3
|
export declare type DocumentType = {
|
|
4
4
|
category?: DocumentCategory;
|
|
@@ -9,7 +9,6 @@ export declare type DocumentType = {
|
|
|
9
9
|
export declare type DocumentContent = {
|
|
10
10
|
mimeType?: string;
|
|
11
11
|
text?: string;
|
|
12
|
-
binary?: string;
|
|
13
12
|
};
|
|
14
13
|
export declare type ExportLink = {
|
|
15
14
|
mimeType: string;
|
|
@@ -24,7 +23,7 @@ export declare type DocumentAttributes = {
|
|
|
24
23
|
content: DocumentContent;
|
|
25
24
|
byteSize?: number;
|
|
26
25
|
exportLinks?: ExportLink[];
|
|
27
|
-
collaborators?: Partial<
|
|
26
|
+
collaborators?: Partial<UserReference>[];
|
|
28
27
|
labels?: string[];
|
|
29
28
|
reactions?: Reaction[];
|
|
30
29
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document.d.ts","sourceRoot":"","sources":["../../../src/types/objects/document.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"document.d.ts","sourceRoot":"","sources":["../../../src/types/objects/document.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,IAAI,CAAC;AAEzD,oBAAY,gBAAgB,GACxB,QAAQ,GACR,UAAU,GACV,cAAc,GACd,aAAa,GACb,OAAO,GACP,OAAO,GACP,OAAO,GACP,KAAK,GACL,UAAU,GACV,MAAM,GACN,SAAS,GACT,MAAM,GACN,UAAU,GACV,OAAO,CAAC;AAEZ,oBAAY,YAAY,GAAG;IACzB,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,oBAAY,eAAe,GAAG;IAC5B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,UAAU,GAAG;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;CACb,CAAC;AAEF,oBAAY,QAAQ,GAAG;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,oBAAY,kBAAkB,GAAG;IAC/B,IAAI,EAAE,YAAY,CAAC;IACnB,OAAO,EAAE,eAAe,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;IAC3B,aAAa,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC;IACzC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;CACxB,CAAC;AAEF,oBAAY,cAAc,GAAG,oBAAoB,GAAG;IAClD,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,aAAa,EAAE,MAAM,CAAC;IACtB,oBAAoB,EAAE,kBAAkB,CAAC;CAC1C,CAAC"}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export interface UserReference {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
}
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export interface Attachment {
|
|
13
3
|
url?: string;
|
|
14
4
|
thumbnailUrl?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../../src/types/objects/project.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../../src/types/objects/project.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,MAAM,WAAW,UAAU;IACzB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,oBAAY,iBAAiB,GAAG;IAC9B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;IAC3B,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,oBAAY,aAAa,GAAG,oBAAoB,GAAG;IACjD,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,WAAW,CAAC,oBAAoB,CAAC,WAAW,CAAC,CAAC,CAAC;IAC1D,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,mBAAmB,EAAE,iBAAiB,CAAC;CACxC,CAAC"}
|
|
@@ -1,17 +1,7 @@
|
|
|
1
|
-
import { BaseObjectProperties, ContainerKeyObject } from './common';
|
|
2
|
-
export interface UserReference {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
}
|
|
1
|
+
import { BaseObjectProperties, ContainerKeyObject, UserReference } from './common';
|
|
12
2
|
export interface Reviewer {
|
|
13
3
|
accountId?: string;
|
|
14
|
-
|
|
4
|
+
externalId?: string;
|
|
15
5
|
email?: string;
|
|
16
6
|
approvalStatus?: 'approved' | 'unapproved' | 'needswork';
|
|
17
7
|
name?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pull-request.d.ts","sourceRoot":"","sources":["../../../src/types/objects/pull-request.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,
|
|
1
|
+
{"version":3,"file":"pull-request.d.ts","sourceRoot":"","sources":["../../../src/types/objects/pull-request.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEnF,MAAM,WAAW,QAAQ;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,UAAU,GAAG,YAAY,GAAG,WAAW,CAAC;IACzD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,oBAAY,qBAAqB,GAAG;IAClC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,aAAa,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,oBAAY,iBAAiB,GAAG,oBAAoB,GAAG;IACrD,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,kBAAkB,GAAG;QAAE,IAAI,EAAE,sBAAsB,CAAA;KAAE,CAAC;IACpE,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,wBAAwB,EAAE,qBAAqB,CAAC;CACjD,CAAC"}
|
|
@@ -1,18 +1,8 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
2
2
|
export interface RemoteLinkStatus {
|
|
3
3
|
appearance: 'default' | 'in_progress' | 'moved' | 'new' | 'removed' | 'success';
|
|
4
4
|
label: string;
|
|
5
5
|
}
|
|
6
|
-
export interface UserReference {
|
|
7
|
-
accountId?: string;
|
|
8
|
-
email?: string;
|
|
9
|
-
externalId?: string;
|
|
10
|
-
ari?: string;
|
|
11
|
-
name?: string;
|
|
12
|
-
userName?: string;
|
|
13
|
-
avatar?: string;
|
|
14
|
-
url?: string;
|
|
15
|
-
}
|
|
16
6
|
export declare type RemoteLinkAttributes = {
|
|
17
7
|
type: string;
|
|
18
8
|
status?: RemoteLinkStatus;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote-link.d.ts","sourceRoot":"","sources":["../../../src/types/objects/remote-link.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"remote-link.d.ts","sourceRoot":"","sources":["../../../src/types/objects/remote-link.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,MAAM,WAAW,gBAAgB;IAC/B,UAAU,EAAE,SAAS,GAAG,aAAa,GAAG,OAAO,GAAG,KAAK,GAAG,SAAS,GAAG,SAAS,CAAC;IAChF,KAAK,EAAE,MAAM,CAAC;CACf;AAED,oBAAY,oBAAoB,GAAG;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACnC,MAAM,CAAC,EAAE,aAAa,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC,CAAC;AAEF,oBAAY,gBAAgB,GAAG,IAAI,CAAC,oBAAoB,EAAE,WAAW,CAAC,GAAG;IACvE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,uBAAuB,EAAE,oBAAoB,CAAC;CAC/C,CAAC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { BaseObjectProperties } from './common';
|
|
2
2
|
export declare type TestExecutionAttributes = {
|
|
3
|
-
status
|
|
3
|
+
status: string;
|
|
4
4
|
version?: string;
|
|
5
5
|
environment?: string;
|
|
6
|
+
testType: string;
|
|
6
7
|
};
|
|
7
8
|
export declare type TestExecutionObject = BaseObjectProperties & {
|
|
8
9
|
displayName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-execution.d.ts","sourceRoot":"","sources":["../../../src/types/objects/test-execution.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAEhD,oBAAY,uBAAuB,GAAG;IACpC,MAAM,
|
|
1
|
+
{"version":3,"file":"test-execution.d.ts","sourceRoot":"","sources":["../../../src/types/objects/test-execution.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAEhD,oBAAY,uBAAuB,GAAG;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,oBAAY,mBAAmB,GAAG,oBAAoB,GAAG;IACvD,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,0BAA0B,EAAE,uBAAuB,CAAC;CACrD,CAAC"}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export interface UserReference {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
}
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export declare type TestRunAttributes = {
|
|
13
3
|
status: string;
|
|
14
4
|
assignee?: UserReference;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-run.d.ts","sourceRoot":"","sources":["../../../src/types/objects/test-run.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"test-run.d.ts","sourceRoot":"","sources":["../../../src/types/objects/test-run.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,oBAAY,iBAAiB,GAAG;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,oBAAY,aAAa,GAAG,oBAAoB,GAAG;IACjD,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,oBAAoB,EAAE,iBAAiB,CAAC;CACzC,CAAC"}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export interface UserReference {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
}
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export interface Cue {
|
|
13
3
|
id?: string;
|
|
14
4
|
startTimeInSeconds: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"video.d.ts","sourceRoot":"","sources":["../../../src/types/objects/video.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"video.d.ts","sourceRoot":"","sources":["../../../src/types/objects/video.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,MAAM,WAAW,GAAG;IAClB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,kBAAkB,EAAE,MAAM,CAAC;IAC3B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,KAAK;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,GAAG,EAAE,CAAC;CACb;AAED,MAAM,WAAW,OAAO;IACtB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,aAAa,CAAC;IACpB,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAED,oBAAY,eAAe,GAAG;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,KAAK,EAAE,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC;IACrB,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC;CAC9B,CAAC;AAEF,oBAAY,WAAW,GAAG,oBAAoB,GAAG;IAC/C,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,iBAAiB,EAAE,eAAe,CAAC;CACpC,CAAC"}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export interface UserReference {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
}
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export interface WorkItemProject {
|
|
13
3
|
id: string;
|
|
14
4
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"work-item.d.ts","sourceRoot":"","sources":["../../../src/types/objects/work-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"work-item.d.ts","sourceRoot":"","sources":["../../../src/types/objects/work-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,UAAU;IACzB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,oBAAY,kBAAkB,GAAG;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,aAAa,CAAC,EAAE,aAAa,EAAE,CAAC;IAChC,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,oBAAY,cAAc,GAAG,oBAAoB,GAAG;IAClD,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,qBAAqB,EAAE,kBAAkB,CAAC;CAC3C,CAAC"}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import { BaseObjectProperties } from './common';
|
|
2
|
-
export interface UserReference {
|
|
3
|
-
accountId?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
externalId?: string;
|
|
6
|
-
ari?: string;
|
|
7
|
-
name?: string;
|
|
8
|
-
userName?: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
url?: string;
|
|
11
|
-
}
|
|
1
|
+
import { BaseObjectProperties, UserReference } from './common';
|
|
12
2
|
export declare type WorkerAttributes = {
|
|
13
3
|
hiredAt: string;
|
|
14
4
|
workerUser: UserReference;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"worker.d.ts","sourceRoot":"","sources":["../../../src/types/objects/worker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,
|
|
1
|
+
{"version":3,"file":"worker.d.ts","sourceRoot":"","sources":["../../../src/types/objects/worker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAE/D,oBAAY,gBAAgB,GAAG;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,aAAa,CAAC;IAC1B,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACjC,CAAC;AAEF,oBAAY,YAAY,GAAG,oBAAoB,GAAG;IAChD,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,WAAW,CAAC,oBAAoB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC9D,kBAAkB,EAAE,gBAAgB,CAAC;CACtC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/teamwork-graph",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-next.2",
|
|
4
4
|
"description": "Forge TeamworkGraph SDK",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"jest-when": "^3.6.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@forge/api": "^6.1.4-next.
|
|
25
|
+
"@forge/api": "^6.1.4-next.0"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
|