@messenger-box/platform-client 10.0.3-alpha.16 → 10.0.3-alpha.160

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 (70) hide show
  1. package/CHANGELOG.md +224 -0
  2. package/lib/graphql/fragments/post-message.gql +36 -0
  3. package/lib/graphql/id-generation.js.map +1 -1
  4. package/lib/graphql/index.js.map +1 -1
  5. package/lib/graphql/mutations/channel-mutation.gql +5 -0
  6. package/lib/graphql/mutations/messages-mutation.gql +29 -0
  7. package/lib/graphql/policies/channel-policies.d.ts.map +1 -1
  8. package/lib/graphql/policies/channel-policies.js +150 -2
  9. package/lib/graphql/policies/channel-policies.js.map +1 -1
  10. package/lib/graphql/policies/messages-policies.d.ts.map +1 -1
  11. package/lib/graphql/policies/messages-policies.js +229 -37
  12. package/lib/graphql/policies/messages-policies.js.map +1 -1
  13. package/lib/graphql/policies/post-thread-policies.d.ts.map +1 -1
  14. package/lib/graphql/policies/post-thread-policies.js +136 -31
  15. package/lib/graphql/policies/post-thread-policies.js.map +1 -1
  16. package/lib/graphql/policies/posts-policies.js.map +1 -1
  17. package/lib/graphql/policies/teams-policies.d.ts.map +1 -1
  18. package/lib/graphql/policies/teams-policies.js +13 -1
  19. package/lib/graphql/policies/teams-policies.js.map +1 -1
  20. package/lib/graphql/policies/user-account-policies.js.map +1 -1
  21. package/lib/graphql/policies/user-policies.js.map +1 -1
  22. package/lib/graphql/queries/channels-by-user.gql +26 -0
  23. package/lib/graphql/queries/messages.gql +2 -2
  24. package/lib/graphql/queries/organization-query.gql +70 -35
  25. package/lib/graphql/queries/post-thread-message.gql +4 -0
  26. package/lib/graphql/queries/teams-query.gql +29 -29
  27. package/lib/graphql/queries/user-account.gql +1 -1
  28. package/lib/graphql/queries/users.gql +1 -1
  29. package/lib/graphql/schema/index.js.map +1 -1
  30. package/lib/graphql/subscription/fileUpdated.gql +11 -0
  31. package/lib/graphql/subscription/sandboxError.gql +17 -0
  32. package/lib/hooks/use-base-file-upload.hook.d.ts.map +1 -1
  33. package/lib/hooks/use-upload-file.hook.d.ts +1 -1
  34. package/lib/hooks/use-upload-file.hook.d.ts.map +1 -1
  35. package/lib/hooks/use-upload-file.hook.js +1 -1
  36. package/lib/hooks/use-upload-file.hook.js.map +1 -1
  37. package/lib/hooks/use-upload-file.hook.native.d.ts +1 -1
  38. package/lib/hooks/use-upload-file.hook.native.d.ts.map +1 -1
  39. package/lib/hooks/use-upload-file.hook.native.js +1 -1
  40. package/lib/hooks/use-upload-file.hook.native.js.map +1 -1
  41. package/lib/hooks/use-upload-files.hook.d.ts +1 -1
  42. package/lib/hooks/use-upload-files.hook.d.ts.map +1 -1
  43. package/lib/hooks/use-upload-files.hook.js +1 -1
  44. package/lib/hooks/use-upload-files.hook.js.map +1 -1
  45. package/lib/hooks/use-upload-files.hook.native.d.ts +1 -1
  46. package/lib/hooks/use-upload-files.hook.native.d.ts.map +1 -1
  47. package/lib/hooks/use-upload-files.hook.native.js +1 -1
  48. package/lib/hooks/use-upload-files.hook.native.js.map +1 -1
  49. package/lib/utils/index.d.ts.map +1 -1
  50. package/lib/utils/index.js.map +1 -1
  51. package/package.json +4 -4
  52. package/src/graphql/fragments/post-message.gql +36 -0
  53. package/src/graphql/mutations/channel-mutation.gql +5 -0
  54. package/src/graphql/mutations/messages-mutation.gql +3 -0
  55. package/src/graphql/policies/channel-policies.ts +148 -2
  56. package/src/graphql/policies/messages-policies.ts +251 -39
  57. package/src/graphql/policies/post-thread-policies.ts +151 -31
  58. package/src/graphql/policies/teams-policies.ts +13 -1
  59. package/src/graphql/queries/channels-by-user.gql +26 -0
  60. package/src/graphql/queries/messages.gql +2 -2
  61. package/src/graphql/queries/organization-query.gql +70 -35
  62. package/src/graphql/queries/post-thread-message.gql +4 -0
  63. package/src/graphql/queries/teams-query.gql +29 -29
  64. package/src/graphql/queries/user-account.gql +1 -1
  65. package/src/graphql/queries/users.gql +1 -1
  66. package/src/graphql/subscription/fileUpdated.gql +11 -0
  67. package/src/hooks/use-upload-file.hook.native.ts +1 -1
  68. package/src/hooks/use-upload-file.hook.ts +1 -1
  69. package/src/hooks/use-upload-files.hook.native.ts +1 -1
  70. package/src/hooks/use-upload-files.hook.ts +1 -1
@@ -1,56 +1,91 @@
1
1
  query GetOrganizationDetail($where: OrgDetailWhere!) {
2
2
  getOrganizationDetail(where: $where) {
3
- createdAt
4
- description
5
3
  id
4
+ name
5
+ title
6
+ description
7
+ picture
8
+ orgUserCount
9
+ status
10
+ periodStart
11
+ periodStop
12
+ createdAt
13
+ updatedAt
14
+ billingEmail
15
+ stripeId
16
+ stripeSubscription
17
+ erpId
18
+ costCenter
19
+ legalEntityName
20
+ taxId
21
+ organizationType
22
+ organizationCategory
23
+ settings
6
24
  invitations {
7
- active
8
- acceptedAt
9
- createdAt
25
+ id
10
26
  email
27
+ roles
28
+ status
11
29
  fullName
12
- id
13
- invitedBy
14
- teamId
15
- updatedAt
16
- tokenExpiration
17
- role
18
30
  inviteCount
31
+ invitedBy {
32
+ id
33
+ email
34
+ username
35
+ givenName
36
+ familyName
37
+ picture
38
+ }
39
+ inviteLink
40
+ createdAt
41
+ updatedAt
42
+ acceptedAt
43
+ sent
44
+ expiresAt
45
+ team {
46
+ id
47
+ name
48
+ title
49
+ }
19
50
  }
20
- name
21
- orgMembers {
51
+ members {
52
+ id
53
+ email
54
+ displayName
55
+ roles
56
+ status
57
+ lastVisited
58
+ joinedAt
59
+ createdAt
60
+ updatedAt
22
61
  crossCheckEmail
23
- inactive
24
- orgName
25
62
  user {
63
+ id
26
64
  email
65
+ username
66
+ givenName
67
+ familyName
68
+ picture
27
69
  alias
28
70
  emailVerified
29
- id
30
- username
31
71
  }
32
- roles
33
- userId
34
72
  }
35
- orgUserCount
36
- periodStart
37
- periodStop
38
- picture
39
- status
40
- title
41
- updatedAt
42
73
  }
43
74
  }
44
75
 
45
-
46
-
47
-
48
- query GetOrganizationMembersWithChannels($orgName: String,$role: String, $channelCriteria: AnyObject,$offset: Int, $limit: Int, $sort: Sort) {
49
- getOrganizationMembers(offset: $offset, limit: $limit, orgName: $orgName) {
76
+ query GetOrganizationMembersWithChannels($orgId: ID, $orgName: String, $role: String, $channelCriteria: AnyObject, $offset: Int, $limit: Int, $sort: Sort) {
77
+ getOrganizationMembers(offset: $offset, limit: $limit, orgId: $orgId, orgName: $orgName) {
50
78
  totalCount
51
79
  data {
80
+ _id
52
81
  userId
53
82
  roles
83
+ inactive
84
+ orgName
85
+ crossCheckEmail
86
+ teamNames
87
+ lastVisited
88
+ isSelf
54
89
  user {
55
90
  id
56
91
  givenName
@@ -59,11 +94,11 @@ query GetOrganizationMembersWithChannels($orgName: String,$role: String, $channe
59
94
  username
60
95
  email
61
96
  alias
97
+ emailVerified
62
98
  }
63
- teamNames
64
99
  }
65
- }
66
- channelsByUser(role: $role, criteria: $channelCriteria, limit: $limit, skip: $offset, sort: $sort) {
100
+ }
101
+ channelsByUser(role: $role, criteria: $channelCriteria, limit: $limit, skip: $offset, sort: $sort) {
67
102
  id
68
103
  title
69
104
  description
@@ -85,6 +120,6 @@ query GetOrganizationMembersWithChannels($orgName: String,$role: String, $channe
85
120
  }
86
121
 
87
122
  query GetOrganizationSharableLink($teamId: String) {
88
- getOrganizationSharableLink(teamId: $teamId)
123
+ getOrganizationSharableLink(teamId: $teamId)
89
124
  }
90
125
 
@@ -18,3 +18,7 @@ query GetPostThread($postThreadId: ID, $channelId: ID, $postParentId: ID, $role:
18
18
  }
19
19
  }
20
20
  }
21
+
22
+ query ThreadMessagesCount($channelId: ID, $postParentId: ID, $role: String, $participantsIds: [String], $selectedFields: String, $isServiceThreads: Boolean) {
23
+ threadMessagesCount(channelId: $channelId, postParentId: $postParentId, role: $role, participantsIds: $participantsIds, selectedFields: $selectedFields, isServiceThreads: $isServiceThreads)
24
+ }
@@ -1,32 +1,32 @@
1
1
 
2
2
 
3
- query GetOrganizationTeam($orgName: String!, $teamName: String!) {
4
- getTeam(orgName: $orgName, teamName: $teamName) {
5
- title
6
- orgName
7
- name
8
- id
9
- createdAt
10
- updatedAt
11
- _id
12
- teamMembers:members {
13
- id
14
- name
15
- email
16
- username
17
- userId
18
- status
19
- role
3
+ query GetOrganizationTeam($orgName: String!, $teamId: ID!) {
4
+ getTeam(orgName: $orgName, teamId: $teamId) {
5
+ id
6
+ name
7
+ title
8
+ description
9
+ tags
10
+ createdAt
11
+ updatedAt
12
+ organization {
13
+ id
14
+ name
15
+ title
16
+ }
17
+ teamMembers:members {
18
+ id
19
+ roles
20
+ status
21
+ joinedAt
22
+ user {
23
+ id
24
+ email
25
+ username
26
+ givenName
27
+ familyName
28
+ picture
29
+ }
30
+ }
20
31
  }
21
- members {
22
- id
23
- name
24
- email
25
- username
26
- userId
27
- status
28
- role
29
- }
30
- }
31
- }
32
-
32
+ }
@@ -1,4 +1,4 @@
1
- query UserAccount($userId:String!){
1
+ query UserAccount($userId:ID!){
2
2
  getUserAccount(userId:$userId ){
3
3
  ...MessengerUser
4
4
  }
@@ -4,7 +4,7 @@ query GetAllUsers {
4
4
  }
5
5
  }
6
6
 
7
- query GetUserById($userId: String!) {
7
+ query GetUserById($userId: ID!) {
8
8
  getUserAccount(userId: $userId) {
9
9
  ...MinimalUser
10
10
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../../src/graphql/schema/index.ts"],"sourcesContent":[null],"names":[],"mappings":"qJAIM,MAAA,MAAM,GAAG,CAAC,UAAU,EAAC,iBAAiB,EAAC,cAAc"}
1
+ {"version":3,"file":"index.js","sources":["../../../src/graphql/schema/index.ts"],"sourcesContent":[null],"names":[],"mappings":"qJAIA,MAAM,MAAM,GAAG,CAAC,UAAU,EAAC,iBAAiB,EAAC,cAAc"}
@@ -0,0 +1,11 @@
1
+ subscription FileUpdated($projectId: String!) {
2
+ fileUpdated(projectId: $projectId) {
3
+ projectId
4
+ messageId
5
+ filePath
6
+ content
7
+ operation
8
+ timestamp
9
+ syncStatus
10
+ }
11
+ }
@@ -0,0 +1,17 @@
1
+ subscription SandboxError($projectId: String!) {
2
+ sandboxError(projectId: $projectId) {
3
+ projectId
4
+ sandboxId
5
+ error {
6
+ id
7
+ projectId
8
+ sandboxId
9
+ errorType
10
+ message
11
+ stack
12
+ timestamp
13
+ url
14
+ fixable
15
+ }
16
+ }
17
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"use-base-file-upload.hook.d.ts","sourceRoot":"","sources":["../../src/hooks/use-base-file-upload.hook.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,QAAQ,CAAC;AAEvD,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,SAAS;IAC/C,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,WAAW,GAAG,WAAW,CAAC,CAAC;IAC1C,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,EAAE,WAAW,CAAC;CACtB;AAED,MAAM,WAAW,UAAW,SAAQ,IAAI;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,mBAAmB,CAAC,CAAC,EAAE,CAAC;IACrC,IAAI,EAAE,SAAS,GAAG,SAAS,EAAE,CAAC;IAC9B,gBAAgB,CAAC,EAAE;QACf,SAAS,EAAE,CAAC,CAAC;KAChB,GAAG,mBAAmB,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE;QACf,SAAS,EAAE,CAAC,CAAC;KAChB,GAAG,mBAAmB,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;CACnC;AAED,MAAM,WAAW,sBAAsB,CAAC,CAAC,EAAE,CAAC;IACxC,WAAW,EAAE,CAAC,CAAC,GAAG,SAAS,EAAE,OAAO,EAAE,mBAAmB,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC;IACrG,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,WAAW,CAAC;IACnB,aAAa,EAAE,aAAa,CAAC;IAC7B,MAAM,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IAC1B,MAAM,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,qBAAqB,CAAC,CAAC,EAAE,CAAC;IACvC,gBAAgB,EAAE;QACd,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,GAAG,CAAC;QACd,gBAAgB,EAAE,CAAC,IAAI,EAAE,UAAU,GAAG,UAAU,EAAE,EAAE,SAAS,CAAC,EAAE,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACjG,CAAC;IACF,gBAAgB,EAAE;QACd,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,GAAG,CAAC;QACd,gBAAgB,EAAE,CAAC,IAAI,EAAE,kBAAkB,GAAG,kBAAkB,EAAE,EAAE,SAAS,CAAC,EAAE,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACjH,CAAC;CACL;AAED,eAAO,MAAM,iBAAiB,GAAI,CAAC,EAAE,CAAC,WAAW,qBAAqB,CAAC,CAAC,EAAE,CAAC,CAAC,KAAG,sBAAsB,CAAC,CAAC,EAAE,CAAC,CAgGzG,CAAC"}
1
+ {"version":3,"file":"use-base-file-upload.hook.d.ts","sourceRoot":"","sources":["../../src/hooks/use-base-file-upload.hook.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAE9C,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,QAAQ,CAAC;AAEvD,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,SAAS;IAC/C,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAE,WAAW,GAAG,WAAW,CAAC,CAAC;IAC1C,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,EAAE,WAAW,CAAC;CACtB;AAED,MAAM,WAAW,UAAW,SAAQ,IAAI;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,mBAAmB,CAAC,CAAC,EAAE,CAAC;IACrC,IAAI,EAAE,SAAS,GAAG,SAAS,EAAE,CAAC;IAC9B,gBAAgB,CAAC,EAAE;QACf,SAAS,EAAE,CAAC,CAAC;KAChB,GAAG,mBAAmB,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;IAChC,gBAAgB,CAAC,EAAE;QACf,SAAS,EAAE,CAAC,CAAC;KAChB,GAAG,mBAAmB,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;CACnC;AAED,MAAM,WAAW,sBAAsB,CAAC,CAAC,EAAE,CAAC;IACxC,WAAW,EAAE,CAAC,CAAC,GAAG,SAAS,EAAE,OAAO,EAAE,mBAAmB,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC;IACrG,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,WAAW,CAAC;IACnB,aAAa,EAAE,aAAa,CAAC;IAC7B,MAAM,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IAC1B,MAAM,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,qBAAqB,CAAC,CAAC,EAAE,CAAC;IACvC,gBAAgB,EAAE;QACd,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,GAAG,CAAC;QACd,gBAAgB,EAAE,CAAC,IAAI,EAAE,UAAU,GAAG,UAAU,EAAE,EAAE,SAAS,CAAC,EAAE,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACjG,CAAC;IACF,gBAAgB,EAAE;QACd,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,GAAG,CAAC;QACd,gBAAgB,EAAE,CAAC,IAAI,EAAE,kBAAkB,GAAG,kBAAkB,EAAE,EAAE,SAAS,CAAC,EAAE,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACjH,CAAC;CACL;AAED,eAAO,MAAM,iBAAiB,GAAI,CAAC,EAAE,CAAC,EAAE,SAAS,qBAAqB,CAAC,CAAC,EAAE,CAAC,CAAC,KAAG,sBAAsB,CAAC,CAAC,EAAE,CAAC,CAgGzG,CAAC"}
@@ -1,3 +1,3 @@
1
- import { useUploadFile as useBaseUploadFile } from '@container-stack/file-info-client/lib/hooks/use-upload-file.js';
1
+ import { useUploadFile as useBaseUploadFile } from '@adminide-stack/file-info-client/lib/hooks/use-upload-file.js';
2
2
  export declare const useUploadFile: () => ReturnType<typeof useBaseUploadFile>;
3
3
  //# sourceMappingURL=use-upload-file.hook.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-file.hook.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-file.hook.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,IAAI,iBAAiB,EAAE,MAAM,gEAAgE,CAAC;AAGpH,eAAO,MAAM,aAAa,QAAO,UAAU,CAAC,OAAO,iBAAiB,CAkB9D,CAAC"}
1
+ {"version":3,"file":"use-upload-file.hook.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-file.hook.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,IAAI,iBAAiB,EAAE,MAAM,+DAA+D,CAAC;AAGnH,eAAO,MAAM,aAAa,QAAO,UAAU,CAAC,OAAO,iBAAiB,CAkB9D,CAAC"}
@@ -1,4 +1,4 @@
1
- import {useUploadFile as useUploadFile$1}from'@container-stack/file-info-client/lib/hooks/use-upload-file.js';import {useAttachUploadedFileToMessageMutation,useCreateMessageFileUploadLinkMutation}from'common/graphql';const useUploadFile = () => useUploadFile$1({
1
+ import {useUploadFile as useUploadFile$1}from'@adminide-stack/file-info-client/lib/hooks/use-upload-file.js';import {useAttachUploadedFileToMessageMutation,useCreateMessageFileUploadLinkMutation}from'common/graphql';const useUploadFile = () => useUploadFile$1({
2
2
  createUploadLink: {
3
3
  name: 'createMessageFileUploadLink',
4
4
  mutation: useCreateMessageFileUploadLinkMutation,
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-file.hook.js","sources":["../../src/hooks/use-upload-file.hook.ts"],"sourcesContent":[null],"names":["useBaseUploadFile"],"mappings":"+NAGa,aAAa,GAAG,MACzBA,eAAiB,CAAC;AACd,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAmC;AACnC,IAAA,QAAA,EAAA,sCAAgD;oBAChC,EAAA,CAAA,IAAG,EAAI,eAAa;cACxB,EAAA,KAAA,CAAE,OAAM,CAAA,IAAA,CAAO,GAAK,IAAE,CAAC,CAAC,OAAO,GAAE,IAAK,CAAC,IAAK;AACpD,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAmC;AACnC,IAAA,QAAA,EAAA,sCAAgD;oBAChC,EAAA,CAAA,IAAG,EAAI,eAAa;;AAEhC,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD;AACJ,CAAA"}
1
+ {"version":3,"file":"use-upload-file.hook.js","sources":["../../src/hooks/use-upload-file.hook.ts"],"sourcesContent":[null],"names":["useBaseUploadFile"],"mappings":"8NAGa,aAAa,GAAG,MACzBA,eAAiB,CAAC;AACd,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAM;AACN,IAAA,QAAA,EAAA,sCAAU;oBACV,EAAA,CAAA,IAAmB,EAAA,eAAiB;cAChC,EAAA,KAAQ,CAAE,OAAM,CAAA,IAAA,CAAO,GAAC,IAAM,CAAC,CAAC,OAAO,GAAE,IAAK,CAAC,IAAC;AAChD,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAM;AACN,IAAA,QAAA,EAAA,sCAAU;oBACV,EAAA,CAAA,IAAmB,EAAA,eAAiB;;AAEhC,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C;AACJ,CAAA"}
@@ -1,3 +1,3 @@
1
- import { useUploadFile as useBaseUploadFile } from '@container-stack/file-info-client/lib/hooks/use-file-upload.native.js';
1
+ import { useUploadFile as useBaseUploadFile } from '@adminide-stack/file-info-client/lib/hooks/use-file-upload.native.js';
2
2
  export declare const useUploadFile: () => ReturnType<typeof useBaseUploadFile>;
3
3
  //# sourceMappingURL=use-upload-file.hook.native.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-file.hook.native.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-file.hook.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,IAAI,iBAAiB,EAAE,MAAM,uEAAuE,CAAC;AAG3H,eAAO,MAAM,aAAa,QAAO,UAAU,CAAC,OAAO,iBAAiB,CAkB9D,CAAC"}
1
+ {"version":3,"file":"use-upload-file.hook.native.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-file.hook.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,IAAI,iBAAiB,EAAE,MAAM,sEAAsE,CAAC;AAG1H,eAAO,MAAM,aAAa,QAAO,UAAU,CAAC,OAAO,iBAAiB,CAkB9D,CAAC"}
@@ -1,4 +1,4 @@
1
- import {useUploadFile as useUploadFile$1}from'@container-stack/file-info-client/lib/hooks/use-file-upload.native.js';import {useAttachUploadedFileToMessageMutation,useCreateMessageFileUploadLinkMutation}from'common/graphql';const useUploadFile = () => useUploadFile$1({
1
+ import {useUploadFile as useUploadFile$1}from'@adminide-stack/file-info-client/lib/hooks/use-file-upload.native.js';import {useAttachUploadedFileToMessageMutation,useCreateMessageFileUploadLinkMutation}from'common/graphql';const useUploadFile = () => useUploadFile$1({
2
2
  createUploadLink: {
3
3
  name: 'createMessageFileUploadLink',
4
4
  mutation: useCreateMessageFileUploadLinkMutation,
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-file.hook.native.js","sources":["../../src/hooks/use-upload-file.hook.native.ts"],"sourcesContent":[null],"names":["useBaseUploadFile"],"mappings":"sOAGa,aAAa,GAAG,MACzBA,eAAiB,CAAC;AACd,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAmC;AACnC,IAAA,QAAA,EAAA,sCAAgD;oBAChC,EAAA,CAAA,IAAG,EAAI,eAAa;cACxB,EAAA,KAAA,CAAE,OAAM,CAAA,IAAA,CAAO,GAAK,IAAE,CAAC,CAAC,OAAO,GAAE,IAAK,CAAC,IAAK;AACpD,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAmC;AACnC,IAAA,QAAA,EAAA,sCAAgD;oBAChC,EAAA,CAAA,IAAG,EAAI,eAAa;;AAEhC,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD;AACJ,CAAA"}
1
+ {"version":3,"file":"use-upload-file.hook.native.js","sources":["../../src/hooks/use-upload-file.hook.native.ts"],"sourcesContent":[null],"names":["useBaseUploadFile"],"mappings":"qOAGa,aAAa,GAAG,MACzBA,eAAiB,CAAC;AACd,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAM;AACN,IAAA,QAAA,EAAA,sCAAU;oBACV,EAAA,CAAA,IAAmB,EAAA,eAAiB;cAChC,EAAA,KAAQ,CAAE,OAAM,CAAA,IAAA,CAAO,GAAC,IAAM,CAAC,CAAC,OAAO,GAAE,IAAK,CAAC,IAAC;AAChD,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,6BAAM;AACN,IAAA,QAAA,EAAA,sCAAU;oBACV,EAAA,CAAA,IAAmB,EAAA,eAAiB;;AAEhC,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C;AACJ,CAAA"}
@@ -1,3 +1,3 @@
1
- import { useUploadFile } from '@container-stack/file-info-client/lib/hooks/use-upload-file.js';
1
+ import { useUploadFile } from '@adminide-stack/file-info-client/lib/hooks/use-upload-file.js';
2
2
  export declare const useUploadFiles: () => ReturnType<typeof useUploadFile>;
3
3
  //# sourceMappingURL=use-upload-files.hook.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-files.hook.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-files.hook.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,gEAAgE,CAAC;AAG/F,eAAO,MAAM,cAAc,QAAO,UAAU,CAAC,OAAO,aAAa,CAkB3D,CAAC"}
1
+ {"version":3,"file":"use-upload-files.hook.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-files.hook.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,+DAA+D,CAAC;AAG9F,eAAO,MAAM,cAAc,QAAO,UAAU,CAAC,OAAO,aAAa,CAkB3D,CAAC"}
@@ -1,4 +1,4 @@
1
- import {useUploadFile}from'@container-stack/file-info-client/lib/hooks/use-upload-file.js';import {useAttachUploadedFilesToMessageMutation,useCreateMessageFilesUploadLinkMutation}from'common/graphql';const useUploadFiles = () => useUploadFile({
1
+ import {useUploadFile}from'@adminide-stack/file-info-client/lib/hooks/use-upload-file.js';import {useAttachUploadedFilesToMessageMutation,useCreateMessageFilesUploadLinkMutation}from'common/graphql';const useUploadFiles = () => useUploadFile({
2
2
  createUploadLink: {
3
3
  name: 'createMessageFilesUploadLink',
4
4
  mutation: useCreateMessageFilesUploadLinkMutation,
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-files.hook.js","sources":["../../src/hooks/use-upload-files.hook.ts"],"sourcesContent":[null],"names":[],"mappings":"8MAGa,cAAc,GAAG,MAC1B,aAAa,CAAC;AACV,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAoC;AACpC,IAAA,QAAA,EAAA,uCAAiD;oBACjC,EAAA,CAAA,KAAQ,EAAA,eAAa;AACjC,MAAA,SAAA,EAAA,KAAW,CAAA,OAAM,CAAA,KAAO,CAAC,GAAA,KAAQ,CAAC,GAAK,CAAA,QAAU,IAAA,CAAE,IAAO,CAAA,GAAC,CAAI,KAAE,CAAC,IAAO,CAAA;AACzE,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAoC;AACpC,IAAA,QAAA,EAAA,uCAAiD;oBACjC,EAAA,CAAA,KAAQ,EAAA,eAAa;;AAEjC,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD;AACJ,CAAA"}
1
+ {"version":3,"file":"use-upload-files.hook.js","sources":["../../src/hooks/use-upload-files.hook.ts"],"sourcesContent":[null],"names":[],"mappings":"6MAGa,cAAc,GAAG,MAC1B,aAAa,CAAC;AACV,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAM;AACN,IAAA,QAAA,EAAA,uCAAU;oBACV,EAAA,CAAA,KAAmB,EAAA,eAAkB;AACjC,MAAA,SAAA,EAAA,KAAS,CAAE,OAAM,CAAA,KAAO,CAAC,GAAA,KAAQ,CAAC,GAAA,CAAA,QAAW,IAAI,CAAE,IAAG,CAAA,GAAK,CAAA,KAAM,CAAC,IAAE,CAAA;AACpE,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAM;AACN,IAAA,QAAA,EAAA,uCAAU;oBACV,EAAA,CAAA,KAAmB,EAAA,eAAkB;;AAEjC,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C;AACJ,CAAA"}
@@ -1,3 +1,3 @@
1
- import { useUploadFile } from '@container-stack/file-info-client/lib/hooks/use-file-upload.native.js';
1
+ import { useUploadFile } from '@adminide-stack/file-info-client/lib/hooks/use-file-upload.native.js';
2
2
  export declare const useUploadFiles: () => ReturnType<typeof useUploadFile>;
3
3
  //# sourceMappingURL=use-upload-files.hook.native.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-files.hook.native.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-files.hook.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,uEAAuE,CAAC;AAGtG,eAAO,MAAM,cAAc,QAAO,UAAU,CAAC,OAAO,aAAa,CAkB3D,CAAC"}
1
+ {"version":3,"file":"use-upload-files.hook.native.d.ts","sourceRoot":"","sources":["../../src/hooks/use-upload-files.hook.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,sEAAsE,CAAC;AAGrG,eAAO,MAAM,cAAc,QAAO,UAAU,CAAC,OAAO,aAAa,CAkB3D,CAAC"}
@@ -1,4 +1,4 @@
1
- import {useUploadFile}from'@container-stack/file-info-client/lib/hooks/use-file-upload.native.js';import {useAttachUploadedFilesToMessageMutation,useCreateMessageFilesUploadLinkMutation}from'common/graphql';const useUploadFiles = () => useUploadFile({
1
+ import {useUploadFile}from'@adminide-stack/file-info-client/lib/hooks/use-file-upload.native.js';import {useAttachUploadedFilesToMessageMutation,useCreateMessageFilesUploadLinkMutation}from'common/graphql';const useUploadFiles = () => useUploadFile({
2
2
  createUploadLink: {
3
3
  name: 'createMessageFilesUploadLink',
4
4
  mutation: useCreateMessageFilesUploadLinkMutation,
@@ -1 +1 @@
1
- {"version":3,"file":"use-upload-files.hook.native.js","sources":["../../src/hooks/use-upload-files.hook.native.ts"],"sourcesContent":[null],"names":[],"mappings":"qNAGa,cAAc,GAAG,MAC1B,aAAa,CAAC;AACV,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAoC;AACpC,IAAA,QAAA,EAAA,uCAAiD;oBACjC,EAAA,CAAA,KAAQ,EAAA,eAAa;AACjC,MAAA,SAAA,EAAA,KAAW,CAAA,OAAM,CAAA,KAAO,CAAC,GAAA,KAAQ,CAAC,GAAK,CAAA,QAAU,IAAA,CAAE,IAAO,CAAA,GAAC,CAAI,KAAE,CAAC,IAAO,CAAA;AACzE,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAoC;AACpC,IAAA,QAAA,EAAA,uCAAiD;oBACjC,EAAA,CAAA,KAAQ,EAAA,eAAa;;AAEjC,MAAA,IAAA,OAAI,SAAgB,KAAA,QAAa,GAAA,SAAY,GAAA,EAAA;;AAEpD;AACJ,CAAA"}
1
+ {"version":3,"file":"use-upload-files.hook.native.js","sources":["../../src/hooks/use-upload-files.hook.native.ts"],"sourcesContent":[null],"names":[],"mappings":"oNAGa,cAAc,GAAG,MAC1B,aAAa,CAAC;AACV,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAM;AACN,IAAA,QAAA,EAAA,uCAAU;oBACV,EAAA,CAAA,KAAmB,EAAA,eAAkB;AACjC,MAAA,SAAA,EAAA,KAAS,CAAE,OAAM,CAAA,KAAO,CAAC,GAAA,KAAQ,CAAC,GAAA,CAAA,QAAW,IAAI,CAAE,IAAG,CAAA,GAAK,CAAA,KAAM,CAAC,IAAE,CAAA;AACpE,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C,GAAA;AACD,EAAA,gBAAA,EAAgB;AACZ,IAAA,IAAA,EAAA,8BAAM;AACN,IAAA,QAAA,EAAA,uCAAU;oBACV,EAAA,CAAA,KAAmB,EAAA,eAAkB;;AAEjC,MAAA,IAAA,OAAI,SAAO,KAAA,QAAc,GAAA,SAAW,GAAA,EAAA;;AAE3C;AACJ,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,mDAUI,CAAC;AAElC,eAAO,MAAM,iBAAiB,qDAWG,CAAC;AAElC,eAAO,MAAM,eAAe,mDAQK,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,GAAI,qBAAgB,EAAE,iBAAY,QAU9B,CAAC;AAElC,eAAO,MAAM,iBAAiB,GAAI,qBAAgB,EAAE,mBAAc,QAWjC,CAAC;AAElC,eAAO,MAAM,eAAe,GAAI,qBAAgB,EAAE,iBAAY,QAQ7B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/utils/index.ts"],"sourcesContent":[null],"names":[],"mappings":"AAAa,MAAA,gBAAgB,GAAG,CAAC,gBAAgB,EAAE,YAAY,KAC3D,gBAAgB,CAAA,GAAA,CAAA,IAAA,IAAA;AACX,EAAA,IAAA,YAAa,CAAA,OAAA,CAAA,IAAA,CAAA,GAAA,CAAA,KAAA,EAAA,EAAA;AACV,IAAA,MAAgB;UACN;eACC;AACH,MAAA,GAAA;YACF;IACN,OAAC;AACL,MAAE,CAAA,IAAA,GAAA;QACK,IAAC,EAAM,IAAA,CAAA,GAAI;AAE1B,QAAa,GAAA;AAEJ;AACG,KAAA;AACI;SACO,CAAA,KAAA,IAAA,KAAA;AACH,MAAC,iBAAW,GAAA,CAAA,gBAAA,EAAA,cAAA,KAAA,gBAAA,CAAA,GAAA,CAAA,IAAA,IAAA;oBACd,CAAA,OAAA,CAAA,IAAA,CAAA,GAAA,CAAA,KAAA,EAAA,EAAA;IACN,MAAC;AACD,MAAA;AACJ,KAAE,GAAA,IAAA;WACK;AAEf,MAAM,CAAC,IAAM,GAAA;AAEJ,KAAA;AACG;SACU,IAAA;AACN,CAAA,CAAA,CAAA,MAAA,CAAA,KAAO,IAAI,KAAC;AACf,MAAA,eAAA,GAAA,CAAA,gBAAA,EAAA,YAAA,KAAA,gBAAA,CAAA,GAAA,CAAA,IAAA,IAAA;AACL,EAAE,IAAA,YAAA,CAAA,OAAA,CAAA,IAAA,CAAA,GAAA,CAAA,KAAA,EAAA,EAAA;UACK;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../../src/utils/index.ts"],"sourcesContent":[null],"names":[],"mappings":"AAAO,MAAM,gBAAgB,GAAG,CAAC,gBAAgB,EAAE,YAAY,KAC3D,gBAAgB,CAAA,GAAA,CAAA,IAAA,IAAA;AACX,EAAA,IAAA,YAAa,CAAA,OAAA,CAAA,IAAA,CAAA,GAAA,CAAA,KAAA,EAAA,EAAA;AACV,IAAA,MAAI;UACA;eACO;AACH,MAAA,GAAA;YACF;IACN,OAAC;AACL,MAAE,CAAA,IAAA,GAAA;QACD,IAAO,EAAC,IAAK,CAAA,GAAI;AAE1B,QAAO,GAAA;AAEE;AACG,KAAA;AACI,EAAA;SACA,CAAA,KAAO,IAAA,KAAA;AACH,MAAC,iBAAW,GAAA,CAAA,gBAAA,EAAA,cAAA,KAAA,gBAAA,CAAA,GAAA,CAAA,IAAA,IAAA;oBACd,CAAA,OAAA,CAAA,IAAA,CAAA,GAAA,CAAA,KAAA,EAAA,EAAA;IACN,MAAC;AACD,MAAA;AACJ,KAAE,GAAA,IAAA;WACK;AAEf,MAAM,CAAC,IAAA,GAAM;AAEJ,KAAA;AACG,EAAA;SACI,IAAA;AACA,CAAA,CAAA,CAAA,MAAA,CAAA,KAAO,IAAI,KAAC;AACf,MAAA,eAAA,GAAA,CAAA,gBAAA,EAAA,YAAA,KAAA,gBAAA,CAAA,GAAA,CAAA,IAAA,IAAA;AACL,EAAE,IAAA,YAAA,CAAA,OAAA,CAAA,IAAA,CAAA,GAAA,CAAA,KAAA,EAAA,EAAA;UACD;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messenger-box/platform-client",
3
- "version": "10.0.3-alpha.16",
3
+ "version": "10.0.3-alpha.160",
4
4
  "description": "Sample core for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -20,8 +20,8 @@
20
20
  "watch": "yarn build:lib:watch"
21
21
  },
22
22
  "dependencies": {
23
- "@container-stack/file-info-client": "^5.4.1-alpha.6",
24
- "@messenger-box/core": "10.0.3-alpha.16",
23
+ "@adminide-stack/file-info-client": "^5.4.4-alpha.3",
24
+ "@messenger-box/core": "10.0.3-alpha.158",
25
25
  "key-mirror": "1.0.1",
26
26
  "moment-timezone": "0.5.33"
27
27
  },
@@ -35,5 +35,5 @@
35
35
  "typescript": {
36
36
  "definition": "lib/index.d.ts"
37
37
  },
38
- "gitHead": "248f4cb7ccd384f697bc977b80bd0443cd137ca1"
38
+ "gitHead": "88d9539b559a1791670e02900b2f55ca98b6af0c"
39
39
  }
@@ -19,6 +19,18 @@ fragment Post on Post {
19
19
  # propsConfiguration {
20
20
  # ...Configuration
21
21
  # }
22
+ propsConfiguration {
23
+ contents
24
+ id
25
+ keys
26
+ resource
27
+ target
28
+ overrides {
29
+ contents
30
+ identifiers
31
+ keys
32
+ }
33
+ }
22
34
  props
23
35
  files {
24
36
  totalCount
@@ -58,6 +70,18 @@ fragment PostReplies on Messages {
58
70
  # propsConfiguration {
59
71
  # ...Configuration
60
72
  # }
73
+ propsConfiguration {
74
+ contents
75
+ id
76
+ keys
77
+ resource
78
+ target
79
+ overrides {
80
+ contents
81
+ identifiers
82
+ keys
83
+ }
84
+ }
61
85
  props
62
86
  files {
63
87
  totalCount
@@ -98,6 +122,18 @@ fragment PostWithoutReplies on Post {
98
122
  # propsConfiguration {
99
123
  # ...Configuration
100
124
  # }
125
+ propsConfiguration {
126
+ contents
127
+ id
128
+ keys
129
+ resource
130
+ target
131
+ overrides {
132
+ contents
133
+ identifiers
134
+ keys
135
+ }
136
+ }
101
137
  props
102
138
  files {
103
139
  totalCount
@@ -70,3 +70,8 @@ mutation saveMembersToChannel($membersIds:[String]!,$channelId:String!){
70
70
  mutation DeleteChannel($ChannelId:ID!){
71
71
  deleteChannel(id: $ChannelId)
72
72
  }
73
+
74
+
75
+ mutation createChannelWorkflowJob($createChannelInput : CreateChannelInput!, $extensionInput : WorkflowExtensionInput!) {
76
+ createChannelWorkflowJob(createChannelInput: $createChannelInput, extensionInput: $extensionInput)
77
+ }
@@ -5,6 +5,7 @@ mutation SendMessages(
5
5
  $postId: ID,
6
6
  $createdBy: ID,
7
7
  $notificationParams:ExpoNotificationData,
8
+ $extraProps:AnyObject
8
9
  ){
9
10
  sendMessage(
10
11
  channelId: $channelId,
@@ -13,6 +14,7 @@ mutation SendMessages(
13
14
  files: $files,
14
15
  createdBy: $createdBy
15
16
  notificationParams: $notificationParams
17
+ extraProps: $extraProps
16
18
  },
17
19
  postId: $postId
18
20
  ){
@@ -95,6 +97,7 @@ mutation DeleteMessageFile($url:String!){
95
97
  }
96
98
 
97
99
 
100
+
98
101
  #mutation PinMessage($messageId:String! , $messageInput:String! , $content:String!) {
99
102
  # pinMessage(
100
103
  # messageId: {