@juhuu/sdk-ts 1.3.45 → 1.3.47

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/index.d.mts CHANGED
@@ -2090,10 +2090,17 @@ type BlockExecutor = (inputs: FlowBlockInput, block: FlowBlock, context: Record<
2090
2090
  type DataEdgeConnection = string | null;
2091
2091
  type ControlEdgeConnection = string | null;
2092
2092
  type QuickAction = {
2093
- icon: string | null;
2093
+ type: "flow";
2094
2094
  name: LocaleString;
2095
+ icon: string | null;
2096
+ visibleCondition: Condition | null;
2095
2097
  flowId: string;
2098
+ } | {
2099
+ type: "panel";
2100
+ name: LocaleString;
2101
+ icon: string | null;
2096
2102
  visibleCondition: Condition | null;
2103
+ panelId: string;
2097
2104
  };
2098
2105
  type QuickView = {
2099
2106
  name: LocaleString;
@@ -4421,6 +4428,7 @@ declare namespace JUHUU {
4421
4428
  additionalSubscriptionItemArray: AdditionalSubscriptionItem[];
4422
4429
  capabilityArray: Capability[];
4423
4430
  agreement: PropertyAgreement;
4431
+ quickActionArray: QuickAction[];
4424
4432
  };
4425
4433
  namespace Create {
4426
4434
  type Params = {
@@ -4522,6 +4530,7 @@ declare namespace JUHUU {
4522
4530
  languageCode?: LanguageCode;
4523
4531
  emailSignature?: string;
4524
4532
  taxCodeArray?: TaxCode[];
4533
+ quickActionArray?: QuickAction[];
4525
4534
  };
4526
4535
  type Options = JUHUU.RequestOptions;
4527
4536
  type Response = {
package/dist/index.d.ts CHANGED
@@ -2090,10 +2090,17 @@ type BlockExecutor = (inputs: FlowBlockInput, block: FlowBlock, context: Record<
2090
2090
  type DataEdgeConnection = string | null;
2091
2091
  type ControlEdgeConnection = string | null;
2092
2092
  type QuickAction = {
2093
- icon: string | null;
2093
+ type: "flow";
2094
2094
  name: LocaleString;
2095
+ icon: string | null;
2096
+ visibleCondition: Condition | null;
2095
2097
  flowId: string;
2098
+ } | {
2099
+ type: "panel";
2100
+ name: LocaleString;
2101
+ icon: string | null;
2096
2102
  visibleCondition: Condition | null;
2103
+ panelId: string;
2097
2104
  };
2098
2105
  type QuickView = {
2099
2106
  name: LocaleString;
@@ -4421,6 +4428,7 @@ declare namespace JUHUU {
4421
4428
  additionalSubscriptionItemArray: AdditionalSubscriptionItem[];
4422
4429
  capabilityArray: Capability[];
4423
4430
  agreement: PropertyAgreement;
4431
+ quickActionArray: QuickAction[];
4424
4432
  };
4425
4433
  namespace Create {
4426
4434
  type Params = {
@@ -4522,6 +4530,7 @@ declare namespace JUHUU {
4522
4530
  languageCode?: LanguageCode;
4523
4531
  emailSignature?: string;
4524
4532
  taxCodeArray?: TaxCode[];
4533
+ quickActionArray?: QuickAction[];
4525
4534
  };
4526
4535
  type Options = JUHUU.RequestOptions;
4527
4536
  type Response = {
package/dist/index.js CHANGED
@@ -1514,7 +1514,8 @@ var PropertiesService = class extends Service {
1514
1514
  contactUrl: PropertyUpdateParams.contactUrl,
1515
1515
  stripeEmail: PropertyUpdateParams.stripeEmail,
1516
1516
  payoutCurrencyCode: PropertyUpdateParams.payoutCurrencyCode,
1517
- invoiceNumberPrefix: PropertyUpdateParams.invoiceNumberPrefix
1517
+ invoiceNumberPrefix: PropertyUpdateParams.invoiceNumberPrefix,
1518
+ quickActionArray: PropertyUpdateParams.quickActionArray
1518
1519
  },
1519
1520
  authenticationNotOptional: true
1520
1521
  },
package/dist/index.mjs CHANGED
@@ -1470,7 +1470,8 @@ var PropertiesService = class extends Service {
1470
1470
  contactUrl: PropertyUpdateParams.contactUrl,
1471
1471
  stripeEmail: PropertyUpdateParams.stripeEmail,
1472
1472
  payoutCurrencyCode: PropertyUpdateParams.payoutCurrencyCode,
1473
- invoiceNumberPrefix: PropertyUpdateParams.invoiceNumberPrefix
1473
+ invoiceNumberPrefix: PropertyUpdateParams.invoiceNumberPrefix,
1474
+ quickActionArray: PropertyUpdateParams.quickActionArray
1474
1475
  },
1475
1476
  authenticationNotOptional: true
1476
1477
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.45",
6
+ "version": "1.3.47",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",