@juhuu/sdk-ts 1.3.38 → 1.3.40

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
@@ -1954,6 +1954,10 @@ interface SessionListBlock extends BaseBlock {
1954
1954
  in: {
1955
1955
  userId: DataEdgeConnection;
1956
1956
  locationId: DataEdgeConnection;
1957
+ statusArray: DataEdgeConnection;
1958
+ locationGroupId: DataEdgeConnection;
1959
+ paymentId: DataEdgeConnection;
1960
+ deviceId: DataEdgeConnection;
1957
1961
  limit: DataEdgeConnection;
1958
1962
  skip: DataEdgeConnection;
1959
1963
  };
@@ -1965,6 +1969,10 @@ interface SessionListBlock extends BaseBlock {
1965
1969
  data: {
1966
1970
  userId?: string;
1967
1971
  locationId?: string;
1972
+ statusArray?: string;
1973
+ locationGroupId?: string;
1974
+ paymentId?: string;
1975
+ deviceId?: string;
1968
1976
  limit?: number;
1969
1977
  skip?: number;
1970
1978
  };
@@ -1972,6 +1980,10 @@ interface SessionListBlock extends BaseBlock {
1972
1980
  interface SessionListBlockInputs {
1973
1981
  userId?: string;
1974
1982
  locationId?: string;
1983
+ statusArray?: string;
1984
+ locationGroupId?: string;
1985
+ paymentId?: string;
1986
+ deviceId?: string;
1975
1987
  limit?: number;
1976
1988
  skip?: number;
1977
1989
  }
package/dist/index.d.ts CHANGED
@@ -1954,6 +1954,10 @@ interface SessionListBlock extends BaseBlock {
1954
1954
  in: {
1955
1955
  userId: DataEdgeConnection;
1956
1956
  locationId: DataEdgeConnection;
1957
+ statusArray: DataEdgeConnection;
1958
+ locationGroupId: DataEdgeConnection;
1959
+ paymentId: DataEdgeConnection;
1960
+ deviceId: DataEdgeConnection;
1957
1961
  limit: DataEdgeConnection;
1958
1962
  skip: DataEdgeConnection;
1959
1963
  };
@@ -1965,6 +1969,10 @@ interface SessionListBlock extends BaseBlock {
1965
1969
  data: {
1966
1970
  userId?: string;
1967
1971
  locationId?: string;
1972
+ statusArray?: string;
1973
+ locationGroupId?: string;
1974
+ paymentId?: string;
1975
+ deviceId?: string;
1968
1976
  limit?: number;
1969
1977
  skip?: number;
1970
1978
  };
@@ -1972,6 +1980,10 @@ interface SessionListBlock extends BaseBlock {
1972
1980
  interface SessionListBlockInputs {
1973
1981
  userId?: string;
1974
1982
  locationId?: string;
1983
+ statusArray?: string;
1984
+ locationGroupId?: string;
1985
+ paymentId?: string;
1986
+ deviceId?: string;
1975
1987
  limit?: number;
1976
1988
  skip?: number;
1977
1989
  }
package/dist/index.js CHANGED
@@ -1464,7 +1464,9 @@ var PropertiesService = class extends Service {
1464
1464
  faqUrl: PropertyUpdateParams.faqUrl,
1465
1465
  colorScheme: PropertyUpdateParams.colorScheme,
1466
1466
  contactUrl: PropertyUpdateParams.contactUrl,
1467
- stripeEmail: PropertyUpdateParams.stripeEmail
1467
+ stripeEmail: PropertyUpdateParams.stripeEmail,
1468
+ payoutCurrencyCode: PropertyUpdateParams.payoutCurrencyCode,
1469
+ invoiceNumberPrefix: PropertyUpdateParams.invoiceNumberPrefix
1468
1470
  },
1469
1471
  authenticationNotOptional: true
1470
1472
  },
package/dist/index.mjs CHANGED
@@ -1420,7 +1420,9 @@ var PropertiesService = class extends Service {
1420
1420
  faqUrl: PropertyUpdateParams.faqUrl,
1421
1421
  colorScheme: PropertyUpdateParams.colorScheme,
1422
1422
  contactUrl: PropertyUpdateParams.contactUrl,
1423
- stripeEmail: PropertyUpdateParams.stripeEmail
1423
+ stripeEmail: PropertyUpdateParams.stripeEmail,
1424
+ payoutCurrencyCode: PropertyUpdateParams.payoutCurrencyCode,
1425
+ invoiceNumberPrefix: PropertyUpdateParams.invoiceNumberPrefix
1424
1426
  },
1425
1427
  authenticationNotOptional: true
1426
1428
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.38",
6
+ "version": "1.3.40",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",