Membrane React - v0.6.0
    Preparing search index...

    Function useAppEventTypes

    • Parameters

      Returns {
          appEventTypes: {
              id: string;
              key?: string;
              uuid?: string;
              description?: string;
              meta?: Record<string, any>;
              name: string;
              state?: CONFIGURATION_ERROR | SETUP_FAILED | READY;
              errors?: ErrorDataSchema[];
              createdAt?: string;
              updatedAt?: string;
              isDeactivated?: boolean;
              revision: string;
              archivedAt?: string;
              subscribeRequest?: {
                  method?: GET | POST | PATCH | PUT | DELETE;
                  uri: any;
                  headers?: Record<string, any>;
                  query?: Record<string, any>;
                  body?: any;
              };
              example?: any;
              schema?: DataSchema;
              globalWebhookUri: string;
              userIdFormula?: any;
          }[];
          items: {
              id: string;
              key?: string;
              uuid?: string;
              description?: string;
              meta?: Record<string, any>;
              name: string;
              state?: CONFIGURATION_ERROR | SETUP_FAILED | READY;
              errors?: ErrorDataSchema[];
              createdAt?: string;
              updatedAt?: string;
              isDeactivated?: boolean;
              revision: string;
              archivedAt?: string;
              subscribeRequest?: {
                  method?: GET | POST | PATCH | PUT | DELETE;
                  uri: any;
                  headers?: Record<string, any>;
                  query?: Record<string, any>;
                  body?: any;
              };
              example?: any;
              schema?: DataSchema;
              globalWebhookUri: string;
              userIdFormula?: any;
          }[];
          refresh: () => Promise<void>;
          refreshing: boolean;
          loadMore: () => Promise<void>;
          loadingMore: boolean;
          loading: boolean;
          error: any;
      }