@lessly/sdk-app 61.1.0 → 62.0.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.
@@ -84427,14 +84427,6 @@ export interface OrganizationBillingBudgetsGetOutput {
84427
84427
  [k: string]: unknown
84428
84428
  }
84429
84429
 
84430
- export interface OrganizationBillingBudgetsSetInput {
84431
- ceiling_minor: number
84432
- }
84433
-
84434
- export interface OrganizationBillingBudgetsSetOutput {
84435
- [k: string]: unknown
84436
- }
84437
-
84438
84430
  export interface OrganizationBillingCapsClearInput {
84439
84431
  productId: string
84440
84432
  }
@@ -84564,10 +84556,13 @@ config: {
84564
84556
  origin: ("product" | "org")
84565
84557
  status: string
84566
84558
  provider: string
84559
+ reauthAt: (string | null)
84567
84560
  createdAt: string
84568
84561
  customerId: (string | null)
84569
84562
  externalId: string
84570
84563
  displayName: string
84564
+ needsReauth: boolean
84565
+ reauthReason: (string | null)
84571
84566
  }[]
84572
84567
 
84573
84568
  export interface OrganizationConnectorsListAttachmentsInput {
@@ -84593,8 +84588,11 @@ export type OrganizationConnectorsListAvailableOutput = {
84593
84588
  id: string
84594
84589
  status: string
84595
84590
  provider: string
84591
+ reauthAt: (string | null)
84596
84592
  externalId: string
84597
84593
  displayName: string
84594
+ needsReauth: boolean
84595
+ reauthReason: (string | null)
84598
84596
  requestStatus: (("pending" | "denied") | null)
84599
84597
  organizationId: string
84600
84598
  }[]
@@ -84610,9 +84608,12 @@ config: {
84610
84608
  }
84611
84609
  status: string
84612
84610
  provider: string
84611
+ reauthAt: (string | null)
84613
84612
  createdAt: string
84614
84613
  externalId: string
84615
84614
  displayName: string
84615
+ needsReauth: boolean
84616
+ reauthReason: (string | null)
84616
84617
  organizationId: string
84617
84618
  attachedProducts: {
84618
84619
  createdAt: string
@@ -84660,8 +84661,8 @@ status: string
84660
84661
 
84661
84662
  export interface OrganizationCreateInput {
84662
84663
  name: string
84663
- legalName?: string
84664
- ownerName?: string
84664
+ legalName: string
84665
+ ownerName: string
84665
84666
  /**
84666
84667
  * @maxItems 50
84667
84668
  */
@@ -84670,9 +84671,9 @@ name: string
84670
84671
  country: string
84671
84672
  share_pct: number
84672
84673
  }[]
84673
- residencyCountry?: string
84674
+ residencyCountry: string
84674
84675
  ownershipConfirmed?: boolean
84675
- countryOfIncorporation?: string
84676
+ countryOfIncorporation: string
84676
84677
  }
84677
84678
 
84678
84679
  export interface OrganizationCreateOutput {
@@ -84833,6 +84834,152 @@ export interface OrganizationGoogleadsInstallOutput {
84833
84834
  url: string
84834
84835
  }
84835
84836
 
84837
+ export interface OrganizationGroupsCreateInput {
84838
+ name: string
84839
+ orgId: string
84840
+ description?: string
84841
+ }
84842
+
84843
+ export interface OrganizationGroupsCreateOutput {
84844
+ id: string
84845
+ name: string
84846
+ grants: {
84847
+ roleId: string
84848
+ productId: string
84849
+ }[]
84850
+ members: {
84851
+ userId: string
84852
+ }[]
84853
+ createdAt: string
84854
+ updatedAt: string
84855
+ description: (string | null)
84856
+ organizationId: string
84857
+ }
84858
+
84859
+ export interface OrganizationGroupsDeleteInput {
84860
+ orgId: string
84861
+ groupId: string
84862
+ }
84863
+
84864
+ export interface OrganizationGroupsDeleteOutput {
84865
+ [k: string]: unknown
84866
+ }
84867
+
84868
+ export interface OrganizationGroupsGetInput {
84869
+ orgId: string
84870
+ groupId: string
84871
+ }
84872
+
84873
+ export interface OrganizationGroupsGetOutput {
84874
+ id: string
84875
+ name: string
84876
+ grants: {
84877
+ roleId: string
84878
+ productId: string
84879
+ }[]
84880
+ members: {
84881
+ userId: string
84882
+ }[]
84883
+ createdAt: string
84884
+ updatedAt: string
84885
+ description: (string | null)
84886
+ organizationId: string
84887
+ }
84888
+
84889
+ export interface OrganizationGroupsGrantRemoveInput {
84890
+ orgId: string
84891
+ groupId: string
84892
+ productId: string
84893
+ }
84894
+
84895
+ export interface OrganizationGroupsGrantRemoveOutput {
84896
+ [k: string]: unknown
84897
+ }
84898
+
84899
+ export interface OrganizationGroupsGrantSetInput {
84900
+ orgId: string
84901
+ roleId: string
84902
+ groupId: string
84903
+ productId: string
84904
+ }
84905
+
84906
+ export interface OrganizationGroupsGrantSetOutput {
84907
+ [k: string]: unknown
84908
+ }
84909
+
84910
+ export interface OrganizationGroupsListInput {
84911
+ orgId: string
84912
+ }
84913
+
84914
+ export interface OrganizationGroupsListOutput {
84915
+ groups: {
84916
+ id: string
84917
+ name: string
84918
+ grants: {
84919
+ roleId: string
84920
+ productId: string
84921
+ }[]
84922
+ members: {
84923
+ userId: string
84924
+ }[]
84925
+ createdAt: string
84926
+ updatedAt: string
84927
+ description: (string | null)
84928
+ organizationId: string
84929
+ }[]
84930
+ }
84931
+
84932
+ export interface OrganizationGroupsMemberAddInput {
84933
+ orgId: string
84934
+ userId: string
84935
+ groupId: string
84936
+ }
84937
+
84938
+ export interface OrganizationGroupsMemberAddOutput {
84939
+ [k: string]: unknown
84940
+ }
84941
+
84942
+ export interface OrganizationGroupsMemberRemoveInput {
84943
+ orgId: string
84944
+ userId: string
84945
+ groupId: string
84946
+ }
84947
+
84948
+ export interface OrganizationGroupsMemberRemoveOutput {
84949
+ [k: string]: unknown
84950
+ }
84951
+
84952
+ export interface OrganizationGroupsUpdateInput {
84953
+ name?: string
84954
+ orgId: string
84955
+ groupId: string
84956
+ description?: (string | null)
84957
+ }
84958
+
84959
+ export interface OrganizationGroupsUpdateOutput {
84960
+ id: string
84961
+ name: string
84962
+ grants: {
84963
+ roleId: string
84964
+ productId: string
84965
+ }[]
84966
+ members: {
84967
+ userId: string
84968
+ }[]
84969
+ createdAt: string
84970
+ updatedAt: string
84971
+ description: (string | null)
84972
+ organizationId: string
84973
+ }
84974
+
84975
+ export interface OrganizationLinkedinMemberInstallInput {
84976
+
84977
+ }
84978
+
84979
+ export interface OrganizationLinkedinMemberInstallOutput {
84980
+ url: string
84981
+ }
84982
+
84836
84983
  export interface OrganizationListInput {
84837
84984
 
84838
84985
  }
@@ -84843,6 +84990,7 @@ id: string
84843
84990
  name: string
84844
84991
  role: ("owner" | "admin" | "member")
84845
84992
  active: boolean
84993
+ logoUrl: (string | null)
84846
84994
  blockedAt: (string | null)
84847
84995
  blockReason: (("no_subscription" | "under_review") | null)
84848
84996
  }[]
@@ -84950,21 +85098,28 @@ name: string
84950
85098
  role: string
84951
85099
  slug: string
84952
85100
  isCustom: boolean
85101
+ viaGroup: ({
85102
+ id: string
85103
+ name: string
85104
+ } | null)
84953
85105
  expiresAt: (string | null)
84954
85106
  productId: string
84955
85107
  sourceRole: ({
84956
85108
  id: string
84957
85109
  name: string
84958
85110
  } | null)
85111
+ viaGroupId: (string | null)
84959
85112
  grantSource: string
84960
85113
  permissions: ({
84961
85114
  deny: string[]
84962
85115
  allow: string[]
84963
85116
  } | null)
85117
+ directGrantRole: (string | null)
84964
85118
  effectivePermissions: {
84965
85119
  deny: string[]
84966
85120
  allow: string[]
84967
85121
  }
85122
+ directGrantNotInForce: boolean
84968
85123
  }[]
84969
85124
  }
84970
85125
 
@@ -85077,6 +85232,7 @@ name: string
85077
85232
  role: string
85078
85233
  slug: string
85079
85234
  demoAt: (string | null)
85235
+ region: string
85080
85236
  status: string
85081
85237
  logoUrl: (string | null)
85082
85238
  blockedAt: (string | null)
@@ -85097,6 +85253,7 @@ name: string
85097
85253
  role: string
85098
85254
  slug: string
85099
85255
  demoAt: (string | null)
85256
+ region: string
85100
85257
  status: string
85101
85258
  logoUrl: (string | null)
85102
85259
  blockedAt: (string | null)
@@ -85128,7 +85285,6 @@ displayName: (string | null)
85128
85285
  orgRoles: {
85129
85286
  id: string
85130
85287
  name: string
85131
- description: (string | null)
85132
85288
  }[]
85133
85289
  canManage: boolean
85134
85290
  inherited: {
@@ -85179,6 +85335,19 @@ productId: (string | null)
85179
85335
  }[]
85180
85336
  }
85181
85337
 
85338
+ export interface OrganizationProductMeInput {
85339
+ productId: string
85340
+ }
85341
+
85342
+ export interface OrganizationProductMeOutput {
85343
+ deny: string[]
85344
+ role: string
85345
+ allow: string[]
85346
+ roleId: (string | null)
85347
+ roleName: (string | null)
85348
+ roleType: (("system" | "custom") | null)
85349
+ }
85350
+
85182
85351
  export interface OrganizationProductRevokeAccessInput {
85183
85352
  userId: string
85184
85353
  productId: string
@@ -85223,6 +85392,7 @@ name: string
85223
85392
  role: string
85224
85393
  slug: string
85225
85394
  demoAt: (string | null)
85395
+ region: string
85226
85396
  status: string
85227
85397
  logoUrl: (string | null)
85228
85398
  blockedAt: (string | null)
@@ -85338,6 +85508,14 @@ publicUrl: string
85338
85508
  }[]
85339
85509
  }
85340
85510
 
85511
+ export interface OrganizationRedditInstallInput {
85512
+
85513
+ }
85514
+
85515
+ export interface OrganizationRedditInstallOutput {
85516
+ url: string
85517
+ }
85518
+
85341
85519
  export interface OrganizationRolesCreateInput {
85342
85520
  deny?: string[]
85343
85521
  name: string
@@ -85446,6 +85624,7 @@ title: string
85446
85624
  export interface OrganizationSupportThreadCreateOutput {
85447
85625
  id: string
85448
85626
  title: string
85627
+ legacy: boolean
85449
85628
  status: string
85450
85629
  category: ("open" | "pending" | "resolved" | "closed")
85451
85630
  messages: {
@@ -85458,6 +85637,7 @@ name: string
85458
85637
  createdAt: string
85459
85638
  }[]
85460
85639
  createdAt: string
85640
+ openedByName: string
85461
85641
  lastMessageAt: string
85462
85642
  lastMessagePreview: (string | null)
85463
85643
  }
@@ -85469,6 +85649,7 @@ id: string
85469
85649
  export interface OrganizationSupportThreadGetOutput {
85470
85650
  id: string
85471
85651
  title: string
85652
+ legacy: boolean
85472
85653
  status: string
85473
85654
  category: ("open" | "pending" | "resolved" | "closed")
85474
85655
  messages: {
@@ -85481,6 +85662,7 @@ name: string
85481
85662
  createdAt: string
85482
85663
  }[]
85483
85664
  createdAt: string
85665
+ openedByName: string
85484
85666
  lastMessageAt: string
85485
85667
  lastMessagePreview: (string | null)
85486
85668
  }
@@ -85493,6 +85675,7 @@ body: string
85493
85675
  export interface OrganizationSupportThreadReplyOutput {
85494
85676
  id: string
85495
85677
  title: string
85678
+ legacy: boolean
85496
85679
  status: string
85497
85680
  category: ("open" | "pending" | "resolved" | "closed")
85498
85681
  messages: {
@@ -85505,6 +85688,7 @@ name: string
85505
85688
  createdAt: string
85506
85689
  }[]
85507
85690
  createdAt: string
85691
+ openedByName: string
85508
85692
  lastMessageAt: string
85509
85693
  lastMessagePreview: (string | null)
85510
85694
  }
@@ -85517,14 +85701,32 @@ export interface OrganizationSupportThreadsListOutput {
85517
85701
  threads: {
85518
85702
  id: string
85519
85703
  title: string
85704
+ legacy: boolean
85520
85705
  status: string
85521
85706
  category: ("open" | "pending" | "resolved" | "closed")
85522
85707
  createdAt: string
85708
+ openedByName: string
85523
85709
  lastMessageAt: string
85524
85710
  lastMessagePreview: (string | null)
85525
85711
  }[]
85526
85712
  }
85527
85713
 
85714
+ export interface OrganizationXInstallInput {
85715
+
85716
+ }
85717
+
85718
+ export interface OrganizationXInstallOutput {
85719
+ url: string
85720
+ }
85721
+
85722
+ export interface OrganizationYoutubeInstallInput {
85723
+
85724
+ }
85725
+
85726
+ export interface OrganizationYoutubeInstallOutput {
85727
+ url: string
85728
+ }
85729
+
85528
85730
  export interface PlaygroundAnalyticsOverviewInput {
85529
85731
  /**
85530
85732
  * Max records per entity in recent[]; omit for the endpoint default