@budibase/types 3.24.0 → 3.24.1

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.
package/dist/ui/rest.d.ts CHANGED
@@ -1,20 +1,23 @@
1
1
  export interface RestTemplateSpec {
2
- version: `${number}-${number}-${number}` | `${number}.${number}` | `${number}.${number}.${number}` | `v${number}`;
2
+ version: string;
3
3
  url?: string;
4
4
  data?: string;
5
5
  }
6
6
  export type RestTemplateSpecVersion = RestTemplateSpec["version"];
7
- export type RestTemplateName = "Attio" | "Ansible AWX" | "BambooHR" | "Confluence" | "Discord" | "GitHub" | "Jira Cloud" | "Okta Management" | "PagerDuty" | "ServiceNow" | "Slack Web API" | "Stripe" | "VirusTotal" | TwilioRestTemplateName;
8
- export type RestTemplateGroupName = "Twilio";
7
+ export type RestTemplateName = "Ansible AWX" | "Attio" | "BambooHR" | "Confluence" | "Discord" | "Figma" | "GitHub" | "Jira Cloud" | "Okta Management" | "PagerDuty" | "ServiceNow" | "Slack Web API" | "Stripe" | "VirusTotal" | "Ashby" | "Banksapi" | "Baremetrics" | "Billsby" | "Breezy HR" | "Brevo" | "BulkSMS" | "Buttondown" | "Clever" | "Clickup" | "Deel" | "Dixa" | "Dots" | "Factorial" | "Fastspring" | "Fountain" | "Gitlab" | "Goody" | "Helcim" | "Hibob" | "Homerun" | "Hypatos" | "Intercom" | "Ironclad" | "Jina AI" | "Jobsoid" | "Keatext AI" | "Kenjo" | "Lambda" | "Lob" | "Localizely" | "LogisticsOS" | "Mastercard" | "Measureone" | "Nanonets" | "Notion" | "Oyster HR" | "Peach Payments" | "Pinpoint" | "Podium" | "Remote" | "Resend" | "Rivery" | "Sage" | "Secoda" | "Shipengine" | "Shippo" | "Shortcut" | "Smartrecruiters" | "SoftLedger" | "SpotDraft" | "Sumsub" | "SuprSend" | "Terminal" | "Theirstack" | "Tilled" | "Trello" | "Tremendous" | "Verifiable" | "Volt IO" | "Workable" | "X" | TwilioRestTemplateName | ZendeskRestTemplateName;
8
+ export type RestTemplateGroupName = "Twilio" | "Zendesk";
9
9
  export type RestTemplateGroups = {
10
10
  Twilio: TwilioRestTemplateName;
11
+ Zendesk: ZendeskRestTemplateName;
11
12
  };
12
13
  export type TwilioRestTemplateName = "Twilio Accounts" | "Twilio Assistants" | "Twilio Bulk Exports" | "Twilio Chat" | "Twilio Content" | "Twilio Conversations" | "Twilio Events" | "Twilio Flex" | "Twilio Frontline" | "Twilio IAM" | "Twilio IAM Organizations" | "Twilio IAM SCIM" | "Twilio Insights" | "Twilio Intelligence" | "Twilio IP Messaging" | "Twilio Knowledge" | "Twilio Lookups" | "Twilio Marketplace" | "Twilio Messaging" | "Twilio Monitor" | "Twilio Notify" | "Twilio Numbers" | "Twilio OAuth" | "Twilio Preview" | "Twilio Pricing" | "Twilio Proxy" | "Twilio Routes" | "Twilio Serverless" | "Twilio Studio" | "Twilio Super SIM" | "Twilio Sync" | "Twilio TaskRouter" | "Twilio Trunking" | "Twilio TrustHub" | "Twilio Verify" | "Twilio Video" | "Twilio Voice" | "Twilio Wireless";
14
+ export type ZendeskRestTemplateName = "Sunshine Conversations";
13
15
  export interface RestTemplate {
14
16
  name: RestTemplateName;
15
17
  description: string;
16
18
  specs: RestTemplateSpec[];
17
19
  icon: string;
20
+ verified?: true;
18
21
  }
19
22
  export interface RestTemplateWithoutIcon<Name> {
20
23
  name: Name;
@@ -25,6 +28,7 @@ export interface RestTemplateGroup<TemplateGroupName extends keyof RestTemplateG
25
28
  name: TemplateGroupName;
26
29
  description: string;
27
30
  icon: string;
31
+ verified?: true;
28
32
  templates: RestTemplateWithoutIcon<RestTemplateGroups[TemplateGroupName]>[];
29
33
  }
30
34
  export type GroupTemplateSelection = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "3.24.0",
3
+ "version": "3.24.1",
4
4
  "description": "Budibase types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,5 +27,5 @@
27
27
  "dependencies": {
28
28
  "scim-patch": "^0.8.1"
29
29
  },
30
- "gitHead": "7cfa950d39730aa88a1c26c60f8094d6f0b0606d"
30
+ "gitHead": "6838c955ce1adef31581d699de2c9a6c81d37de5"
31
31
  }