@adaptive-ai/sdk 0.1.27 → 0.1.28
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/client/index.d.ts +21 -0
- package/dist/server/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/client/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare const OAuthProvider: {
|
|
|
16
16
|
readonly FIGMA: "FIGMA";
|
|
17
17
|
readonly PLAID: "PLAID";
|
|
18
18
|
readonly SQUARE: "SQUARE";
|
|
19
|
+
readonly SHOPIFY: "SHOPIFY";
|
|
19
20
|
readonly WHOOP: "WHOOP";
|
|
20
21
|
};
|
|
21
22
|
export type OAuthProvider = (typeof OAuthProvider)[keyof typeof OAuthProvider];
|
|
@@ -34,6 +35,7 @@ declare const AuthProvider: {
|
|
|
34
35
|
readonly FIGMA: "FIGMA";
|
|
35
36
|
readonly PLAID: "PLAID";
|
|
36
37
|
readonly SQUARE: "SQUARE";
|
|
38
|
+
readonly SHOPIFY: "SHOPIFY";
|
|
37
39
|
readonly WHOOP: "WHOOP";
|
|
38
40
|
};
|
|
39
41
|
export type AuthProvider = (typeof AuthProvider)[keyof typeof AuthProvider];
|
|
@@ -130,6 +132,25 @@ declare const oauthProviderRecognizedScopes: {
|
|
|
130
132
|
"https://www.googleapis.com/auth/gmail.compose",
|
|
131
133
|
"https://www.googleapis.com/auth/gmail.readonly"
|
|
132
134
|
];
|
|
135
|
+
readonly SHOPIFY: readonly [
|
|
136
|
+
"read_products",
|
|
137
|
+
"read_orders",
|
|
138
|
+
"write_products",
|
|
139
|
+
"write_orders",
|
|
140
|
+
"write_customers",
|
|
141
|
+
"write_inventory",
|
|
142
|
+
"write_draft_orders",
|
|
143
|
+
"read_customers",
|
|
144
|
+
"read_inventory",
|
|
145
|
+
"read_locations",
|
|
146
|
+
"read_markets",
|
|
147
|
+
"read_discounts",
|
|
148
|
+
"read_fulfillments",
|
|
149
|
+
"read_reports",
|
|
150
|
+
"read_all_orders",
|
|
151
|
+
"write_discounts",
|
|
152
|
+
"write_fulfillments"
|
|
153
|
+
];
|
|
133
154
|
readonly SLACK: readonly [
|
|
134
155
|
"users:write",
|
|
135
156
|
"im:write",
|
package/dist/server/index.d.ts
CHANGED
|
@@ -1682,6 +1682,7 @@ declare const AuthProvider: {
|
|
|
1682
1682
|
readonly FIGMA: "FIGMA";
|
|
1683
1683
|
readonly PLAID: "PLAID";
|
|
1684
1684
|
readonly SQUARE: "SQUARE";
|
|
1685
|
+
readonly SHOPIFY: "SHOPIFY";
|
|
1685
1686
|
readonly WHOOP: "WHOOP";
|
|
1686
1687
|
};
|
|
1687
1688
|
export type AuthProvider = (typeof AuthProvider)[keyof typeof AuthProvider];
|