@valiantys/atlassian-app-frontend 3.0.0-alpha-10 → 3.0.0-alpha-11

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.
Files changed (43) hide show
  1. package/atlassian/jira/shared/data-access-issue/src/lib/jira-issue-service/index.cjs.js +1 -1
  2. package/atlassian/jira/shared/data-access-issue/src/lib/jira-issue-service/index.es.js +21 -18
  3. package/atlassian/shared/data-access-atlassian-product-fetch-oauth/src/lib/atlassian-oauth-fetch/index.cjs.js +1 -1
  4. package/atlassian/shared/data-access-atlassian-product-fetch-oauth/src/lib/atlassian-oauth-fetch/index.es.js +51 -29
  5. package/atlassian/shared/data-access-atlassian-product-fetch-oauth/src/lib/route/index.cjs.js +1 -1
  6. package/atlassian/shared/data-access-atlassian-product-fetch-oauth/src/lib/route/index.es.js +28 -17
  7. package/atlassian/shared/frontend-feature-atlassian-app/src/lib/standalone/atlassian-app-standalone/index.cjs.js +1 -1
  8. package/atlassian/shared/frontend-feature-atlassian-app/src/lib/standalone/atlassian-app-standalone/index.es.js +93 -84
  9. package/atlassian/shared/frontend-feature-oauth-login/src/lib/feature-oauth/index.cjs.js +1 -1
  10. package/atlassian/shared/frontend-feature-oauth-login/src/lib/feature-oauth/index.es.js +58 -66
  11. package/atlassian/shared/frontend-feature-oauth-login/src/lib/oauth-routes/index.cjs.js +1 -0
  12. package/atlassian/shared/frontend-feature-oauth-login/src/lib/oauth-routes/index.es.js +51 -0
  13. package/atlassian/shared/frontend-ui-page-loading-view/src/lib/page-loading-view/index.cjs.js +1 -1
  14. package/atlassian/shared/frontend-ui-page-loading-view/src/lib/page-loading-view/index.es.js +1 -1
  15. package/atlassian-app/index.d.ts +1 -0
  16. package/atlassian-app-standalone/atlassian-app-frontend-atlassian-app-standalone.api.json +29 -2
  17. package/atlassian-app-standalone/atlassian-app-frontend.api.md +3 -1
  18. package/atlassian-app-standalone/index.d.ts +3 -1
  19. package/data-access-atlassian-product-fetch-oauth/atlassian-app-frontend-data-access-atlassian-product-fetch-oauth.api.json +241 -2
  20. package/data-access-atlassian-product-fetch-oauth/atlassian-app-frontend.api.md +17 -1
  21. package/data-access-atlassian-product-fetch-oauth/index.cjs.js +1 -1
  22. package/data-access-atlassian-product-fetch-oauth/index.d.ts +11 -1
  23. package/data-access-atlassian-product-fetch-oauth/index.es.js +9 -7
  24. package/data-access-issue/atlassian-app-frontend-data-access-issue.api.json +128 -9
  25. package/data-access-issue/atlassian-app-frontend.api.md +7 -5
  26. package/data-access-issue/index.d.ts +27 -11
  27. package/package.json +1 -1
  28. package/shared/util-fetch/src/lib/shared-util-fetch/index.cjs.js +2 -2
  29. package/shared/util-fetch/src/lib/shared-util-fetch/index.es.js +25 -24
  30. package/ui-oauth-login/atlassian-app-frontend-ui-oauth-login.api.json +340 -0
  31. package/ui-oauth-login/atlassian-app-frontend.api.md +29 -0
  32. package/ui-oauth-login/index.cjs.js +1 -1
  33. package/ui-oauth-login/index.d.ts +23 -0
  34. package/ui-oauth-login/index.es.js +7 -3
  35. package/ui-page-loading-view/atlassian-app-frontend-ui-page-loading-view.api.json +10 -5
  36. package/ui-page-loading-view/atlassian-app-frontend.api.md +2 -2
  37. package/ui-page-loading-view/index.d.ts +2 -2
  38. package/util-atlassian-product-fetch/atlassian-app-frontend-util-atlassian-product-fetch.api.json +97 -2
  39. package/util-atlassian-product-fetch/atlassian-app-frontend.api.md +9 -1
  40. package/util-atlassian-product-fetch/index.d.ts +6 -1
  41. package/util-jira-v3-api/atlassian-app-frontend-util-jira-v3-api.api.json +395 -78
  42. package/util-jira-v3-api/atlassian-app-frontend.api.md +47 -19
  43. package/util-jira-v3-api/index.d.ts +33 -14
@@ -12,6 +12,11 @@ export declare interface AtlassianProductFetchService<P extends Product> {
12
12
  fullUrl: (path: string) => string;
13
13
  }
14
14
 
15
+ export declare interface AtlassianProxyFetchRequest {
16
+ request: FetchRequest;
17
+ body?: Record<string, any>;
18
+ }
19
+
15
20
  export declare function bearerAuthFetch<T>(authToken: string, url: string, method: FetchMethod, body?: Record<string, unknown>, responseType?: 'json' | 'text', headers?: Record<string, string>): Promise<T>;
16
21
 
17
22
  export declare function bearerAuthFetchRaw(authToken: string, url: string, init: RequestInit): Promise<Response>;
@@ -41,7 +46,7 @@ export declare type FetchRoute = {
41
46
 
42
47
  export declare type FetchSignature = <T>(request: FetchRequest, body?: Record<string, any>) => Promise<T>;
43
48
 
44
- export declare function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text'): Promise<T>;
49
+ export declare function jsonFetch<T, U = Record<string, unknown>>(url: string, method: FetchMethod, headers?: Record<string, string>, body?: U, responseType?: 'json' | 'text', includeCredentials?: RequestCredentials): Promise<T>;
45
50
 
46
51
  export declare interface PagedResponseValues<T> {
47
52
  startAt: number;
@@ -894,7 +894,16 @@
894
894
  },
895
895
  {
896
896
  "kind": "Content",
897
- "text": "<string>"
897
+ "text": "<"
898
+ },
899
+ {
900
+ "kind": "Reference",
901
+ "text": "AtlassianDocumentFormat",
902
+ "canonicalReference": "@valiantys/atlassian-app-frontend!AtlassianDocumentFormat:interface"
903
+ },
904
+ {
905
+ "kind": "Content",
906
+ "text": " | string>"
898
907
  },
899
908
  {
900
909
  "kind": "Content",
@@ -907,7 +916,7 @@
907
916
  "name": "fields",
908
917
  "propertyTypeTokenRange": {
909
918
  "startIndex": 1,
910
- "endIndex": 3
919
+ "endIndex": 5
911
920
  }
912
921
  },
913
922
  {
@@ -1909,11 +1918,33 @@
1909
1918
  "excerptTokens": [
1910
1919
  {
1911
1920
  "kind": "Content",
1912
- "text": "export interface Issue "
1921
+ "text": "export interface Issue<T = "
1922
+ },
1923
+ {
1924
+ "kind": "Reference",
1925
+ "text": "AtlassianDocumentFormat",
1926
+ "canonicalReference": "@valiantys/atlassian-app-frontend!AtlassianDocumentFormat:interface"
1927
+ },
1928
+ {
1929
+ "kind": "Content",
1930
+ "text": "> "
1913
1931
  }
1914
1932
  ],
1915
1933
  "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/issue.d.ts",
1916
1934
  "releaseTag": "Public",
1935
+ "typeParameters": [
1936
+ {
1937
+ "typeParameterName": "T",
1938
+ "constraintTokenRange": {
1939
+ "startIndex": 0,
1940
+ "endIndex": 0
1941
+ },
1942
+ "defaultTypeTokenRange": {
1943
+ "startIndex": 1,
1944
+ "endIndex": 2
1945
+ }
1946
+ }
1947
+ ],
1917
1948
  "name": "Issue",
1918
1949
  "preserveMemberOrder": false,
1919
1950
  "members": [
@@ -1958,6 +1989,10 @@
1958
1989
  "text": "IssueFields",
1959
1990
  "canonicalReference": "@valiantys/atlassian-app-frontend!IssueFields:type"
1960
1991
  },
1992
+ {
1993
+ "kind": "Content",
1994
+ "text": "<T>"
1995
+ },
1961
1996
  {
1962
1997
  "kind": "Content",
1963
1998
  "text": ";"
@@ -1969,7 +2004,7 @@
1969
2004
  "name": "fields",
1970
2005
  "propertyTypeTokenRange": {
1971
2006
  "startIndex": 1,
1972
- "endIndex": 2
2007
+ "endIndex": 3
1973
2008
  }
1974
2009
  },
1975
2010
  {
@@ -2026,6 +2061,38 @@
2026
2061
  "endIndex": 2
2027
2062
  }
2028
2063
  },
2064
+ {
2065
+ "kind": "PropertySignature",
2066
+ "canonicalReference": "@valiantys/atlassian-app-frontend!Issue#renderedFields:member",
2067
+ "docComment": "",
2068
+ "excerptTokens": [
2069
+ {
2070
+ "kind": "Content",
2071
+ "text": "renderedFields?: "
2072
+ },
2073
+ {
2074
+ "kind": "Reference",
2075
+ "text": "IssueFields",
2076
+ "canonicalReference": "@valiantys/atlassian-app-frontend!IssueFields:type"
2077
+ },
2078
+ {
2079
+ "kind": "Content",
2080
+ "text": "<string>"
2081
+ },
2082
+ {
2083
+ "kind": "Content",
2084
+ "text": ";"
2085
+ }
2086
+ ],
2087
+ "isReadonly": false,
2088
+ "isOptional": true,
2089
+ "releaseTag": "Public",
2090
+ "name": "renderedFields",
2091
+ "propertyTypeTokenRange": {
2092
+ "startIndex": 1,
2093
+ "endIndex": 3
2094
+ }
2095
+ },
2029
2096
  {
2030
2097
  "kind": "PropertySignature",
2031
2098
  "canonicalReference": "@valiantys/atlassian-app-frontend!Issue#self:member",
@@ -3339,75 +3406,36 @@
3339
3406
  "extendsTokenRanges": []
3340
3407
  },
3341
3408
  {
3342
- "kind": "TypeAlias",
3343
- "canonicalReference": "@valiantys/atlassian-app-frontend!Precomputation:type",
3344
- "docComment": "",
3345
- "excerptTokens": [
3346
- {
3347
- "kind": "Content",
3348
- "text": "export type Precomputation = "
3349
- },
3350
- {
3351
- "kind": "Content",
3352
- "text": "{\n id: string;\n value: string;\n functionKey: string;\n functionName: string;\n field: string;\n operator: 'not in' | 'in';\n arguments: string[];\n created: string;\n updated: string;\n used: string;\n}"
3353
- },
3354
- {
3355
- "kind": "Content",
3356
- "text": ";"
3357
- }
3358
- ],
3359
- "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/jql-precomputations.d.ts",
3360
- "releaseTag": "Public",
3361
- "name": "Precomputation",
3362
- "typeTokenRange": {
3363
- "startIndex": 1,
3364
- "endIndex": 2
3365
- }
3366
- },
3367
- {
3368
- "kind": "TypeAlias",
3369
- "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationPayload:type",
3409
+ "kind": "Interface",
3410
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse:interface",
3370
3411
  "docComment": "",
3371
3412
  "excerptTokens": [
3372
3413
  {
3373
3414
  "kind": "Content",
3374
- "text": "export type PrecomputationPayload = "
3375
- },
3376
- {
3377
- "kind": "Content",
3378
- "text": "{\n precomputationId: string;\n clause: {\n field: string;\n type: string[];\n operator: string;\n functionName: string;\n arguments: string[];\n };\n context?: {\n cloudId: string;\n moduleKey: string;\n };\n contextToken?: string;\n}"
3379
- },
3380
- {
3381
- "kind": "Content",
3382
- "text": ";"
3415
+ "text": "export interface PagedResponse<T> "
3383
3416
  }
3384
3417
  ],
3385
- "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/jql-precomputations.d.ts",
3418
+ "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/paged-response.d.ts",
3386
3419
  "releaseTag": "Public",
3387
- "name": "PrecomputationPayload",
3388
- "typeTokenRange": {
3389
- "startIndex": 1,
3390
- "endIndex": 2
3391
- }
3392
- },
3393
- {
3394
- "kind": "Interface",
3395
- "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationResponse:interface",
3396
- "docComment": "",
3397
- "excerptTokens": [
3420
+ "typeParameters": [
3398
3421
  {
3399
- "kind": "Content",
3400
- "text": "export interface PrecomputationResponse "
3422
+ "typeParameterName": "T",
3423
+ "constraintTokenRange": {
3424
+ "startIndex": 0,
3425
+ "endIndex": 0
3426
+ },
3427
+ "defaultTypeTokenRange": {
3428
+ "startIndex": 0,
3429
+ "endIndex": 0
3430
+ }
3401
3431
  }
3402
3432
  ],
3403
- "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/jql-precomputations.d.ts",
3404
- "releaseTag": "Public",
3405
- "name": "PrecomputationResponse",
3433
+ "name": "PagedResponse",
3406
3434
  "preserveMemberOrder": false,
3407
3435
  "members": [
3408
3436
  {
3409
3437
  "kind": "PropertySignature",
3410
- "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationResponse#isLast:member",
3438
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse#isLast:member",
3411
3439
  "docComment": "",
3412
3440
  "excerptTokens": [
3413
3441
  {
@@ -3434,7 +3462,7 @@
3434
3462
  },
3435
3463
  {
3436
3464
  "kind": "PropertySignature",
3437
- "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationResponse#maxResults:member",
3465
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse#maxResults:member",
3438
3466
  "docComment": "",
3439
3467
  "excerptTokens": [
3440
3468
  {
@@ -3461,7 +3489,7 @@
3461
3489
  },
3462
3490
  {
3463
3491
  "kind": "PropertySignature",
3464
- "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationResponse#startAt:member",
3492
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse#startAt:member",
3465
3493
  "docComment": "",
3466
3494
  "excerptTokens": [
3467
3495
  {
@@ -3488,7 +3516,7 @@
3488
3516
  },
3489
3517
  {
3490
3518
  "kind": "PropertySignature",
3491
- "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationResponse#total:member",
3519
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse#total:member",
3492
3520
  "docComment": "",
3493
3521
  "excerptTokens": [
3494
3522
  {
@@ -3515,21 +3543,16 @@
3515
3543
  },
3516
3544
  {
3517
3545
  "kind": "PropertySignature",
3518
- "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationResponse#values:member",
3546
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse#values:member",
3519
3547
  "docComment": "",
3520
3548
  "excerptTokens": [
3521
3549
  {
3522
3550
  "kind": "Content",
3523
3551
  "text": "values: "
3524
3552
  },
3525
- {
3526
- "kind": "Reference",
3527
- "text": "Precomputation",
3528
- "canonicalReference": "@valiantys/atlassian-app-frontend!Precomputation:type"
3529
- },
3530
3553
  {
3531
3554
  "kind": "Content",
3532
- "text": "[]"
3555
+ "text": "T[]"
3533
3556
  },
3534
3557
  {
3535
3558
  "kind": "Content",
@@ -3542,12 +3565,144 @@
3542
3565
  "name": "values",
3543
3566
  "propertyTypeTokenRange": {
3544
3567
  "startIndex": 1,
3545
- "endIndex": 3
3568
+ "endIndex": 2
3546
3569
  }
3547
3570
  }
3548
3571
  ],
3549
3572
  "extendsTokenRanges": []
3550
3573
  },
3574
+ {
3575
+ "kind": "TypeAlias",
3576
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedUsers:type",
3577
+ "docComment": "",
3578
+ "excerptTokens": [
3579
+ {
3580
+ "kind": "Content",
3581
+ "text": "export type PagedUsers = "
3582
+ },
3583
+ {
3584
+ "kind": "Reference",
3585
+ "text": "PagedResponse",
3586
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse:interface"
3587
+ },
3588
+ {
3589
+ "kind": "Content",
3590
+ "text": "<"
3591
+ },
3592
+ {
3593
+ "kind": "Reference",
3594
+ "text": "User",
3595
+ "canonicalReference": "@valiantys/atlassian-app-frontend!User:interface"
3596
+ },
3597
+ {
3598
+ "kind": "Content",
3599
+ "text": ">"
3600
+ },
3601
+ {
3602
+ "kind": "Content",
3603
+ "text": ";"
3604
+ }
3605
+ ],
3606
+ "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/user.d.ts",
3607
+ "releaseTag": "Public",
3608
+ "name": "PagedUsers",
3609
+ "typeTokenRange": {
3610
+ "startIndex": 1,
3611
+ "endIndex": 5
3612
+ }
3613
+ },
3614
+ {
3615
+ "kind": "TypeAlias",
3616
+ "canonicalReference": "@valiantys/atlassian-app-frontend!Precomputation:type",
3617
+ "docComment": "",
3618
+ "excerptTokens": [
3619
+ {
3620
+ "kind": "Content",
3621
+ "text": "export type Precomputation = "
3622
+ },
3623
+ {
3624
+ "kind": "Content",
3625
+ "text": "{\n id: string;\n value: string;\n functionKey: string;\n functionName: string;\n field: string;\n operator: 'not in' | 'in';\n arguments: string[];\n created: string;\n updated: string;\n used: string;\n}"
3626
+ },
3627
+ {
3628
+ "kind": "Content",
3629
+ "text": ";"
3630
+ }
3631
+ ],
3632
+ "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/jql-precomputations.d.ts",
3633
+ "releaseTag": "Public",
3634
+ "name": "Precomputation",
3635
+ "typeTokenRange": {
3636
+ "startIndex": 1,
3637
+ "endIndex": 2
3638
+ }
3639
+ },
3640
+ {
3641
+ "kind": "TypeAlias",
3642
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationPayload:type",
3643
+ "docComment": "",
3644
+ "excerptTokens": [
3645
+ {
3646
+ "kind": "Content",
3647
+ "text": "export type PrecomputationPayload = "
3648
+ },
3649
+ {
3650
+ "kind": "Content",
3651
+ "text": "{\n precomputationId: string;\n clause: {\n field: string;\n type: string[];\n operator: string;\n functionName: string;\n arguments: string[];\n };\n context?: {\n cloudId: string;\n moduleKey: string;\n };\n contextToken?: string;\n}"
3652
+ },
3653
+ {
3654
+ "kind": "Content",
3655
+ "text": ";"
3656
+ }
3657
+ ],
3658
+ "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/jql-precomputations.d.ts",
3659
+ "releaseTag": "Public",
3660
+ "name": "PrecomputationPayload",
3661
+ "typeTokenRange": {
3662
+ "startIndex": 1,
3663
+ "endIndex": 2
3664
+ }
3665
+ },
3666
+ {
3667
+ "kind": "TypeAlias",
3668
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationResponse:type",
3669
+ "docComment": "",
3670
+ "excerptTokens": [
3671
+ {
3672
+ "kind": "Content",
3673
+ "text": "export type PrecomputationResponse = "
3674
+ },
3675
+ {
3676
+ "kind": "Reference",
3677
+ "text": "PagedResponse",
3678
+ "canonicalReference": "@valiantys/atlassian-app-frontend!PagedResponse:interface"
3679
+ },
3680
+ {
3681
+ "kind": "Content",
3682
+ "text": "<"
3683
+ },
3684
+ {
3685
+ "kind": "Reference",
3686
+ "text": "Precomputation",
3687
+ "canonicalReference": "@valiantys/atlassian-app-frontend!Precomputation:type"
3688
+ },
3689
+ {
3690
+ "kind": "Content",
3691
+ "text": ">"
3692
+ },
3693
+ {
3694
+ "kind": "Content",
3695
+ "text": ";"
3696
+ }
3697
+ ],
3698
+ "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/jql-precomputations.d.ts",
3699
+ "releaseTag": "Public",
3700
+ "name": "PrecomputationResponse",
3701
+ "typeTokenRange": {
3702
+ "startIndex": 1,
3703
+ "endIndex": 5
3704
+ }
3705
+ },
3551
3706
  {
3552
3707
  "kind": "TypeAlias",
3553
3708
  "canonicalReference": "@valiantys/atlassian-app-frontend!PrecomputationUpdate:type",
@@ -4243,6 +4398,33 @@
4243
4398
  "endIndex": 2
4244
4399
  }
4245
4400
  },
4401
+ {
4402
+ "kind": "PropertySignature",
4403
+ "canonicalReference": "@valiantys/atlassian-app-frontend!StaticIssueFields#components:member",
4404
+ "docComment": "",
4405
+ "excerptTokens": [
4406
+ {
4407
+ "kind": "Content",
4408
+ "text": "components?: "
4409
+ },
4410
+ {
4411
+ "kind": "Content",
4412
+ "text": "{\n id: string;\n name: string;\n }[]"
4413
+ },
4414
+ {
4415
+ "kind": "Content",
4416
+ "text": ";"
4417
+ }
4418
+ ],
4419
+ "isReadonly": false,
4420
+ "isOptional": true,
4421
+ "releaseTag": "Public",
4422
+ "name": "components",
4423
+ "propertyTypeTokenRange": {
4424
+ "startIndex": 1,
4425
+ "endIndex": 2
4426
+ }
4427
+ },
4246
4428
  {
4247
4429
  "kind": "PropertySignature",
4248
4430
  "canonicalReference": "@valiantys/atlassian-app-frontend!StaticIssueFields#created:member",
@@ -4392,7 +4574,7 @@
4392
4574
  "excerptTokens": [
4393
4575
  {
4394
4576
  "kind": "Content",
4395
- "text": "issuetype: "
4577
+ "text": "issuetype?: "
4396
4578
  },
4397
4579
  {
4398
4580
  "kind": "Content",
@@ -4404,7 +4586,7 @@
4404
4586
  }
4405
4587
  ],
4406
4588
  "isReadonly": false,
4407
- "isOptional": false,
4589
+ "isOptional": true,
4408
4590
  "releaseTag": "Public",
4409
4591
  "name": "issuetype",
4410
4592
  "propertyTypeTokenRange": {
@@ -4500,7 +4682,7 @@
4500
4682
  "excerptTokens": [
4501
4683
  {
4502
4684
  "kind": "Content",
4503
- "text": "project: "
4685
+ "text": "project?: "
4504
4686
  },
4505
4687
  {
4506
4688
  "kind": "Reference",
@@ -4513,7 +4695,7 @@
4513
4695
  }
4514
4696
  ],
4515
4697
  "isReadonly": false,
4516
- "isOptional": false,
4698
+ "isOptional": true,
4517
4699
  "releaseTag": "Public",
4518
4700
  "name": "project",
4519
4701
  "propertyTypeTokenRange": {
@@ -4665,7 +4847,7 @@
4665
4847
  "excerptTokens": [
4666
4848
  {
4667
4849
  "kind": "Content",
4668
- "text": "summary: "
4850
+ "text": "summary?: "
4669
4851
  },
4670
4852
  {
4671
4853
  "kind": "Content",
@@ -4677,7 +4859,7 @@
4677
4859
  }
4678
4860
  ],
4679
4861
  "isReadonly": false,
4680
- "isOptional": false,
4862
+ "isOptional": true,
4681
4863
  "releaseTag": "Public",
4682
4864
  "name": "summary",
4683
4865
  "propertyTypeTokenRange": {
@@ -5057,8 +5239,8 @@
5057
5239
  },
5058
5240
  {
5059
5241
  "kind": "Reference",
5060
- "text": "CreatedIssue",
5061
- "canonicalReference": "@valiantys/atlassian-app-frontend!CreatedIssue:interface"
5242
+ "text": "CreateIssue",
5243
+ "canonicalReference": "@valiantys/atlassian-app-frontend!CreateIssue:interface"
5062
5244
  },
5063
5245
  {
5064
5246
  "kind": "Content",
@@ -5251,6 +5433,42 @@
5251
5433
  "endIndex": 2
5252
5434
  }
5253
5435
  },
5436
+ {
5437
+ "kind": "PropertySignature",
5438
+ "canonicalReference": "@valiantys/atlassian-app-frontend!User#groups:member",
5439
+ "docComment": "",
5440
+ "excerptTokens": [
5441
+ {
5442
+ "kind": "Content",
5443
+ "text": "groups?: "
5444
+ },
5445
+ {
5446
+ "kind": "Content",
5447
+ "text": "{\n items?: "
5448
+ },
5449
+ {
5450
+ "kind": "Reference",
5451
+ "text": "UserGroupName",
5452
+ "canonicalReference": "@valiantys/atlassian-app-frontend!UserGroupName:interface"
5453
+ },
5454
+ {
5455
+ "kind": "Content",
5456
+ "text": "[];\n size?: number;\n }"
5457
+ },
5458
+ {
5459
+ "kind": "Content",
5460
+ "text": ";"
5461
+ }
5462
+ ],
5463
+ "isReadonly": false,
5464
+ "isOptional": true,
5465
+ "releaseTag": "Public",
5466
+ "name": "groups",
5467
+ "propertyTypeTokenRange": {
5468
+ "startIndex": 1,
5469
+ "endIndex": 4
5470
+ }
5471
+ },
5254
5472
  {
5255
5473
  "kind": "PropertySignature",
5256
5474
  "canonicalReference": "@valiantys/atlassian-app-frontend!User#self:member",
@@ -5308,6 +5526,105 @@
5308
5526
  ],
5309
5527
  "extendsTokenRanges": []
5310
5528
  },
5529
+ {
5530
+ "kind": "Interface",
5531
+ "canonicalReference": "@valiantys/atlassian-app-frontend!UserGroupName:interface",
5532
+ "docComment": "",
5533
+ "excerptTokens": [
5534
+ {
5535
+ "kind": "Content",
5536
+ "text": "export interface UserGroupName "
5537
+ }
5538
+ ],
5539
+ "fileUrlPath": "../../jira/shared/util-jira-v3-api/src/lib/user.d.ts",
5540
+ "releaseTag": "Public",
5541
+ "name": "UserGroupName",
5542
+ "preserveMemberOrder": false,
5543
+ "members": [
5544
+ {
5545
+ "kind": "PropertySignature",
5546
+ "canonicalReference": "@valiantys/atlassian-app-frontend!UserGroupName#groupId:member",
5547
+ "docComment": "",
5548
+ "excerptTokens": [
5549
+ {
5550
+ "kind": "Content",
5551
+ "text": "groupId: "
5552
+ },
5553
+ {
5554
+ "kind": "Content",
5555
+ "text": "string"
5556
+ },
5557
+ {
5558
+ "kind": "Content",
5559
+ "text": ";"
5560
+ }
5561
+ ],
5562
+ "isReadonly": false,
5563
+ "isOptional": false,
5564
+ "releaseTag": "Public",
5565
+ "name": "groupId",
5566
+ "propertyTypeTokenRange": {
5567
+ "startIndex": 1,
5568
+ "endIndex": 2
5569
+ }
5570
+ },
5571
+ {
5572
+ "kind": "PropertySignature",
5573
+ "canonicalReference": "@valiantys/atlassian-app-frontend!UserGroupName#name:member",
5574
+ "docComment": "",
5575
+ "excerptTokens": [
5576
+ {
5577
+ "kind": "Content",
5578
+ "text": "name: "
5579
+ },
5580
+ {
5581
+ "kind": "Content",
5582
+ "text": "string"
5583
+ },
5584
+ {
5585
+ "kind": "Content",
5586
+ "text": ";"
5587
+ }
5588
+ ],
5589
+ "isReadonly": false,
5590
+ "isOptional": false,
5591
+ "releaseTag": "Public",
5592
+ "name": "name",
5593
+ "propertyTypeTokenRange": {
5594
+ "startIndex": 1,
5595
+ "endIndex": 2
5596
+ }
5597
+ },
5598
+ {
5599
+ "kind": "PropertySignature",
5600
+ "canonicalReference": "@valiantys/atlassian-app-frontend!UserGroupName#self:member",
5601
+ "docComment": "",
5602
+ "excerptTokens": [
5603
+ {
5604
+ "kind": "Content",
5605
+ "text": "self: "
5606
+ },
5607
+ {
5608
+ "kind": "Content",
5609
+ "text": "string"
5610
+ },
5611
+ {
5612
+ "kind": "Content",
5613
+ "text": ";"
5614
+ }
5615
+ ],
5616
+ "isReadonly": false,
5617
+ "isOptional": false,
5618
+ "releaseTag": "Public",
5619
+ "name": "self",
5620
+ "propertyTypeTokenRange": {
5621
+ "startIndex": 1,
5622
+ "endIndex": 2
5623
+ }
5624
+ }
5625
+ ],
5626
+ "extendsTokenRanges": []
5627
+ },
5311
5628
  {
5312
5629
  "kind": "Interface",
5313
5630
  "canonicalReference": "@valiantys/atlassian-app-frontend!UserPickerQueryResponse:interface",