Skip to content

Commit

Permalink
Auto updated submodule references
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 26, 2024
1 parent a8f96a0 commit 3cfe800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcom
Submodule calcom updated 57 files
+1 −0 .env.example
+2 −2 apps/api/v1/pages/api/credential-sync/_patch.ts
+2 −2 apps/api/v1/pages/api/credential-sync/_post.ts
+2 −1 apps/web/components/settings/organizations/platform/oauth-clients/OAuthClientForm.tsx
+1 −1 apps/web/lib/hooks/settings/organizations/platform/oauth-clients/useOAuthClients.ts
+6 −1 apps/web/pages/api/webhook/app-credential.ts
+15 −0 example-apps/credential-sync/.env.example
+9 −0 example-apps/credential-sync/README.md
+13 −0 example-apps/credential-sync/constants.ts
+89 −0 example-apps/credential-sync/lib/integrations.ts
+5 −0 example-apps/credential-sync/next-env.d.ts
+9 −0 example-apps/credential-sync/next.config.js
+31 −0 example-apps/credential-sync/package.json
+41 −0 example-apps/credential-sync/pages/api/getToken.ts
+67 −0 example-apps/credential-sync/pages/api/setTokenInCalCom.ts
+57 −0 example-apps/credential-sync/pages/index.tsx
+19 −0 example-apps/credential-sync/tsconfig.json
+2 −1 package.json
+5 −1 packages/app-store/_utils/getParsedAppKeysFromSlug.ts
+21 −0 packages/app-store/_utils/invalidateCredential.ts
+22 −0 packages/app-store/_utils/oauth/AxiosLikeResponseToFetchResponse.ts
+1,410 −0 packages/app-store/_utils/oauth/OAuthManager.test.ts
+559 −0 packages/app-store/_utils/oauth/OAuthManager.ts
+24 −0 packages/app-store/_utils/oauth/getTokenObjectFromCredential.ts
+21 −0 packages/app-store/_utils/oauth/markTokenAsExpired.ts
+26 −0 packages/app-store/_utils/oauth/oAuthManagerHelper.ts
+45 −0 packages/app-store/_utils/oauth/universalSchema.ts
+22 −0 packages/app-store/_utils/oauth/updateTokenObject.ts
+43 −0 packages/app-store/_utils/testUtils.ts
+128 −73 packages/app-store/googlecalendar/lib/CalendarService.ts
+2 −2 packages/app-store/office365calendar/api/add.ts
+2 −2 packages/app-store/office365calendar/api/callback.ts
+52 −76 packages/app-store/office365calendar/lib/CalendarService.ts
+2 −2 packages/app-store/office365video/api/add.ts
+2 −2 packages/app-store/office365video/api/callback.ts
+282 −0 packages/app-store/office365video/lib/VideoApiAdapter.test.ts
+71 −109 packages/app-store/office365video/lib/VideoApiAdapter.ts
+3 −1 packages/app-store/zoomvideo/api/callback.ts
+100 −149 packages/app-store/zoomvideo/lib/VideoApiAdapter.ts
+1 −1 packages/core/CalendarManager.ts
+5 −1 packages/core/videoClient.ts
+2 −0 packages/lib/constants.ts
+2 −1 packages/lib/errors.ts
+7 −0 packages/lib/safeStringify.ts
+47 −30 packages/platform/atoms/cal-provider/BaseCalProvider.tsx
+1 −1 packages/platform/atoms/hooks/useAtomsContext.ts
+1 −1 packages/platform/atoms/package.json
+62 −2 packages/platform/sdk/README.md
+2 −2 packages/platform/sdk/src/cal.ts
+1 −1 packages/platform/sdk/src/endpoints/endpoint-handler.ts
+4 −4 packages/platform/sdk/src/endpoints/managed-users/index.ts
+0 −0 packages/platform/sdk/src/endpoints/managed-users/types.ts
+4 −6 packages/platform/sdk/src/lib/http-caller.ts
+2 −5 packages/platform/sdk/src/lib/sdk-secrets.ts
+1 −1 packages/platform/sdk/src/types.ts
+1 −1 packages/prisma/schema.prisma
+382 −166 yarn.lock

0 comments on commit 3cfe800

Please sign in to comment.